#include <stdio.h>
#include <stdlib.h>
#define UINT unsigned int
struct item
{
UINT time ; // time in tics which is used to order the list.
UINT id ; // penguin id number.
UINT event ; // event this item describes.
struct item *next ; // pointer to next item in list.
};
struct item *head=NULL;
struct item *trail=NULL;
void link_list(UINT time, UINT id, UINT event)
{
struct item *t=NULL;
static int i=0;
if(i==0)
{
head->time=time;
head->id=id;
head->event=event;
trail=head;
trail->next=NULL;
i++;
printf("Hello Word\n");
}
t=malloc(sizeof(struct item));
trail->next=t;
trail->time=time;
trail->id=id;
trail->event=event;
trail=t;
trail->next=NULL;
if(i!=0)
printf("I am \n");
}
int main(int argc, char *argv[])
{
UINT x[3]={4,5,7}, y[3]={40,50,60}, z[3]={100,900,500};
int i=0;
head=malloc(sizeof(struct item));
trail=head;
link_list(x[0], y[0], z[0]);
link_list(x[1], y[1], z[1]);
link_list(x[2], y[2], z[2]);
struct item *f=NULL;
f=head;
do
{
printf("trail: %d %d %d\n", f->time, f->id, f->event);
f=f->next;
}
while(f!=NULL);
return 0;
}
良い一日、
現在、リンク リストのコード実装に論理的な問題があります。このコードは、リンクされたリストを使用するより大きなプログラムに統合するために使用しているフレームワークであるため、これを正しく行う必要があります。
基本的に何が起こっているかというと、リンクされたリストの内容を確認するためのデバッグ ラインとして使用する do while ループに最終的に到達すると、コマンド ラインで次の出力が得られます。
トレイル: 4 40 100
トレイル: 5 50 900
トレイル: 7 60 500
トレイル: 0 0 0
出力が次のようになることを期待しています。
トレイル: 4 40 100
トレイル: 5 50 900
トレイル: 7 60 500
他の printf は、関数を実際に正しく実行しているかどうかを確認するために使用されるため、コードから除外しました。また、これは無関係かもしれませんが、Linux で c 用のより良いデバッガーはありますか? ビルトインデバッガーが malloc コマンドに入ると狂ってしまうので、頭の中のすべてのプログラムをデバッグしなければなりません。:(