言語はC言語です。
struct node newlist()
{
struct node hd, tl;
hd = (struct node)malloc(sizeofhd);
tl = (struct node)malloc(sizeof*tl);
hd->next = tl; hd->data=NULL;
tl->next = tl; tl->data=NULL;
return hd;
}
これを参考にしてつくれとのことです。よくわからないので詳しく説明していただいたら嬉しいです。
あなたの回答
tips
プレビュー