เมื่อได้รับรายชื่อที่เชื่อมโยง เราต้องย้ายองค์ประกอบแรกไปยังจุดสิ้นสุด มาดูตัวอย่างกัน
ป้อนข้อมูล
1 -> 2 -> 3 -> 4 -> 5 -> NULL
ผลผลิต
2 -> 3 -> 4 -> 5 -> 1 -> NULL
อัลกอริทึม
-
เริ่มต้นรายการที่เชื่อมโยง
- ส่งคืนหากรายการที่เชื่อมโยงว่างเปล่าหรือมีโหนดเดียว
-
ค้นหาโหนดสุดท้ายของรายการที่เชื่อมโยง
-
ทำให้โหนดที่สองเป็นส่วนหัวใหม่
-
อัปเดตลิงก์ของโหนดแรกและโหนดสุดท้าย
การนำไปใช้
ต่อไปนี้เป็นการนำอัลกอริธึมข้างต้นไปใช้ใน C++
#include <bits/stdc++.h> using namespace std; struct Node { int data; struct Node* next; }; void moveFirstNodeToEnd(struct Node** head) { if (*head == NULL || (*head)->next == NULL) { return; } struct Node* firstNode = *head; struct Node* lastNode = *head; while (lastNode->next != NULL) { lastNode = lastNode->next; } *head = firstNode->next; firstNode->next = NULL; lastNode->next = firstNode; } void addNewNode(struct Node** head, int new_data) { struct Node* newNode = new Node; newNode->data = new_data; newNode->next = *head; *head = newNode; } void printLinkedList(struct Node* node) { while (node != NULL) { cout << node->data << "->"; node = node->next; } cout << "NULL" << endl; } int main() { struct Node* head = NULL; addNewNode(&head, 1); addNewNode(&head, 2); addNewNode(&head, 3); addNewNode(&head, 4); addNewNode(&head, 5); addNewNode(&head, 6); addNewNode(&head, 7); addNewNode(&head, 8); addNewNode(&head, 9); moveFirstNodeToEnd(&head); printLinkedList(head); return 0; }
ผลลัพธ์
หากคุณเรียกใช้โค้ดด้านบน คุณจะได้ผลลัพธ์ดังต่อไปนี้
8->7->6->5->4->3->2->1->9->NULL