校招刷题群
高效刷题 迎战校招
校招精选试题
近年面笔经面经群内分享
Java刷题群 前端刷题群 产品运营群
首页 > 算法 > 链表算法
题目

求单链表中有效节点的个数(如果有头结点,不统计头结点)

解答
public static int getLenth(Node head){
if (head.next == null) {
return 0;
}
int lenth = 0;
//让辅助指针指向头结点的下一个,就没有统计头结点
Node temp = head.next;
while(temp != null){
temp = temp.next;
lenth++;
}
return lenth;
}


C 0条回复 评论

帖子还没人回复快来抢沙发