this honestly was the best way to explain the linked lists ,going from the basics and reaching the more complex functionalities ,
Amazing video. I am taking an online programing course and for homework, i got stuck with trying to implement a linked-list in C. I understood the theory, but this video helped me see how to actually use it in code. Amazing video. Very smart guy. I had to pause the video and write the code in pen for the first 10 mins until I saw what was happening. Thank you very much.
This Professor is brilliant. I love using your videos Jacob! They really lit up those areas of my brain that needed to grasp C. From a dull glow to a flashing glare! Thanks so much.
Awesome linked list video! Learning c and felt confused on how to add new nodes. although all the functions you created seem daunting at first I followed along slowly and it was actually very logical how it works! Thank you!
First time working with linked lists, this introduction felt really good!
"Oh Java i just love your quirks" is my life's motto now
Thank you so much I really appreciate the effort and patience you put into your videos , I have my exam tomorrow and I was struggling to understand the concept and it's implementation throughout the semester but your explanation came in handy and made things easier for me ; wish me luck 🤞
Great video, but I believe explaining the more complex things a bit slower would be much appreciated by many people
this is helpful and all but you don't have to fast forward; it makes it really hard to keep up with what you're doing
I wish I could learn this much thing every 18 minutes in my life
I swear, this video better get 500k views at least.. mans explaining with ease
Thank you very much for the video. Revised Linked list in 18 min. I have my interview tomorrow.
Jacob Sorber's contents are just amazing.
Thank you computer science Matthew McConaughey! This saved me on my project.
what an underrated channel, thanks!
I like that you are one of the only I have seen that type at the same speed as me
Honestly this explain is better then my college professors but you code so fast! Thank you for explaining this better!
Thank you very much for the wonderful explanation. I would to add a function to free memory after we have used it. void free_list(node_t *head) { node_t *tmp = NULL; while (head !=NULL) { tmp = head; // Store the current head to tmp head = head->next; // Move to the next node free(tmp); // Free the current node } }
Thank you so much for making this awesome video, I got confused after going through a three-hour lecture. But this video just helps me solve that confusion within 30 minutes.
@seasnek7024