2016年3月29日

Range Sum Query - Mutable

摘要: 用到线段树,不懂,先标记着吧! [LeetCode]Range Sum Query - Mutable - 最美的时光 - 博客频道 - CSDN.NEThttp://blog.csdn.net/xyt8023y/article/details/49946789 x&(-x) Lowbit(x) - 阅读全文

posted @ 2016-03-29 17:35 RenewDo 阅读(169) 评论(0) 推荐(0) 编辑

Submission Details

摘要: class Solution { public: void deal(int i,int j,vector>&board,int h,int w) { typedef pair point; queueq; q.push(point(i,j)); board[i][j]='1'; while(... 阅读全文

posted @ 2016-03-29 16:33 RenewDo 阅读(181) 评论(0) 推荐(0) 编辑

Reverse Words in a String

摘要: class Solution { public: void reverseWords(string &s) { if(s.size()==0) return ; int i=0,j=s.size()-1; vector res; while((i::iterator it=++res.begin();it!=res.en... 阅读全文

posted @ 2016-03-29 15:30 RenewDo 阅读(120) 评论(0) 推荐(0) 编辑

Counting Bits

摘要: vector countBits(int num) { vector res; res.push_back(0); if(num==0)return res; res.push_back(1); for(int i=2;i<=num;i++) { int a=res[i... 阅读全文

posted @ 2016-03-29 14:50 RenewDo 阅读(105) 评论(0) 推荐(0) 编辑

Fraction to Recurring Decimal

摘要: 思路:1、对分子为0的可以提前返回 2、结果为正负的判断 3、数组越界(最小负数除以-1) 4、对于遇到小数的开始要加上“.”,有小数后可以扩大被除数,对于是否有重复的地方要判断其被除数是否重复了!!! 对于abs()函数切记,先把数转换为长整型,然后再用abs(),否则最小负数是转换不了正数的!! 阅读全文

posted @ 2016-03-29 12:04 RenewDo 阅读(155) 评论(0) 推荐(0) 编辑

字符串库函数总结

摘要: 1、strcat 2、strcmp 3、strcpy 4、strstr 阅读全文

posted @ 2016-03-29 10:00 RenewDo 阅读(180) 评论(0) 推荐(0) 编辑

导航