1
如何跟蹤我的尾節點,以便快速返回它的值。這是我如何創建我的列表到目前爲止,但我想寫一個函數,可以返回最後一個節點,並從列表中刪除它。不要太知道從哪裏開始如何跟蹤鏈表中的尾節點
typedef struct node_t{
int val;
struct node_t *next;
}node_t;
int main(int argc, char *argv[])
{
int input;
node_t *list;
list = NULL;
list = push(1,list);
list = push(2,list);
list = push(3,list);
return 0;
}
node_t *push(int input, node_t *list)
{
if(list == NULL)
{
list = makeStack(input, list);
return list;
}
else
{
list->next = push(input,list->next);
}
return list;
}