摘要:
简单题,我不知道为啥我做的这么纠结..........就是扫描...有空位做个标记,没有就长度就涨...如果之前有空位了,再次出现非空格,那么从0算....class Solution {public: int lengthOfLastWord(const char *s) { int len = 0; int state = 0; while(*s){ if(*s != ' ') { if(state == 0) len++; else ... 阅读全文
posted @ 2014-01-03 13:19 1957 阅读(124) 评论(0) 推荐(0) 编辑