摘要: #include <iostream>#include <string>#include<algorithm>#define m 10000000using namespace std;int a[50]; int main() { string s1="abcd",s2="abcd";// cou 阅读全文
posted @ 2019-04-02 22:12 小申同学 阅读(555) 评论(1) 推荐(1) 编辑
摘要: 恢复内容开始 递归 递归环境 #include<cstdio>#include<iostream>#include<set>using namespace std;int i=0;int a(int n){ cout<<n<<' '; a(n-1);} int f2(int begin,int en 阅读全文
posted @ 2019-04-02 20:38 小申同学 阅读(102) 评论(0) 推荐(0) 编辑