[PTA] 数据结构与算法题目集 6-3 求链式表的表长

it2025-11-11  7

Length( List L ){ int res=0; while(L!=NULL){ res++; L=L->Next; } return res; }

转载于:https://www.cnblogs.com/ruoh3kou/p/9976114.html

最新回复(0)