public static void main(String[] args) {     Scanner in = new Scanner(System.in);     String str = in.nextLine();     str = ","+ str;     String [] arr = str.split(",");     List<Integer> res = new ArrayList<>();     myfunc(arr,res,1);     for(int i=1;i<res.size(); i++)         if(res.get(i) < res.get(i-1)) {             System.out.println("False");             return;         }     System.out.println("True"); } public static void myfunc(String [] arr,List<Integer> res,int i){     if(i >= arr.length) return;          if(!arr[i].equals("None")){         myfunc(arr,res,2*i);         res.add(Integer.valueOf(arr[i]));         myfunc(arr,res,2*i+1);     } }
点赞 5

相关推荐

shtdbb_:还不错,没有让你做了笔试再挂你
点赞 评论 收藏
分享
牛客网
牛客企业服务