順序表是C語言中一種基本的結構,可以存儲各種基本類型的數(shù)據(jù),而且不但可以存儲基本類型的數(shù)據(jù),也可以存儲一種結構。所以順序表是一種在學C的過程中必須掌握的結構,通過學習整理,下面來實現(xiàn)一下:
成都創(chuàng)新互聯(lián)公司長期為近千家客戶提供的網(wǎng)站建設服務,團隊從業(yè)經驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為漢川企業(yè)提供專業(yè)的成都做網(wǎng)站、網(wǎng)站建設、外貿營銷網(wǎng)站建設,漢川網(wǎng)站改版等技術服務。擁有10多年豐富建站經驗和眾多成功案例,為您定制開發(fā)。首先,先要想好用什么實現(xiàn),一般實現(xiàn)最基本的順序表的話直接用數(shù)組實現(xiàn),我們在這用一個結構體來封裝這個順序表(封裝這一概念是在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;
對于無法確定數(shù)組大小,我們可以用宏來表示。
把大體結構搭建好了之后,就可以思考一個順序表應該具有的功能,頭插,尾插,定點插入,排序等等都是一些最基本的功能:
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);
下面就是一些關鍵函數(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)//定點刪除 { 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; }
這只是最基本的順序表,只能夠存儲基本類型的數(shù)據(jù),如果想要存儲結構體或者string之類的數(shù)據(jù)的話會涉及C++的深淺拷貝問題,而且用一個數(shù)組來存未知大小的數(shù)據(jù)結構的話是做不到的。
本人的博客后面會更新順序表的一些優(yōu)化寫法,希望對朋友微小的幫助。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
本文題目:C語言實現(xiàn)順序表-創(chuàng)新互聯(lián)
本文URL:http://www.rwnh.cn/article10/dcdogo.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、網(wǎng)站制作、企業(yè)網(wǎng)站制作、軟件開發(fā)、電子商務、小程序開發(fā)
聲明:本網(wǎng)站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)