首页 > 奇安信 4.1 前端笔试
头像
你都不肯叫我一声教父
编辑于 2021-04-16 16:03
+ 关注

奇安信 4.1 前端笔试 投票

第一题AC
import java.util.*;
 
public class Main{
    public static int totalsize = 0;

    public static void main(String[]args){
        Scanner sc = new Scanner(System.in);
        int n  = sc.nextInt();
        sc.nextLine();
        String[] nlist = sc.nextLine().split(" ");
        List<List<String>> res = new ArrayList<List<String>>();
        List<String> siout = new ArrayList<String>();
        for(int i = 0; i< n; i++){
            siout.add(nlist[i]);
        }
        bt(n,res,siout,0);
       System.out.println(totalsize);
    }
    public static void bt(int s,  List<List<String>> res, List<String> siout,int first){
        if(first == s){
            if(siout.indexOf("A")<siout.indexOf("B")){
                totalsize++;
                int l = siout.size();
                int total = 0;
                    for(String le: siout){
                        total++;
                        if(total<l){
                             System.out.print(le);
                             System.out.print("-");
                        }
                        else{
                            System.out.print(le);
                        }
            
                        }
                System.out.print(" ");
            }
          
        }
        for(int i = first; i< s;i++){
            Collections.swap(siout,first,i);
            bt(s,res,siout,first+1);
            Collections.swap(siout,first,i);
        }
    }
}
第二题没时间做了。

全部评论

(5) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