題目鏈結 ,需要許可權
本題要求實現乙個函式,在遞增的整數序列鍊錶(帶頭結點)中插入乙個新整數,並保持該序列的有序性。
函式介面定義:
list insert( list l, elementtype x );其中list結構定義如下:
typedef struct node ptrtonode;struct node ;
typedef ptrtonode list; / 定義單鏈表型別 */
l是給定的帶頭結點的單鏈表,其結點儲存的資料是遞增有序的;函式insert要將x插入l,並保持該序列的有序性,返回插入後的煉表頭指標。
裁判測試程式樣例:
#include#include
typedef int elementtype;
typedef struct node ptrtonode;
struct node ;
typedef ptrtonode list;
list read(); / 細節在此不表 /
void print( list l ); / 細節在此不表 */
list insert( list l, elementtype x );
int main()
/* 你的**將被嵌在這裡 */輸入樣例:
51 2 4 5 6
3輸出樣例:
1 2 3 4 5 6思路解析 :題目所出現的頭結點 l 是不帶資訊指向第乙個有效節點的指標
list insert
(list l, elementtype x)
while
(l->data//查詢 x 應該插入的位置
l = l-
>next;
} new-
>next = l-
>next;
//此時找到的是比 x 大的結點位置 ,則 值先交換 鍊錶插入
l->next = new;
new-
>data = l-
>data;
l->data = x;
return p;
}
遞增的整數序列鍊錶的插入
遞增的整數序列鍊錶的插入 本題要求實現乙個函式,在遞增的整數序列鍊錶 帶頭結點 中插入乙個新整數,並保持該序列的有序性。函式介面定義 list insert list l,elementtype x 其中list結構定義如下 typedef struct node ptrtonode struct ...
遞增的整數序列鍊錶的插入
本題要求實現乙個函式,在遞增的整數序列鍊錶 帶頭結點 中插入乙個新整數,並保持該序列的有序性。函式介面定義 list insert list l,elementtype x 其中list結構定義如下 typedef struct node ptrtonode struct node typedef ...
6 5 遞增的整數序列鍊錶的插入
list insert list l,elementtype x 其中list 結構定義如下 typedef struct node ptrtonode struct node typedef ptrtonode list 定義單鏈表型別 說明 l是給定的帶頭結點的單鏈表,其結點儲存的資料是遞增有序...