ดาวน์โหลดงานนำเสนอ
งานนำเสนอกำลังจะดาวน์โหลด โปรดรอ
ได้พิมพ์โดยอุบล บุตโต ได้เปลี่ยน 8 ปีที่แล้ว
1
Linked List (2) Sanchai Yeewiyom School of Information & Communication Technology University of Phayao
2
2 Linked List Deletion 3 methods Deleting a specified node from a linked list. Deletion of the first node in a linked list. Deletion of the last node in a linked list.
3
3 Deleting a specified node from a linked list. 5810 head prevcur 1
4
4 Deleting a specified node from a linked list. Algorithm prev -> next = cur -> next; delete cure; cur = null;
5
5 Deletion of the first node in a linked list. 5810 head cur 1
6
6 Deletion of the first node in a linked list. Algorithm cur = head; head = head -> next; delete cure; cur = null;
7
7 Deletion of the last node in a linked list. 5810 head prevcur 1
8
8 Deletion of the last node in a linked list. Algorithm prev -> next = cur -> next; delete cur; cur = null;
9
9 Conclude of Deletion 1. Deletion at the first node of a list. 2. Deletion at the last node or any node of a list.
10
10 Exp. Deletion void deletion(int val) { prev = null; cur = head; while (cur != null && val != cur->data) { prev = cur; cur = cur->next; } if cur = = null { cout << “not found” << endl; } else { if prev = = null { head = head->next; } else { prev->next = cur->next; cur->next = null; } delete cur; cur = null; } }
11
11 10 Circular Linked List 58
12
12 Circular Linked List Principle เริ่มต้นให้ list = null สร้าง list ใหม่ ให้ list ย้ายไปชี้ที่ตัวที่สร้างใหม่ ( ตัวสุดท้าย )
13
13 Circular Linked List Picture
14
14 Circular Linked List Homework จงเขียน Function ของการ Delete Node ออกจาก Circular Linked List โดยกำหนดให้มีการรับค่าที่ต้องการ ลบเข้ามา จากนั้นทำการค้นหา เมื่อ เจอ Node ที่ต้องการให้ทำการลบ Node นั้นออกไป
15
15 Doubly Linked List A linked list that have 2 pointers (front, end)
16
16 Doubly Linked List data precede next
17
17 Doubly Linked List struct node; typedef node *ptrtype; struct node { int data; ptrtype precede, next; };
18
18 Insertion of Doubly Linked List Picture
19
19 Insertion of Doubly Linked List Algorithms newptr -> next = cur; newptr -> precede = cur -> precede; (cur -> precede) -> next = newptr; cur -> precede =newptr;
20
20 Deletion of Doubly Linked List Picture
21
21 Deletion of Doubly Linked List Algorithms (cur -> precede) -> next = cur -> next; (cur -> next) -> precede = cur -> precede;
22
22 Circular Doubly Linked List เหมือนกับ CLL ทำงานเหมือนกัน ต้องมี Dummy Head Node -999 listhead
23
23 Circular Doubly Linked List สร้าง Dummy Head Node listhead = new node; listhead->data = -999; listhead->precede = listhead; listhead->next = listhead;
24
24 Insertion of Circular Doubly Linked List Picture
25
25 Insertion of Circular Doubly Linked List Algorithm
26
26 Deletion of Circular Doubly Linked List Picture
27
27 Deletion of Circular Doubly Linked List Algorithm
งานนำเสนอที่คล้ายกัน
© 2024 SlidePlayer.in.th Inc.
All rights reserved.