Skip to content

Commit 1425095

Browse files
committed
commit
1 parent f0abee8 commit 1425095

File tree

120 files changed

+5434
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+5434
-80
lines changed

.vscode/settings.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@
2828
"type_traits": "cpp",
2929
"utility": "cpp",
3030
"typeinfo": "cpp",
31-
"iostream": "cpp"
31+
"iostream": "cpp",
32+
"algorithm": "cpp",
33+
"xiosbase": "cpp",
34+
"set": "cpp",
35+
"xtree": "cpp",
36+
"stack": "cpp",
37+
"xstring": "cpp",
38+
"string": "cpp",
39+
"map": "cpp",
40+
"queue": "cpp"
3241
}
3342
}

10.正则表达式匹配.cpp

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
/*
2+
* @lc app=leetcode.cn id=10 lang=cpp
3+
*
4+
* [10] 正则表达式匹配
5+
*/
6+
7+
// @lc code=start
8+
#include<iostream>
9+
#include<string>
10+
11+
using namespace std;
12+
13+
class Solution {
14+
public:
15+
bool isMatch(string s, string p) {
16+
// return doMatch(s, p, 0, 0);
17+
memset(memo, 0, sizeof(memo));
18+
return state(s, p, 0, 0);
19+
}
20+
21+
// bool doMatch(string &s, string &p, int s_pos, int p_pos)
22+
// {
23+
// if(p_pos>=p.size())return s_pos>=s.size();
24+
// bool currentMatch = s_pos<s.size() && (s[s_pos]==p[p_pos] || p[p_pos]=='.');
25+
// if(p_pos<p.size()-1 && p[p_pos+1]=='*')
26+
// {
27+
// return doMatch(s,p,s_pos,p_pos+2)||(doMatch(s,p,s_pos+1,p_pos)&&currentMatch);
28+
// }
29+
// else{
30+
// return currentMatch && doMatch(s, p, s_pos+1, p_pos+1);
31+
// }
32+
// }
33+
34+
int memo[1000][1000];
35+
bool state(string &s, string &p, int s_pos, int p_pos)
36+
{
37+
38+
bool ans = false;
39+
if(s_pos==s.size() && p_pos>=p.size()) return true;
40+
41+
if(s_pos!=s.size() && p_pos==p.size())return false;
42+
43+
if(memo[s_pos][p_pos]!=0)return memo[s_pos][p_pos] == 2;
44+
if(p_pos<p.size()-1 && p[p_pos+1] == '*'){
45+
if(s[s_pos] == p[p_pos] || (p[p_pos]=='.' && s_pos!=s.size())){
46+
ans = state(s, p, s_pos+1, p_pos) || state(s, p, s_pos, p_pos+2);
47+
}else
48+
{
49+
ans = state(s, p, s_pos, p_pos+2);
50+
}
51+
}
52+
else if((p[p_pos]=='.' && s_pos<s.size()) || s[s_pos]==p[p_pos])
53+
ans = state(s, p, s_pos+1, p_pos+1);
54+
55+
memo[s_pos][p_pos] = int(ans) + 1;
56+
return ans;
57+
}
58+
59+
};
60+
// @lc code=end
61+

101.对称二叉树.cpp

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
* @lc app=leetcode.cn id=101 lang=cpp
3+
*
4+
* [101] 对称二叉树
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
* Definition for a binary tree node.
10+
*/
11+
12+
#include<iostream>
13+
#include<vector>
14+
15+
using namespace std;
16+
17+
// struct TreeNode {
18+
// int val;
19+
// TreeNode *left;
20+
// TreeNode *right;
21+
// TreeNode(int x) : val(x), left(NULL), right(NULL) {}
22+
// };
23+
24+
class Solution {
25+
public:
26+
bool isSymmetric(TreeNode* root) {
27+
zhong.clear();
28+
inv_zhong.clear();
29+
inorder(root);
30+
inv_inorder(root);
31+
32+
bool flag = true;
33+
for(int i=0;i<zhong.size();i++)
34+
{
35+
if(zhong[i]!=inv_zhong[i]){
36+
flag = false;
37+
break;
38+
}
39+
}
40+
return flag;
41+
}
42+
43+
vector<int> zhong;
44+
vector<int> inv_zhong;
45+
46+
void inorder(TreeNode* root)
47+
{
48+
if(root==NULL){
49+
zhong.push_back(-1);
50+
return;
51+
};
52+
inorder(root->left);
53+
inorder(root->right);
54+
zhong.push_back(root->val);
55+
}
56+
57+
void inv_inorder(TreeNode *root)
58+
{
59+
if(root==NULL){
60+
inv_zhong.push_back(-1);
61+
return;
62+
};
63+
inv_inorder(root->right);
64+
inv_inorder(root->left);
65+
inv_zhong.push_back(root->val);
66+
}
67+
68+
};
69+
// @lc code=end
70+

