2005-06-30から1日間の記事一覧

はじめての C

「リンクリスト 3」 先頭が ダミーで、末尾が null ▽ 初期化: struct Item list; list->next = NULL; item の後に n を 挿入: n->next = item->next; item->next = n; item の後を 削除: save = item->next; item->next = item->next->next; 移動: for (ite…