您好,登錄后才能下訂單哦!
順序表是C語(yǔ)言中一種基本的結(jié)構(gòu),可以存儲(chǔ)各種基本類型的數(shù)據(jù),而且不但可以存儲(chǔ)基本類型的數(shù)據(jù),也可以存儲(chǔ)一種結(jié)構(gòu)。所以順序表是一種在學(xué)C的過(guò)程中必須掌握的結(jié)構(gòu),通過(guò)學(xué)習(xí)整理,下面來(lái)實(shí)現(xiàn)一下:
首先,先要想好用什么實(shí)現(xiàn),一般實(shí)現(xiàn)最基本的順序表的話直接用數(shù)組實(shí)現(xiàn),我們?cè)谶@用一個(gè)結(jié)構(gòu)體來(lái)封裝這個(gè)順序表(封裝這一概念是在C++中最常用的概念)
#define ARRAY_EMPTY -2 #define ARRAY_FULL -1 #define MAX_SIZE 10000 typedef int Datatype; typedef struct Seqlist { Datatype array[MAX_SIZE]; size_t size; }Seqlist;
對(duì)于無(wú)法確定數(shù)組大小,我們可以用宏來(lái)表示。
把大體結(jié)構(gòu)搭建好了之后,就可以思考一個(gè)順序表應(yīng)該具有的功能,頭插,尾插,定點(diǎn)插入,排序等等都是一些最基本的功能:
void PrintSeqlist(Seqlist* pSeq); void InitSeqlist(Seqlist* pSeq); void PushBack(Seqlist* pSeq, Datatype x); void PushFront(Seqlist* pSeq, Datatype x); void PopBack(Seqlist* pSeq); void PopFront(Seqlist* pSeq); void Insert(Seqlist* pSeq,size_t pos, Datatype x); int Find(Seqlist* pSeq, size_t pos, Datatype x); void Erase(Seqlist* pSeq, size_t pos); int Remove(Seqlist* pSeq, Datatype x); int Removeall(Seqlist* pSeq, Datatype x); void Bubblesort(Seqlist* pSeq); void Selectsort(Seqlist* pSeq); int BinarySearch(Seqlist* pSeq, Datatype x);
下面就是一些關(guān)鍵函數(shù)的實(shí)現(xiàn):
void PrintSeqlist(Seqlist* pSeq)//輸出順序表 { assert(pSeq); size_t i = 0; if (pSeq->size <= 0) { printf("Array is empty\n"); return; } else if (pSeq->size >= MAX_SIZE) { printf("Array is full\n"); } for (; i < pSeq->size; ++i) { printf("%-4d", pSeq->array[i]); } } void InitSeqlist(Seqlist* pSeq)//初始化順序表 { pSeq->size = 0; //printf("Initialization is complete\n"); } void PushBack(Seqlist* pSeq, Datatype x)//后插入 { assert(pSeq); if (pSeq->size >= MAX_SIZE) { printf("Array is full, insert the failure\n"); return; } pSeq->array[pSeq->size] = x; pSeq->size++; } void PushFront(Seqlist* pSeq, Datatype x)//前插入 { assert(pSeq); size_t i = 0; if (pSeq->size >= MAX_SIZE) { printf("Array is full, insert the failure\n"); return; } for (i = pSeq->size; i > 0; --i) { pSeq->array[i] = pSeq->array[i - 1]; } pSeq->array[0] = x; pSeq->size++; } void PopBack(Seqlist* pSeq)//后刪除 { assert(pSeq); if (pSeq->size <= 0) { printf("Array is empty,popback is eeror\n"); return; } pSeq->array[pSeq->size-1] = 0; pSeq->size--; } void PopFront(Seqlist* pSeq)//前刪除 { assert(pSeq); size_t i = 0; if (pSeq->size <= 0) { printf("Array is empty,popback is eeror\n"); return; } for (i = 1; i < pSeq->size; i++) { pSeq->array[i - 1] = pSeq->array[i]; } pSeq->size--; } void Insert(Seqlist* pSeq, size_t pos, Datatype x)//定點(diǎn)刪除 { assert(pSeq); size_t i = 0; if (pSeq->size >= MAX_SIZE) { printf("Array is full, insert the failure\n"); return; } for (i = pSeq->size ; i > pos; i--) { pSeq->array[i] = pSeq->array[i - 1]; } pSeq->array[pos] = x; pSeq->size++; } int Find(Seqlist* pSeq, size_t pos, Datatype x)//查找數(shù)據(jù) { assert(pSeq); size_t i = 0; if (pSeq->size <= 0) { printf("Array is empty,erase error\n"); return ARRAY_EMPTY; } if (pos < 0 || pos >= MAX_SIZE) { printf("Began to find the position error\n"); return -1; } for (i = pos; i < pSeq->size; i++) { if (pSeq->array[i] == x) { return i; } } return -2; } void Erase(Seqlist* pSeq, size_t pos)//刪除特定數(shù)據(jù) { assert(pSeq); size_t i = 0; if (pSeq->size <= 0) { printf("Array is empty,erase error\n"); return; } if (pos < 0 || pos >= MAX_SIZE) { printf("Began to find the position error\n"); return; } for (i = pos; i < pSeq->size; i++) { pSeq->array[i] = pSeq->array[i + 1]; } pSeq->size--; } int Remove(Seqlist* pSeq, Datatype x) { assert(pSeq); size_t i = 0; if (pSeq->size <= 0) { printf("Array is empt,remove error\n"); return ARRAY_EMPTY; } for (; i < pSeq->size; i++) { if (pSeq->array[i] == x) { size_t j = i + 1; for (; j < pSeq->size; j++) { pSeq->array[j - 1] = pSeq->array[j]; } pSeq->size--; return 0; } } return -1; } int Removeall(Seqlist* pSeq, Datatype x) { assert(pSeq); size_t i = 0; int flag = 0; if (pSeq->size <= 0) { printf("Array is empt,remove error\n"); return ARRAY_EMPTY; } for (; i < pSeq->size; i++) { if (pSeq->array[i] == x) { size_t j = i + 1; for (; j < pSeq->size; j++) { pSeq->array[j - 1] = pSeq->array[j]; } pSeq->size--; flag++; if (pSeq->size <= 0)//如果順序表的元素為空就不能再刪除了,返回 { return 0; } else { i--; } } } if (flag > 0) return 0; else return -1; } void Bubblesort(Seqlist* pSeq)//冒泡排序 { assert(pSeq); size_t i = 0; for (; i < pSeq->size; i++) { size_t j = 0; for (; j < pSeq->size - i - 1; j++) { if (pSeq->array[j] > pSeq->array[j + 1]) { int tmp = pSeq->array[j]; pSeq->array[j] = pSeq->array[j + 1]; pSeq->array[j + 1] = tmp; } } } } void Selectsort(Seqlist* pSeq)//選擇排序 { assert(pSeq); size_t i = 0; for (; i < pSeq->size; i++) { int flag = pSeq->array[i]; size_t j = i; for (; j < pSeq->size; j++) { if (pSeq->array[j] < flag) { int tmp = pSeq->array[j]; pSeq->array[j] = flag; flag = tmp; } } pSeq->array[i] = flag; } } int BinarySearch(Seqlist* pSeq, Datatype x)//二分查找 { assert(pSeq); size_t left = 0; size_t right = pSeq->size - 1; while (left <= right) { size_t mid = left + (right - left) / 2; if (x > pSeq->array[mid]) { left = mid + 1; } else if (x < pSeq->array[mid]) { right = mid - 1; } else if (x == pSeq->array[mid]) { return (int)mid; } } return -1; }
這只是最基本的順序表,只能夠存儲(chǔ)基本類型的數(shù)據(jù),如果想要存儲(chǔ)結(jié)構(gòu)體或者string之類的數(shù)據(jù)的話會(huì)涉及C++的深淺拷貝問(wèn)題,而且用一個(gè)數(shù)組來(lái)存未知大小的數(shù)據(jù)結(jié)構(gòu)的話是做不到的。
本人的博客后面會(huì)更新順序表的一些優(yōu)化寫法,希望對(duì)朋友微小的幫助。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。