※ ChatGPTを利用し、要約された質問です(原文:単方向リストに適当な値を入れて、逆順に表示するプログラムの仕組みがわかりません。)
単方向リストの逆順表示プログラムの仕組み
このQ&Aのポイント
単方向リストに適当な値を入れて、逆順に表示するプログラムの仕組みがわかりません。
以下のプログラムのReverceShowValue関数の仕組みがわかりません。
申し訳ございませんが、ご教授の方、よろしくお願いします。
単方向リストに適当な値を入れて、逆順に表示するプログラムの仕組みがわかりません。
以下のプログラムのReverceShowValue関数の仕組みがわかりません。
申し訳ございませんが、ご教授の方、よろしくお願いします。
#if 1
/* リスト構造の実装
* 再帰関数を用いて逆順に表示
*/
#include <stdio.h>
#include <stdlib.h>
typedef struct object{
int value;
struct object *next;
}OBJ;
OBJ* AllocateBlock(int value)
{
OBJ *block;
block = (OBJ*)malloc(sizeof(OBJ));
if(block == NULL){
printf("Allocate Error\n");
exit(1);
}
block->value = value;
block->next = NULL;
return block;
}
void ReverceShowValue(OBJ *p)
{
if(p != NULL){
ReverceShowValue(p->next);
printf("%d\n", p->value);
}
}
void FreeAllocate(OBJ *p_top)
{
OBJ *temp;
while(p_top != NULL){
temp = p_top->next;
free(p_top);
p_top = temp;
}
}
int main(void)
{
OBJ *top = NULL;
OBJ *temp;
int i;
for(i = 0;i < 10;i++){
if(top == NULL){
top = AllocateBlock(i);
temp = top;
}
else{
temp->next = AllocateBlock(i);
temp = temp->next;
}
}
ReverceShowValue(top);
FreeAllocate(top);
return 0;
}
#endif
お礼
ご回答して頂き、誠にありがとうございます。 早速、asuncionさんからお教え頂いた、コードをハックしてみます。 ありがとうございました。