我想用一個鏈表來編寫一個簡單的字典,但是我在調用顯示函數後不斷丟失數據。 這裏是我的結構定義 typedef struct node{
int elem;
struct node *next;
}*L;
typedef L Dictionary[10];
這是我的顯示 void display(Dictionary A)
{
int i;
f
我想遞歸刪除鏈接列表。我想到了如何迭代地做到這一點,但我很好奇如何做到這一點。到目前爲止,我有: void deleteNodeRecursively(LinkedList *list, int value){
Node *curr=list->head;
if (list->head==NULL){
return;
}
else if (lis