Skip to content

NelsonBN/algorithms-data-structures-linked-list

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Algorithms and Data Structures - Linked List

Singly Linked List

Node:

classDiagram
    class Node {
        data
        next
    }
Loading

Linked List:

graph LR
    A[Head] --> B[Node]
    B --> C[Node]
    C --> D[Node]
    D --> E[Node]
    E --> F[Node]
    F --> G[Node]
Loading

Demos:

Rotating a Linked List

Rotate Linked List

References