题解列表

筛选

后缀表达式的值!?

摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个栈,用于存储操作数 stack<long long> st;……

安之 用STL模拟栈的方法

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ //3 123    321 //3 123 312 ve……

安之 第二小整数 STL解法

摘要:解题思路:用multiset 中对重复元素保留的方法进行编写!使用迭代器输出第二小的元素!注意事项:参考代码:            #include <bits/stdc++.h>using nam……