A tömbhöz és a hivatkozott listához hasonlóan a kibontott linkelt lista is egy lineáris adatstruktúra, és a hivatkozott lista egy változata.
Miért van szükségünk a kibontott linkelt listára?
A linkelt listák egyik legnagyobb előnye a tömbökkel szemben, hogy egy elem beszúrása bármely helyre csak O(1) kell. Azonban itt az a bökkenő, hogy egy linkelt lista elemének kereséséhez O(n) szükséges. Tehát a keresés problémájának megoldására, azaz az elem keresési idejének lerövidítésére a kibontott linkelt listák koncepcióját terjesztették elő. A kibontott linkelt lista lefedi mind a tömb, mind a hivatkozott lista előnyeit, mivel csökkenti a memória többletköltségét az egyszerű csatolt listákhoz képest azáltal, hogy minden csomóponton több elemet tárol, és megvan a gyors beszúrás és törlés is, mint egy linkelt listánál.

Előnyök:
- A gyorsítótár viselkedése miatt a lineáris keresés sokkal gyorsabb a kibontott linkelt listákban.
- A hagyományos linkelt listához képest kevesebb tárhelyet igényel a mutatók/hivatkozások számára.
- Gyorsabban hajt végre olyan műveleteket, mint a beszúrás törlése és a bejárás, mint a hagyományos linkelt listák (mivel a keresés gyorsabb).
Hátrányok:
- A csomópontonkénti többletköltség viszonylag magas, mint az egyedileg összekapcsolt listáké. Tekintse meg az alábbi kód egy példacsomópontját
Példa: Tegyük fel, hogy 8 elemünk van, tehát sqrt(8)=2,82, ami 3-ra kerekít. Tehát minden blokk 3 elemet fog tárolni. Így 8 elem tárolására 3 blokk jön létre, amelyekből az első két blokk 3, az utolsó blokk pedig 2 elemet tárol.
ábécé szám
Hogyan válik jobbá a keresés a kibontott linkelt listákban?
Tehát a fenti példát követve, ha a 7. elemet akarjuk keresni a listában, akkor a blokkok listáját átlépjük arra, amelyik a 7. elemet tartalmazza. Csak O(sqrt(n)) kell, mivel azt találtuk, hogy nem haladja meg az sqrt(n) blokkot.
Egyszerű megvalósítás:
Az alábbi program egy egyszerű, gördített linkelt listát hoz létre 3 csomóponttal, amelyek mindegyikében változó számú elem található. A létrehozott listát is bejárja.
C++// C++ program to implement unrolled linked list // and traversing it. #include using namespace std; #define maxElements 4 // Unrolled Linked List Node class Node { public: int numElements; int array[maxElements]; Node *next; }; /* Function to traverse an unrolled linked list and print all the elements*/ void printUnrolledList(Node *n) { while (n != NULL) { // Print elements in current node for (int i=0; i<n->numElements; i++) cout<<n->array[i]<<' '; // Move to next node n = n->next; } } // Program to create an unrolled linked list // with 3 Nodes int main() { Node* head = NULL; Node* second = NULL; Node* third = NULL; // allocate 3 Nodes head = new Node(); second = new Node(); third = new Node(); // Let us put some values in second node (Number // of values must be less than or equal to // maxElement) head->numElements = 3; head->array[0] = 1; head->array[1] = 2; head->array[2] = 3; // Link first Node with the second Node head->next = second; // Let us put some values in second node (Number // of values must be less than or equal to // maxElement) second->numElements = 3; second->array[0] = 4; second->array[1] = 5; second->array[2] = 6; // Link second Node with the third Node second->next = third; // Let us put some values in third node (Number // of values must be less than or equal to // maxElement) third->numElements = 3; third->array[0] = 7; third->array[1] = 8; third->array[2] = 9; third->next = NULL; printUnrolledList(head); return 0; } // This is code is contributed by rathbhupendra
C // C program to implement unrolled linked list // and traversing it. #include #include #define maxElements 4 // Unrolled Linked List Node struct Node { int numElements; int array[maxElements]; struct Node *next; }; /* Function to traverse an unrolled linked list and print all the elements*/ void printUnrolledList(struct Node *n) { while (n != NULL) { // Print elements in current node for (int i=0; i<n->numElements; i++) printf('%d ' n->array[i]); // Move to next node n = n->next; } } // Program to create an unrolled linked list // with 3 Nodes int main() { struct Node* head = NULL; struct Node* second = NULL; struct Node* third = NULL; // allocate 3 Nodes head = (struct Node*)malloc(sizeof(struct Node)); second = (struct Node*)malloc(sizeof(struct Node)); third = (struct Node*)malloc(sizeof(struct Node)); // Let us put some values in second node (Number // of values must be less than or equal to // maxElement) head->numElements = 3; head->array[0] = 1; head->array[1] = 2; head->array[2] = 3; // Link first Node with the second Node head->next = second; // Let us put some values in second node (Number // of values must be less than or equal to // maxElement) second->numElements = 3; second->array[0] = 4; second->array[1] = 5; second->array[2] = 6; // Link second Node with the third Node second->next = third; // Let us put some values in third node (Number // of values must be less than or equal to // maxElement) third->numElements = 3; third->array[0] = 7; third->array[1] = 8; third->array[2] = 9; third->next = NULL; printUnrolledList(head); return 0; }
Java // Java program to implement unrolled // linked list and traversing it. import java.util.*; class GFG{ static final int maxElements = 4; // Unrolled Linked List Node static class Node { int numElements; int []array = new int[maxElements]; Node next; }; // Function to traverse an unrolled // linked list and print all the elements static void printUnrolledList(Node n) { while (n != null) { // Print elements in current node for(int i = 0; i < n.numElements; i++) System.out.print(n.array[i] + ' '); // Move to next node n = n.next; } } // Program to create an unrolled linked list // with 3 Nodes public static void main(String[] args) { Node head = null; Node second = null; Node third = null; // Allocate 3 Nodes head = new Node(); second = new Node(); third = new Node(); // Let us put some values in second // node (Number of values must be // less than or equal to maxElement) head.numElements = 3; head.array[0] = 1; head.array[1] = 2; head.array[2] = 3; // Link first Node with the // second Node head.next = second; // Let us put some values in // second node (Number of values // must be less than or equal to // maxElement) second.numElements = 3; second.array[0] = 4; second.array[1] = 5; second.array[2] = 6; // Link second Node with the third Node second.next = third; // Let us put some values in third // node (Number of values must be // less than or equal to maxElement) third.numElements = 3; third.array[0] = 7; third.array[1] = 8; third.array[2] = 9; third.next = null; printUnrolledList(head); } } // This code is contributed by amal kumar choubey
Python3 # Python3 program to implement unrolled # linked list and traversing it. maxElements = 4 # Unrolled Linked List Node class Node: def __init__(self): self.numElements = 0 self.array = [0 for i in range(maxElements)] self.next = None # Function to traverse an unrolled linked list # and print all the elements def printUnrolledList(n): while (n != None): # Print elements in current node for i in range(n.numElements): print(n.array[i] end = ' ') # Move to next node n = n.next # Driver Code if __name__=='__main__': head = None second = None third = None # Allocate 3 Nodes head = Node() second = Node() third = Node() # Let us put some values in second # node (Number of values must be # less than or equal to # maxElement) head.numElements = 3 head.array[0] = 1 head.array[1] = 2 head.array[2] = 3 # Link first Node with the second Node head.next = second # Let us put some values in second node # (Number of values must be less than # or equal to maxElement) second.numElements = 3 second.array[0] = 4 second.array[1] = 5 second.array[2] = 6 # Link second Node with the third Node second.next = third # Let us put some values in third node # (Number of values must be less than # or equal to maxElement) third.numElements = 3 third.array[0] = 7 third.array[1] = 8 third.array[2] = 9 third.next = None printUnrolledList(head) # This code is contributed by rutvik_56
C# // C# program to implement unrolled // linked list and traversing it. using System; class GFG{ static readonly int maxElements = 4; // Unrolled Linked List Node class Node { public int numElements; public int []array = new int[maxElements]; public Node next; }; // Function to traverse an unrolled // linked list and print all the elements static void printUnrolledList(Node n) { while (n != null) { // Print elements in current node for(int i = 0; i < n.numElements; i++) Console.Write(n.array[i] + ' '); // Move to next node n = n.next; } } // Program to create an unrolled linked list // with 3 Nodes public static void Main(String[] args) { Node head = null; Node second = null; Node third = null; // Allocate 3 Nodes head = new Node(); second = new Node(); third = new Node(); // Let us put some values in second // node (Number of values must be // less than or equal to maxElement) head.numElements = 3; head.array[0] = 1; head.array[1] = 2; head.array[2] = 3; // Link first Node with the // second Node head.next = second; // Let us put some values in // second node (Number of values // must be less than or equal to // maxElement) second.numElements = 3; second.array[0] = 4; second.array[1] = 5; second.array[2] = 6; // Link second Node with the third Node second.next = third; // Let us put some values in third // node (Number of values must be // less than or equal to maxElement) third.numElements = 3; third.array[0] = 7; third.array[1] = 8; third.array[2] = 9; third.next = null; printUnrolledList(head); } } // This code is contributed by Rajput-Ji
JavaScript <script> // JavaScript program to implement unrolled // linked list and traversing it. const maxElements = 4; // Unrolled Linked List Node class Node { constructor() { this.numElements = 0; this.array = new Array(maxElements); this.next = null; } } // Function to traverse an unrolled // linked list and print all the elements function printUnrolledList(n) { while (n != null) { // Print elements in current node for (var i = 0; i < n.numElements; i++) document.write(n.array[i] + ' '); // Move to next node n = n.next; } } // Program to create an unrolled linked list // with 3 Nodes var head = null; var second = null; var third = null; // Allocate 3 Nodes head = new Node(); second = new Node(); third = new Node(); // Let us put some values in second // node (Number of values must be // less than or equal to maxElement) head.numElements = 3; head.array[0] = 1; head.array[1] = 2; head.array[2] = 3; // Link first Node with the // second Node head.next = second; // Let us put some values in // second node (Number of values // must be less than or equal to // maxElement) second.numElements = 3; second.array[0] = 4; second.array[1] = 5; second.array[2] = 6; // Link second Node with the third Node second.next = third; // Let us put some values in third // node (Number of values must be // less than or equal to maxElement) third.numElements = 3; third.array[0] = 7; third.array[1] = 8; third.array[2] = 9; third.next = null; printUnrolledList(head); </script>
Kimenet
1 2 3 4 5 6 7 8 9
Bonyolultsági elemzés:
Ebben a cikkben bemutattunk egy kibontott listát és annak előnyeit. Megmutattuk azt is, hogyan lehet bejárni a listát. A következő cikkben részletesen tárgyaljuk a beillesztés törlését és a maxElements/numElements értékeit.
Beszúrás a gördítetlen hivatkozási listába
df.loc