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

Leetcode 之Length of Last Word(36)

时间:2016-05-26 10:23:26      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

扫描每个WORD的长度并记录即可。

技术分享
 int lengthOfLast(const char *s)
      {
          //扫描统计每个word的长度
          int len = 0;
          while (*s)
          {
              if (*s++ !=  )//注意不管是否满足s都要++
                  len++;
              else if (*s && *s !=  )
                  len = 0;
          }

          return len;
      }
View Code

 

Leetcode 之Length of Last Word(36)

标签:

原文地址:http://www.cnblogs.com/573177885qq/p/5529807.html

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