Feeling Stuck with Linked Lists? Need Some Guidance!

0
1
Asked By CuriousCat42 On

Hey everyone, I'm really struggling with linked lists while going through the Striver sheet. I've hit a wall and even took a six-day break because I lost interest in data structures and algorithms. Does anyone have advice on how I can get past this?

3 Answers

Answered By TechieTurtle99 On

I've been in your shoes—linked lists can be pretty baffling at the start. A solid tip is to tackle one problem at a time. Focus on that single problem until you can solve it without any resources. You might find that taking a break actually helps refresh your focus more than you'd expect!

Answered By CodeCrafter88 On

Make sure you really grasp the theoretical aspects first! Once the concepts click, implementing them will be much easier.

Answered By PixelPioneer21 On

A good approach is to pick up a solid book on the subject, read through it, and draw diagrams to visualize the concepts. Start with understanding the structure of linked lists, then dive into their time and space complexities. If you get stuck on syntax, using a lower-level language like C can really clarify things. Here's a simple example of a linked list I created if that will help: [linked list example](https://www.reddit.com/r/learnprogramming/comments/1qivwdq/comment/o0uzsf3/). I'm more than happy to answer any questions you have about it!

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.