@seasnek7024

A warning to those who try to write the code as it’s shown: Blink and you’re dead

Great vid btw cheers

@a.h.z2830

this honestly was the best way to explain the linked lists ,going from the basics and reaching the more complex functionalities ,

@ELMO7TARAMQ8

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.

@gerdsfargen6687

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.

@cristianleon7533

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!

@Hersonrock12

First time working with linked lists, this introduction felt really good!

@karimkohel3240

"Oh Java i just love your  quirks" is my life's motto now

@juststudy2352

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 🤞

@Veimo69

Great video, but I believe explaining the more complex things a bit slower would be much appreciated by many people

@Finn_1924

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

@LeRoiSoleil61

I wish I could learn this much thing every 18 minutes in my life

@TheCrunchy2

I swear, this video better get 500k views at least.. mans explaining with ease

@prashantsawant1028

Thank you very much for the video. Revised Linked list in 18 min. I have my interview tomorrow.

@davidgaspar4772

Jacob Sorber's contents are just amazing.

@chriskorfmann

Thank you computer science Matthew McConaughey! This saved me on my project.

@jerryxu6859

what an underrated channel, thanks!

@KamillaMirabelle

I like that you are one of the only I have seen that type at the same speed as me

@hannahfrazier2890

Honestly this explain is better then my college professors but you code so fast! Thank you for explaining this better!

@musaabmahjoub3244

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
        
    }
    
}

@raphaelchen9960

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.