码迷,mamicode.com
首页 > 其他好文 > 详细

LF.33.number Of Nodes

时间:2018-03-27 14:33:10      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:log   amp   bsp   solution   next   example   class   lis   ext   

Return the number of nodes in the linked list.

Examples

L = null, return 0
L = 1 -> null, return 1
L = 1 -> 2 -> null, return 2

 

 

 1 public class Solution {
 2   public int numberOfNodes(ListNode head) {
 3     // Write your solution here
 4     if (head == null) {
 5         return 0;
 6     }
 7     int res = 0;
 8     ListNode curr = head ;
 9     while(curr != null){
10         curr = curr.next ;
11         res++;
12     }
13     return res ;
14   }
15 }

 

LF.33.number Of Nodes

标签:log   amp   bsp   solution   next   example   class   lis   ext   

原文地址:https://www.cnblogs.com/davidnyc/p/8656790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!