题目地址:https://pintia.cn/problem-sets/15/problems/726
计算链表长度,注意特判空链表的情况
int Length(List L) { if(!L) return 0;//特判空链表 int len = 1;cout<<L->Data<<endl; while(L->Next != NULL) { len++; L = L->Next; } return len; }
原文地址:https://www.cnblogs.com/mile-star/p/11449353.html
时间: 2024-11-12 09:53:18