2014年3月6日

Remove Duplicates from Sorted List

摘要: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */class Solution {public: ListNode *deleteDuplicates(ListNode *head) { if(head) { ListNode *p,*q; p=head; ... 阅读全文

posted @ 2014-03-06 21:21 crane_practice 阅读(112) 评论(0) 推荐(0) 编辑

Length of Last Word

摘要: 1 class Solution { 2 public: 3 int lengthOfLastWord(const char *s) { 4 int length=0; 5 int i=0; 6 int n=0;//存储遇到空格之前的word的长度 7 if(s!=NULL) 8 { 9 10 while(s[i]!='\0')11 {12 while(s[i]!=' ')13 ... 阅读全文

posted @ 2014-03-06 19:31 crane_practice 阅读(219) 评论(0) 推荐(0) 编辑

导航