質問編集履歴

1

説明不足

2020/10/29 06:25

投稿

ArkRoyaL
ArkRoyaL

スコア0

test CHANGED
File without changes
test CHANGED
@@ -1 +1,29 @@
1
1
  ![イメージ説明](b0fed2497cb55175d67ff0cee8703546.png)
2
+
3
+
4
+
5
+ 言語はC言語です。
6
+
7
+
8
+
9
+ struct node *newlist()
10
+
11
+ {
12
+
13
+ struct node *hd, *tl;
14
+
15
+ hd = (struct node*)malloc(sizeof*hd);
16
+
17
+ tl = (struct node*)malloc(sizeof*tl);
18
+
19
+ hd->next = tl; hd->data=NULL;
20
+
21
+ tl->next = tl; tl->data=NULL;
22
+
23
+ return hd;
24
+
25
+ }
26
+
27
+
28
+
29
+ これを参考にしてつくれとのことです。よくわからないので詳しく説明していただいたら嬉しいです。