solution.md 7.4 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 基本计算器 II
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
<p>给你一个字符串表达式 <code>s</code> ,请你实现一个基本计算器来计算并返回它的值。</p>

<p>整数除法仅保留整数部分。</p>

<div class="original__bRMd">
<div>
<p> </p>

<p><strong>示例 1:</strong></p>

<pre>
<strong>输入:</strong>s = "3+2*2"
<strong>输出:</strong>7
</pre>

<p><strong>示例 2:</strong></p>

<pre>
<strong>输入:</strong>s = " 3/2 "
<strong>输出:</strong>1
</pre>

<p><strong>示例 3:</strong></p>

<pre>
<strong>输入:</strong>s = " 3+5 / 2 "
<strong>输出:</strong>5
</pre>

<p> </p>

<p><strong>提示:</strong></p>

<ul>
	<li><code>1 <= s.length <= 3 * 10<sup>5</sup></code></li>
	<li><code>s</code> 由整数和算符 <code>('+', '-', '*', '/')</code> 组成,中间由一些空格隔开</li>
	<li><code>s</code> 表示一个 <strong>有效表达式</strong></li>
	<li>表达式中的所有整数都是非负整数,且在范围 <code>[0, 2<sup>31</sup> - 1]</code></li>
	<li>题目数据保证答案是一个 <strong>32-bit 整数</strong></li>
</ul>
</div>
</div>

每日一练社区's avatar
每日一练社区 已提交
46
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
47

每日一练社区's avatar
每日一练社区 已提交
48
## aop
F
fix bug  
feilong 已提交
49

每日一练社区's avatar
每日一练社区 已提交
50
### before
F
fix bug  
feilong 已提交
51

每日一练社区's avatar
每日一练社区 已提交
52 53 54 55 56
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
F
fix bug  
feilong 已提交
57

每日一练社区's avatar
每日一练社区 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70
```cpp
int main()
{
    Solution sol;
    int res;
    string s1 = "3+2*2";
    res = sol.calculate(s1);
    cout << res;
    return 0;
}
```

## 答案
F
fix bug  
feilong 已提交
71

