上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 73 下一页
摘要: "题目" c++ 阅读全文
posted @ 2019-06-22 10:16 Shendu.CC 阅读(91) 评论(0) 推荐(0) 编辑
摘要: "题目" class Solution { public: int v[7]={1,5,10,50,100,500,1000}; string s[7]={"I","V","X","L","C","D","M"}; string intToRoman(int num) { string ans="" 阅读全文
posted @ 2019-06-22 09:47 Shendu.CC 阅读(143) 评论(0) 推荐(0) 编辑
摘要: "题目" class Solution { public: int s[10005]; int maxArea(vector& height) { int ans=0; int l=0; int r=height.size() 1; while(l 阅读全文
posted @ 2019-06-20 17:21 Shendu.CC 阅读(89) 评论(0) 推荐(0) 编辑
摘要: "题目" 大模拟 c++ class Solution { public: int dp[1005][1005]; bool ans; bool isMatch(string s, string p) { return judge(s,p,0,0); } bool judge(string s,st 阅读全文
posted @ 2019-06-20 15:58 Shendu.CC 阅读(124) 评论(0) 推荐(0) 编辑
摘要: "题目" c++ class Solution { public: int a[100005]; bool isPalindrome(int x) { if(x 阅读全文
posted @ 2019-06-17 08:46 Shendu.CC 阅读(99) 评论(0) 推荐(0) 编辑
摘要: "题目" c++ 多注意注意 class Solution { public: int myAtoi(string str) { int len = str.length(); int tag=0; int tag2=0; char tag3='x'; string num=""; for(int 阅读全文
posted @ 2019-06-15 10:24 Shendu.CC 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 前言 在阅读这篇文章: "Announcing Net Core 3 Preview3" 的时候,我看到了这样一个特性: Docker and cgroup memory Limits We concluded that the primary fix is to set a GC heap max 阅读全文
posted @ 2019-06-14 13:59 Shendu.CC 阅读(1611) 评论(5) 推荐(13) 编辑
摘要: .net core 于 10月17日发布了 ASP.NET Core 2.2.0 preview3,在这个版本中,我看到了一个很让我惊喜的新特性:HTTP Client Performance Improvements ,而且在Linux上性能提升了60% ! 之前就一直苦于 HttpClient 阅读全文
posted @ 2019-06-04 16:21 Shendu.CC 阅读(267) 评论(0) 推荐(1) 编辑
摘要: "题目" c++ class Solution { public: int reverse(int x) { long long int ans=0; int tag=0; while(x) { long long int y =x%10; x/=10; if(y==0&&tag==0) conti 阅读全文
posted @ 2019-06-03 09:03 Shendu.CC 阅读(98) 评论(1) 推荐(0) 编辑
摘要: "题目" 算模拟题吧 class Solution { public: char a[1000][1000]; int tag[1000][1000]; string convert(string s, int numRows) { if(numRows==0||numRows==1) return 阅读全文
posted @ 2019-06-01 11:04 Shendu.CC 阅读(112) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 73 下一页