Skip to content

Commit 58fac0e

Browse files
committed
leetcode : 657,682
1 parent 728515b commit 58fac0e

File tree

3 files changed

+109
-1
lines changed

3 files changed

+109
-1
lines changed

leetcode/.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
"files.associations": {
6060
"*.embeddedhtml": "html",
6161
"vector": "cpp",
62-
"*.tcc": "cpp"
62+
"*.tcc": "cpp",
63+
"stack": "cpp"
6364
}
6465
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
// @before-stub-for-debug-begin
2+
#include <vector>
3+
#include <string>
4+
#include "commoncppproblem657.h"
5+
6+
using namespace std;
7+
// @before-stub-for-debug-end
8+
9+
/*
10+
* @lc app=leetcode.cn id=657 lang=cpp
11+
*
12+
* [657] 机器人能否返回原点
13+
*/
14+
15+
// @lc code=start
16+
class Solution {
17+
public:
18+
bool judgeCircle(string moves) {
19+
int x = 0;
20+
int y = 0;
21+
22+
23+
for(auto ch:moves){
24+
switch (ch)
25+
{
26+
case 'U':
27+
y++;
28+
break;
29+
case 'D':
30+
y--;
31+
break;
32+
case 'L':
33+
x--;
34+
break;
35+
case 'R':
36+
x++;
37+
break;
38+
default:
39+
break;
40+
}
41+
}
42+
43+
return x==0 && y==0;
44+
}
45+
};
46+
// @lc code=end
47+

leetcode/682.棒球比赛.cpp

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
// @before-stub-for-debug-begin
2+
#include <vector>
3+
#include <string>
4+
#include <stack>
5+
#include "commoncppproblem682.h"
6+
7+
using namespace std;
8+
// @before-stub-for-debug-end
9+
10+
/*
11+
* @lc app=leetcode.cn id=682 lang=cpp
12+
*
13+
* [682] 棒球比赛
14+
*/
15+
16+
// @lc code=start
17+
18+
19+
20+
21+
class Solution {
22+
public:
23+
int calPoints(vector<string>& operations) {
24+
stack<string> stk;
25+
string left = "";
26+
string right = "";
27+
28+
for(auto op: operations){
29+
switch (op[0])
30+
{
31+
case 'C':
32+
stk.pop();
33+
break;
34+
case 'D':
35+
left = stk.top();
36+
stk.push(to_string(stoi(left) * stoi(left)));
37+
break;
38+
case '+':
39+
40+
stk.pop();
41+
right = stk.pop();
42+
stk.push(to_string(stoi(left) + stoi(right)));
43+
break;
44+
default:
45+
stk.push(op);
46+
break;
47+
}
48+
}
49+
50+
int res = 0
51+
{
52+
res+=stoi(stk.top());
53+
stk.pop();
54+
}
55+
56+
return res;
57+
}
58+
};
59+
// @lc code=end
60+

0 commit comments

Comments
 (0)