题解 | #火车进站#

火车进站

https://www.nowcoder.com/practice/97ba57c35e9f4749826dc3befaeae109

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int n;
int train[10];
int list_n[10];
int list[6000][10];

int stack[10];
int top = -1;

int out = 0;

int indexx = 0;



int kind = 0;
int n;

char result[6000][10];
int cmp(const void* a, const void* b) {
    return strcmp((char*)a, (char*)b);
}

void DFS() {
    if (out == n) {
        for (int i = 0; i < n; i++) {
            list[kind][i] = list_n[i];
        }
        kind++;
        return;
    }
    if (indexx < n) {
        stack[++top] = train[indexx++];
        DFS();
        top--;
        indexx--;
    }

    if (top >= 0) {
        list_n[out++] = stack[top--];
        DFS();
        stack[++top] = list_n[--out];
    }

}
int main() {
    memset(result, 0, sizeof(result));
    while (scanf("%d", &n) != EOF) {
        for (int i = 0; i < n; i++) {
            scanf("%d", &train[i]);
        }
        DFS();


        for (int i = 0; i < kind; i++) {
            for (int j = 0; j < n; j++) {
                result[i][j] = list[i][j] + '0';
                
            }
            
        }

        qsort(result, kind, sizeof(result[0]), cmp);

        for (int i = 0; i < kind; i++) {
            for (int j = 0; j < n; j++) {
                printf("%c ", result[i][j]);
            }
            printf("\n");
        }


    }

    return 0;
}

全部评论

相关推荐

11-03 14:38
重庆大学 Java
AAA求offer教程:我手都抬起来了又揣裤兜了
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
10-12 10:48
已编辑
秋招之苟:邻居家老哥19届双2硕大厂开发offer拿遍了,前几天向他请教秋招,他给我看他当年的简历,0实习实验室项目技术栈跟开发基本不沾边😂,我跟他说这个放在现在中厂简历都过不了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务