Linked
Everything on SkillVeris tagged Linked — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 1 library
Study Notes(5)
Linked List Basics in C
Learn singly linked lists in C: node structs, malloc-based insertion, traversal, and time complexity, with a full compilable example.
Circular Linked Lists
A linked list variant where the last node points back to the first, forming a continuous loop with no None end.
Doubly Linked Lists
A linked list where each node has both next and previous pointers, allowing efficient bidirectional traversal.
Linked List Operations and Problems
Classic linked list algorithms including reversal, cycle detection with Floyd's algorithm, and finding the middle node.
Singly Linked Lists
A linear data structure of nodes connected one-way by next pointers, enabling O(1) head insertion.