每日一练社区's avatar
每日一练社区 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
```cpp
class Solution
{
public:
    int calculate(string s)
    {
        int res = 0;
        stack<int> my_stack{};
        vector<char> my_vec{};
        for (auto x : s)
        {
            if (x != ' ')
                my_vec.push_back(x);
        }
        int start = 0;
        int end = 0;
        int tmp = 0;
        while (start != my_vec.size())
        {
            tmp = 0;
            for (int i = start; i < my_vec.size(); i++)
            {
                if (my_vec[i] >= '0')
                {
                    if (i == 0)
                    {
                        tmp = my_vec[i] - '0';
                    }
                    else if (my_vec[i - 1] == '+' || my_vec[i - 1] == '*' || my_vec[i - 1] == '/')
                        tmp = my_vec[i] - '0';
                    else if (my_vec[i - 1] == '-')
                        tmp = -1 * (my_vec[i] - '0');
                    else if (my_vec[i - 1] >= '0')
                    {
                        if (tmp >= 0)
                            tmp = tmp * 10 + (my_vec[i] - '0');
                        else
                            tmp = tmp * 10 - (my_vec[i] - '0');
                    }
                    if (i == my_vec.size() - 1)
                        end = i;
                }
                else
                {
                    end = i;
                    break;
                }
            }
            if (start == 0)
                my_stack.push(tmp);
            else
            {
                if (my_vec[start - 1] == '+' || my_vec[start - 1] == '-')
                    my_stack.push(tmp);
                else if (my_vec[start - 1] == '*')
                    my_stack.top() = my_stack.top() * tmp;
                else if (my_vec[start - 1] == '/')
                    my_stack.top() = my_stack.top() / tmp;
            }
            start = end + 1;
        }
        while (!my_stack.empty())
        {
            res = my_stack.top();
            my_stack.pop();
        }
        return res;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
144

每日一练社区's avatar
每日一练社区 已提交
145
### A
F
fix bug  
feilong 已提交
146

每日一练社区's avatar
每日一练社区 已提交
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
```cpp
class Solution
{
public:
    int calculate(string s)
    {
        int ans = 0;
        int n = s.size();
        char ope = '+';
        stack<int> temp;
        int d = 0;
        int A;
        for (int i = 0; i < n; i++)
        {
            if (s[i] - '0' >= 0 && s[i] - '0' <= 9)
            {
                d = d * 10 + (s[i] - '0');
            }
            if ((s[i] < '0' && s[i] != ' ') || i == n - 1)
            {
                if (ope == '+')
                {
                    temp.push(d);
                }
                if (ope == '-')
                {
                    temp.push(-d);
                }
                if (ope == '*')
                {
                    A = temp.top() * d;
                    temp.pop();
                    temp.push(A);
                }
                if (ope == '/')
                {
                    A = temp.top() / d;
                    temp.pop();
                    temp.push(A);
                }
                ope = s[i];
                d = 0;
            }
        }
        while (!temp.empty())
        {
            ans += temp.top();
            temp.pop();
        }
        return ans;
    }
};
```

### B
F
fix bug  
feilong 已提交
202

每日一练社区's avatar
每日一练社区 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
```cpp
class Solution
{
public:
    int calculate(string s)
    {
        stack<char> fuhao;
        stack<long> conclude;
        int i = 0, len = s.length();
        while (i < len)
        {
            if (s[i] == ' ')
                i++;
            else if (s[i] >= '0' && s[i] <= '9')
            {
                long x = s[i] - '0';
                i++;
                while (i < len && s[i] >= '0' && s[i] <= '9')
                {
                    x = x * 10 + s[i] - '0';
                    i++;
                }
                conclude.push(x);
            }
            else
            {
                while (!fuhao.empty() && (fuhao.top() == '*' || fuhao.top() == '/' || s[i] == '+' || s[i] == '-'))
                {
                    long x = conclude.top();
                    conclude.pop();
                    long y = conclude.top();
                    conclude.pop();
                    if (fuhao.top() == '+')
                        conclude.push(y + x);
                    else if (fuhao.top() == '-')
                        conclude.push(y - x);
                    else if (fuhao.top() == '*')
                        conclude.push(y * x);
                    else
                        conclude.push(y / x);
                    fuhao.pop();
                }
                fuhao.push(s[i]);
                i++;
            }
        }
        while (!fuhao.empty())
        {
            long x = conclude.top();
            conclude.pop();
            long y = conclude.top();
            conclude.pop();
            if (fuhao.top() == '+')
                conclude.push(y + x);
            else if (fuhao.top() == '-')
                conclude.push(y - x);
            else if (fuhao.top() == '*')
                conclude.push(y * x);
            else
                conclude.push(y / x);
            fuhao.pop();
        }
        return conclude.top();
    }
};
```

### C
F
fix bug  
feilong 已提交
271

每日一练社区's avatar
每日一练社区 已提交
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
```cpp
class Solution
{
public:
    int calculate(string s)
    {
        vector<int> stk;
        char preSign = '+';
        int num = 0;
        int n = s.length();
        for (int i = 0; i < n; ++i)
        {
            if (isdigit(s[i]))
            {
                num = num * 10 + int(s[i] - '0');
            }
            if (!isdigit(s[i]) && s[i] != ' ' || i == n - 1)
            {
                switch (preSign)
                {
                case '+':
                    stk.push_back(num);
                    break;
                case '-':
                    stk.push_back(-num);
                    break;
                case '*':
                    stk.back() *= num;
                    break;
                default:
                    stk.back() /= num;
                }
                preSign = s[i];
                num = 0;
            }
        }
        return accumulate(stk.begin(), stk.end(), 0);
    }
};
```