码迷,mamicode.com
首页 > 其他好文 > 详细

【CH1101】火车进站

时间:2019-03-31 14:10:38      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:std   int   names   name   gif   ==   img   one   can   

栈的入门题,主要考察了栈的基本操作,用递归模拟实现即可

技术图片
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <cstdlib>
 6 using namespace std;
 7 const int maxn=30;
 8 int n;
 9 int top=0,sta[maxn];
10 int on=0,out[maxn];
11 int cnt=0;
12 void dfs(int k) {
13     if(on==n) {
14         cnt++;
15         for(int i=1; i<=n; i++) printf("%d",out[i]);
16         printf("\n");
17         if(cnt==20) exit(0);
18         return ;
19     }
20     if(top>0) {
21         int tp=sta[top--];
22         out[++on]=tp;
23         dfs(k);
24         sta[++top]=tp;
25         on--;
26     }
27     if(k<=n) {
28         sta[++top]=k;
29         dfs(k+1);
30         top--;
31     }
32 }
33 int main() {
34     scanf("%d",&n);
35     dfs(1);
36     return 0;
37 }
AC Code

 

【CH1101】火车进站

标签:std   int   names   name   gif   ==   img   one   can   

原文地址:https://www.cnblogs.com/shl-blog/p/10630984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!