1014.最佳观光组合.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* @lc app=leetcode.cn id=1014 lang=cpp
3+
*
4+
* [1014] 最佳观光组合
5+
*/
6+
7+
// @lc code=start
8+
#include<vector>
9+
#include<algorithm>
10+
#include<iostream>
11+
#include<climits>
12+
13+
using namespace std;
14+
15+
class Solution {
16+
public:
17+
int maxScoreSightseeingPair(vector<int>& A) {
18+
int ans = 0;
19+
int mx = A[0] + 0;
20+
21+
for(int j=1;j<A.size();++j)
22+
{
23+
ans = max(ans, mx + A[j] - j);
24+
mx = max(mx, A[j]+j);
25+
}
26+
return ans;
27+
}
28+
};
29+
// @lc code=end
30+
+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* @lc app=leetcode.cn id=1028 lang=cpp
3+
*
4+
* [1028] 从先序遍历还原二叉树
5+
*/
6+
7+
// @lc code=start
8+
9+
// Definition for a binary tree node.
10+
11+
#include<iostream>
12+
#include<string>
13+
#include<stack>
14+
15+
using namespace std;
16+
17+
// struct TreeNode{
18+
// int val;
19+
// TreeNode* left;
20+
// TreeNode* right;
21+
// TreeNode(int x) : val(x), left(NULL), right(NULL) {}
22+
// };
23+
24+
class Solution {
25+
public:
26+
TreeNode* recoverFromPreorder(string S) {
27+
if(S.empty())return NULL;
28+
stack<TreeNode*> path;
29+
int pos = 0;
30+
while(pos<S.size()){
31+
int level = 0;
32+
while (S[pos]=='-')
33+
{
34+
++level;
35+
++pos;
36+
}
37+
int value = 0;
38+
while(pos<S.size() && isdigit(S[pos]))
39+
{
40+
value = value * 10 + (S[pos]-'0');
41+
++pos;
42+
}
43+
TreeNode* node = new TreeNode(value);
44+
if(level == path.size())
45+
{
46+
if(!path.empty())
47+
{
48+
path.top()->left = node;
49+
}
50+
}else{
51+
while(level!=path.size())
52+
path.pop();
53+
path.top()->right = node;
54+
}
55+
path.push(node);
56+
}
57+
while(path.size()>1)
58+
path.pop();
59+
return path.top();
60+
}
61+
};
62+
// @lc code=end
63+

104.二叉树的最大深度.cpp

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* @lc app=leetcode.cn id=104 lang=cpp
3+
*
4+
* [104] 二叉树的最大深度
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
* Definition for a binary tree node.
10+
* struct TreeNode {
11+
* int val;
12+
* TreeNode *left;
13+
* TreeNode *right;
14+
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
15+
* };
16+
*/
17+
#include<algorithm>
18+
using namespace std;
19+
class Solution {
20+
public:
21+
int maxDepth(TreeNode* root) {
22+
if(root==NULL)return 0;
23+
int l=0,r=0;
24+
l = maxDepth(root->left);
25+
r = maxDepth(root->right);
26+
return max(l,r)+1;
27+
}
28+
};
29+
// @lc code=end
30+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* @lc app=leetcode.cn id=105 lang=cpp
3+
*
4+
* [105] 从前序与中序遍历序列构造二叉树
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
Definition for a binary tree node.*/
10+
#include<iostream>
11+
#include<algorithm>
12+
#include<vector>
13+
14+
15+
using namespace std;
16+
17+
// struct TreeNode {
18+
// int val;
19+
// TreeNode *left;
20+
// TreeNode *right;
21+
// TreeNode(int x) : val(x), left(NULL), right(NULL) {}
22+
// };
23+
24+
class Solution {
25+
public:
26+
TreeNode* buildTree(vector<int>& preorder, vector<int>& inorder) {
27+
int pos = 0;
28+
return rebuild(preorder, inorder, pos, 0, preorder.size()-1);
29+
}
30+
31+
TreeNode* rebuild(vector<int>& preorder, vector<int>& inorder, int &pl, int il, int ir)
32+
{
33+
if(pl > preorder.size()-1)return NULL;
34+
if(il>ir)return NULL;
35+
int val = preorder[pl++];
36+
TreeNode* root = new TreeNode(val);
37+
38+
int pos = il;
39+
for(int i = il; il<=ir; ++i,++pos)
40+
{
41+
if(inorder[i]==val)
42+
{
43+
break;
44+
}
45+
}
46+
47+
root->left = rebuild(preorder, inorder, pl, il, pos-1);
48+
root->right = rebuild(preorder, inorder, pl, pos + 1, ir);
49+
return root;
50+
}
51+
};
52+
// @lc code=end
53+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* @lc app=leetcode.cn id=106 lang=cpp
3+
*
4+
* [106] 从中序与后序遍历序列构造二叉树
5+
*/
6+
7+
// @lc code=start
8+
/**
9+
Definition for a binary tree node.*/
10+
11+
#include<iostream>
12+
#include<vector>
13+
14+
using namespace std;
15+
16+
// struct TreeNode {
17+
// int val;
18+
// TreeNode *left;
19+
// TreeNode *right;
20+
// TreeNode(int x) : val(x), left(NULL), right(NULL) {}
21+
// };
22+
class Solution {
23+
public:
24+
TreeNode* buildTree(vector<int>& inorder, vector<int>& postorder) {
25+
int pos = postorder.size()-1;
26+
return rebuild(inorder, postorder, pos, 0, inorder.size()-1);
27+
}
28+
29+
TreeNode* rebuild(vector<int>& inorder, vector<int>& postorder, int &pr, int il, int ir)
30+
{
31+
if(pr<0)return NULL;
32+
if(il>ir)return NULL;
33+
int val = postorder[pr--];
34+
TreeNode* root = new TreeNode(val);
35+
36+
int pos = il;
37+
for(;pos<=ir;++pos)
38+
{
39+
if(inorder[pos]==val)break;
40+
}
41+
42+
root->right = rebuild(inorder, postorder, pr, pos + 1, ir);
43+
root->left = rebuild(inorder, postorder, pr, il, pos - 1);
44+
return root;
45+
}
46+
47+
};
48+
// @lc code=end
49+

0 commit comments

Comments
 (0)