View on GitHub

401-reading-notes

CLASS 05

LYNKED LIST

What’s a Linked List?

In javascript linked list looks like this:

  const list = {
    *head*: {
        value: wonde
        next: {
            value: nes                                           
            next: {
                value: seid
                next: {
                    value: john
                    next: *null*	
                    }
                }
            }
        }
    }
};


LInked list Advantages

Linked list Disadvatages

Types of Linked List:

Linked List Methods:

HOME