题目描述 当且仅当每个相邻位数上的数字 x 和 y 满足 x < y 时,我们称这个整数是单调递增的。
给定一个整数 n ,返回 小于或等于 n 的最大数字,且数字呈 单调递增 。
332 代码
class Solution {
public:int monotoneIncreasingDigits(…
跟MT3033新的表达式类似,只多了一个括号合法性的判断
#include <bits/stdc.h>
using namespace std;
const int N 40;
bool tag[N];
bool is_op(char c)
{return c || c - || c * || c / || c ^;
}
int priority(char op)
{ // 优先级排序if (op ||…