LIFO (last in first out)
Basic Operations
FIFO (first in first out)
Basic Operations
NODE
class Node {
constructor(data) {
this.data = data
this.next = null
}
}Basic Operations
Singly Linked List
Doubly Linked List
Circular Linked List
h(k) - hash function
k - key of data
Collision
Text
Linked List
Basic Operations
Types of tree
Binary tree