摘要: "题目" 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 阅读(88) 评论(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 阅读(123) 评论(0) 推荐(0) 编辑