#include #include //資料型別
typedef int elemtype;
//節點儲存結構, 頭結點用來儲存長度
typedef struct node
node;
typedef node *ptrtonode;
//節點指標
typedef ptrtonode position;
//鍊錶
typedef ptrtonode list;
//鍊錶初始化,對頭結點進行初始化,資料域儲存鍊錶長度
void init(list *l)
//鍊錶是否為空
int isempty(list l)
//節點是否擁有下乙個元素
int islast(position p)
//獲取鍊錶長度
int length(list l)
//查詢節點
position find(elemtype data, list l)
return p;
}//查詢前乙個節點
position findprevious(elemtype data, list l)
return p;
}//查詢最後乙個節點
position findlast(list l)
return p;
}//新增
position add(elemtype data, list l)
//執行插入
void insert(elemtype data, list l, position p)
//執行刪除
void delete(list l, position p)
//清空鍊錶
void empty(list l)
l -> next = null;
}int main(void)
資料結構 表之煉表
頭插法建立 尾插法建立 顯示 銷毀 include include using namespace std typedef int elemtype typedef struct lnode linklist void createlinklistf linklist l,elemtype a,in...
資料結構之鍊錶
頭結點 第乙個有效結點之前的那個結點 頭結點並不存有效資料 加頭結點的目的主要是為了方便對鍊錶的操作 頭指標 指向頭結點的指標變數 尾指標 指向尾節點的指標變數 如果希望通過乙個函式對鍊錶進行處理,只需要乙個引數 頭指標 首先要定義乙個單鏈表儲存結構 然後建立乙個空表,即初始化,我寫的這個提前設定好...
資料結構之鍊錶
鍊錶是一種基本的資料結構型別,它由乙個個結點組成。每乙個結點包括乙個資料的儲存和乙個指向下乙個結點的引用。在這個定義中,結點是乙個可能含有任意型別資料的抽象實體,它所包含的指向結點的應用顯示了它在構造鍊錶之中的作用。和遞迴程式一樣,遞迴資料結構的概念一開始也令人費解,但其實它的簡潔性賦予了它巨大的價...