time limit: 1 sec
memory limit: 128 mb
submit: 23
solved: 20 [
submit][
status][
web board]
根據具有10個元素的整型陣列構建鍊錶,刪除其中的指定結點3和6,並輸出鍊錶中所有元素的值。請完善如下程式:只需提交需要填寫部分的**。
#include
#include
typedef struct node
node;
int main()
;int i;
head = (node *)malloc(sizeof(node)); //開闢頭結點
p1 = (node *)malloc(sizeof(node));
p1->data = a[0];
head->next = p1;
for( i = 1 ; i < 10 ; i++) //對鍊錶進行賦值,建立包含1-10的鍊錶
p1 = head->next;
p2 = p1->next;
printf("%d",p1->data);
while( p2 != null )
printf(" %d",p2->data);
p1 = p2;
p2 = p2->next;
}return 0;}無
不存在3和6的鍊錶序列
1 2 4 5 7 8 9 10
#include #include typedef struct node
node;
int main()
; int i;
head = (node *)malloc(sizeof(node)); //開闢頭結點
p1 = (node *)malloc(sizeof(node));
p1->data = a[0];
head->next = p1;
for( i = 1 ; i < 10 ; i++) //對鍊錶進行賦值,建立包含1-10的鍊錶
p1 = head->next;
p2 = p1->next;
printf("%d",p1->data);
while( p2 != null )
printf(" %d",p2->data);
p1 = p2;
p2 = p2->next;
}return 0;
}
水!!!
鍊錶基本操作 指定結點刪除
web board problemset standing status statistics time limit 1 sec memory limit 128 mb submit 164 solved 108 submit status web board 根據具有10個元素的整型陣列構建鍊錶,...
YTU 2620 B 鍊錶操作
時間限制 1 sec 記憶體限制 128 mb 提交 418 解決 261 1 編寫乙個函式createlink,用來建立乙個動態鍊錶 鍊錶中的節點個數由引數count來控制 節點結構如下 struct node 函式createlink的宣告如下 node createlink int count...
鍊錶基本操作
include include string h include typedef struct stust void xj st h 生成單鏈表 l l null void shc st h 輸出鍊錶 printf d n h d void chr st h 按大小插入元素 else h h l v...