Các thao tác cơ bản trên danh sách ñơn Giả sử có các ñịnh nghĩa: typedef struct tagNode { Data Info; struct tagNode* pNext; }NODE; typedef struct tagList { NODE* pHead; NODE* pTail; }L
Trang 13.3.2 Các thao tác cơ bản trên danh sách ñơn
Giả sử có các ñịnh nghĩa:
typedef struct tagNode {
Data Info;
struct tagNode* pNext;
}NODE;
typedef struct tagList {
NODE* pHead;
NODE* pTail;
}LIST;
NODE *new_ele; // giữ ñịa chỉ của một phần tử mới ñược tạo Data x; // lưu thông tin về một phần tử sẽ ñược tạo
This is trial version www.adultpdf.com
Trang 2Chèn một phần tử vào ñầu danh sách
Bắt ñầu:
Nếu Danh sách rỗng Thì B11 : Head = new_elelment;
B12 : Tail = Head;
Ngược lại B21 : new_ele ->pNext = Head;
B22 : Head = new_ele ;
This is trial version www.adultpdf.com
Trang 3void AddFirst(LIST &l, NODE* new_ele) {
if (l.pHead==NULL) //Xâu rỗng { l.pHead = new_ele; l.pTail = l.pHead;
} else { new_ele->pNext = l.pHead;
l.pHead = new_ele;
} } NODE* InsertHead(LIST &l, Data x) { NODE* new_ele = GetNode(x);
if (new_ele ==NULL) return NULL;
if (l.pHead==NULL) { l.pHead = new_ele; l.pTail = l.pHead;
} else { new_ele->pNext = l.pHead;
.pHead = new_ele;
} return new_ele;
}
This is trial version www.adultpdf.com
Trang 4Chèn một phần tử vào cuối danh sách
Bắt ñầu : Nếu Danh sách rỗng Thì B11 : Head = new_elelment;
B12 : Tail = Head;
Ngược lại B21 : Tail ->pNext = new_ele;
B22 : Tail = new_ele ;
This is trial version www.adultpdf.com
Trang 5void AddTail(LIST &l, NODE *new_ele) {
if (l.pHead==NULL) {
l.pHead = new_ele; l.pTail = l.pHead;
} else {
l.pTail->Next = new_ele;
l.pTail = new_ele;
} } NODE* InsertTail(LIST &l, Data x) {
NODE* new_ele = GetNode(x);
if (new_ele ==NULL) return NULL;
if (l.pHead==NULL) { l.pHead = new_ele; l.pTail = l.pHead;
} else { l.pTail->Next = new_ele;
l.pTail = new_ele;
} return new_ele;
}
This is trial version www.adultpdf.com
Trang 6Chèn một phần tử vào sau phần tử q
Bắt ñầu : Nếu ( q != NULL) thì B1: new_ele -> pNext = q->pNext;
B2: q->pNext = new_ele
This is trial version www.adultpdf.com
Trang 7void AddAfter(LIST &l,NODE *q, NODE* new_ele) {
if ( q!=NULL) { new_ele->pNext = q->pNext;
q->pNext = new_ele;
if(q == l.pTail) l.pTail = new_ele;
}else //chèn vào ñầu danh sách AddFirst(l, new_ele);
}
void InsertAfter(LIST &l,NODE *q, Data x){
NODE* new_ele = GetNode(x);
if (new_ele ==NULL) return NULL;
if ( q!=NULL) { new_ele->pNext = q->pNext;
q->pNext = new_ele;
if(q == l.pTail) l.pTail = new_ele;
}else //chèn vào ñầu danh sách
AddFirst(l, new_ele);
}
This is trial version www.adultpdf.com
Trang 8Tìm một phần tử trong danh sách ñơn
Xâu ñơn ñòi hỏi truy xuất tuần tự, áp dụng thuật toán tìm tuyến tính ñể xác ñịnh phần tử trong xâu có khoá k Thuật toán ñược thể hiện như sau :
Bước 1:
p = Head; //Cho p trỏ ñến phần tử ñầu danh sách Bước 2:
Trong khi (p != NULL) và (p->pNext != k ) thực hiện:
B21 : p:=p->Next;// Cho p trỏ tới phần tử kế Bước 3:
Nếu p != NULL thì p trỏ tới phần tử cần tìm Ngược lại: không có phần tử cần tìm
This is trial version www.adultpdf.com
Trang 9NODE *Search(LIST l, Data k) {
NODE *p;
p = l.pHead;
while((p!= NULL)&&(p->Info != x))
p = p->pNext;
return p;
}
This is trial version www.adultpdf.com
Trang 10Hủy một phần tử ñầu danh sách ñơn
Bắt ñầu:
Nếu (Head != NULL) thì B1: p = Head;
B2:
B21 : Head = Head->pNext; // tách p ra khỏi xâu B22 : free(p); // Hủy biến ñộng do p trỏ ñến B3: Nếu Head=NULL thì Tail = NULL; //Xâu rỗng
This is trial version www.adultpdf.com