John Mavrick's Garden

Search IconIcon to open search

Last updated Unknown

array vStatus: Tags: Links: Abstract Data Type


Linked List

Principles

Characteristics

Single vs double

Single vs doubly linked

Circular

Sorting type

Position-oriented
Value-oriented data

Two possibilities:

Traversing

In relation to removing the last node:

Syntax

Functions

add_to_head add_to_tail remove_from_head remove_from_tail

Variables

list→head node→next node→data

Implementation

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
struct node{ 
	int data; 
	struct node * next;  
};

typedef struct node node_t;  

node_t x1;  
x1.data = 5;

x1.next = NULL;

node_t x2;  
x2.data = 7;

x1.next = &x2;

x2.next=NULL;

Add to Head

New list:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
append(int newElement) {
    Node * newNode = new Node(newElement);
    if (newNode != NULL) {
      if (head == NULL) head = newNode;
      else {
        // Move to the end of the list
        Node * current = head; // Anchor
        while (current  next != NULL)
          current = current  next;
        current  next = newNode;
      }
      elementCount++;
    }
}

Remove from Head

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
if (head != NULL) {
Node* nodeToRemove = head;
head = headnext;
// Return node to the system
nodeToRemovenext = NULL;
delete nodeToRemove;
nodeToRemove = NULL;
elementCount--;
}
___
# Backlinks
```dataview
list from Linked List AND !outgoing(Linked List)

References:

Created:: 2021-11-01 15:21


Interactive Graph