我正在尝试从堆中打印。如果我遇到一个 NULL 指针,我应该打印 NULL;否则,打印它的价值。
样本输出:
1 [2]
2 null
3 null
4 [7, 3]
5 null
6 [7]
但是我的代码因为取消引用 NULL 指针而不断崩溃。
这是我编写的用于测试的代码:
void printResult(IntList* intL, int nNode, int nEdge)
{
int i;
for (i; i <= 10; i++)
{
if (intRest((intL))
{
printf("%d", intFirst((intL)[i]));
intRest((intL)[i]);
}
else
printf(" NULL ");
}
}
//Here is the definition of functions:
//First
int intFirst(IntList oldL)
{
return oldL->element;
}
/** rest
*/
IntList intRest(IntList oldL)
{
return oldL->next;
}
//=================
struct IntListNode
{
int element;
IntList next;
};
//===================
typedef struct IntListNode * IntList;