Linked List ou Liste Chaînée est une structure de données, où chaque élément, appelé noeud, contient une valeur et une référence (ou un pointeur) vers le prochain élément dans la liste. Cela permet de créer une séquence d'éléments connectés, où chaque élément peut être accédé en suivant les références à partir du premier élément, appelé tête de liste.
Une liste chaînée, composée de trois éléments ayant respectivement la valeur : 12, 99 et 37:
Label | Tags | Date |
---|---|---|
21. Merge Two Sorted Lists | Linked List , Recursion |
15-03-2024 |
83. Remove Duplicates from Sorted List | Linked List |
15-03-2024 |
141. Linked List Cycle | Hash Table , Linked List , Two Pointers |
06-03-2024 |
160. Intersection of Two Linked Lists | Hash Table , Linked List , Two Pointers |
16-04-2024 |
206. Reverse Linked List | Linked List , Recursion |
09-03-2024 |
234. Palindrome Linked List | Linked List , Two Pointers , Stack , Recursion |
22-03-2024 |
706. Design HashMap | Array , Hash Table , Linked List , Design , Hash Function |
09-03-2024 |
876. Middle of the Linked List | Linked List , Two Pointers |
07-03-2024 |
1290. Convert Binary Number in a Linked List to Integer | Linked List , Math |
15-03-2024 |
Label | Tags | Date |
---|---|---|
2. Add Two Numbers | Linked List , Math , Recursion |
18-02-2024 |
19. Remove Nth Node From End of List | Linked List , Two Pointers |
03-03-2024 |
143. Reorder List | Linked List , Two Pointers , Stack , Recursion |
23-03-2024 |
328. Odd Even Linked List | Linked List |
18-04-2024 |
1669. Merge In Between Linked Lists | Linked List |
20-03-2024 |
2181. Merge Nodes in Between Zeros | Linked List , Simulation |
04-07-2024 |
2326. Spiral Matrix IV | Array , Matrix , Simulation , Linked List |
09-08-2024 |
2487. Remove Nodes From Linked List | Linked List , Stack , Recursion , Monotonic Stack |
06-05-2024 |
2816. Double a Number Represented as a Linked List | Linked List , Math , Stack |
04-07-2024 |
3217. Delete Nodes From Linked List Present in Array | Array , Hash Table ,Linked List |
06-09-2024 |
Label | Tags | Date |
---|---|---|
23. Merge k Sorted Lists | Linked List , Divide and Conquer , Heap (Priority Queue) , Merge Sort |
25-03-2024 |
25. Reverse Nodes in k-Group | Linked List , Recursion |
26-04-2024 |