上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 47 下一页
摘要: 1 class Solution 2 { 3 public: 4 bool order(string A) 5 { 6 for(int i = 0; i A[i+1]) 9 { 10 return false; 11 ... 阅读全文
posted @ 2018-11-18 12:48 Asurudo 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution 2 { 3 public: 4 bool validMountainArray(vector& A) 5 { 6 if(A.size()A[maxIndex]) 13 maxIndex = i; 14 } 15 ... 阅读全文
posted @ 2018-11-18 12:47 Asurudo 阅读(213) 评论(0) 推荐(0) 编辑
摘要: string类的compare方法是指从b的下标0处,即一开始,找长度为a.size()的字符串a,如果找到则返回0,否则返回差值。 如字符串a="apple"是字符串b="appleiuf"的前缀,却不是字符串c="kfsapple"的前缀,也不是字符串d="apperwle"的前缀。 小技巧:若 阅读全文
posted @ 2018-11-15 19:20 Asurudo 阅读(1181) 评论(0) 推荐(0) 编辑
摘要: 首先,给大家一些测试数据 2 1 4 G 10 5 R 6 4 3 1 5 H 4 5 G 10 5 C 7 5 4 1 4 H 3 2 G 10 5 R 3 3 R 2 1 4 1 4 G 10 5 C 9 4 C 8 4 C 2 4 4 2 5 H 2 3 R 1 1 G 10 4 H 3 8 阅读全文
posted @ 2018-11-15 10:06 Asurudo 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 1 int Bible[30]; 2 3 bool cmp(char a,char b) 4 { 5 // printf("%d %d\n",a,b); 6 return Bible[a-'a'] >= Bible[b-'a'] ? 0 : 1;//-97 7 } 8 9 class Solution 10 { 11 public: 12 ... 阅读全文
posted @ 2018-11-13 18:47 Asurudo 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution 2 { 3 public: 4 int minMoves2(vector& nums) 5 { 6 sort(nums.begin(),nums.end(),less()); 7 int result = 0; 8 if((nums.s... 阅读全文
posted @ 2018-11-13 18:23 Asurudo 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution 2 { 3 public: 4 int rangeSumBST(TreeNode* root, int L, int R) 5 { 6 int result = 0; 7 if(root->left) 8 result += r... 阅读全文
posted @ 2018-11-13 18:06 Asurudo 阅读(474) 评论(0) 推荐(0) 编辑
摘要: 代码借鉴:https://blog.csdn.net/icefox_zhx/article/details/77254400 阅读全文
posted @ 2018-11-11 12:09 Asurudo 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution 2 { 3 public: 4 int distinctSubseqII(string S) 5 { 6 int n = S.size(); 7 int mod = 1000000007; 8 int h[2002],last[2002... 阅读全文
posted @ 2018-11-11 12:07 Asurudo 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1 class Solution 2 { 3 public: 4 int myBinarySearch(vector arr,int target) 5 { 6 int le = 0; 7 int ri = arr.size()-1; 8 while(le targe... 阅读全文
posted @ 2018-11-06 19:51 Asurudo 阅读(305) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 47 下一页