猿辅导22号笔试第一题

有没有大佬帮忙看下代码哪里有问题,一直是0%。

// 第一题
public class YuanFuDao {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int  n = sc.nextInt();
        int[] tree = new int[n];
        for (int i = 0; i<n; i++){
            tree[i] = sc.nextInt();
        }
        List<Integer> list  = new ArrayList<>();
        list.add(tree[0]);
        // 左边界
        int index = 0;
        while (2 * index + 1 < n) {
            list.add(tree[2 * index + 1]);
            index = 2 * index + 1;
        }
        // 下层边界
        int left = index;
        index += 1;
        for (; index < n; index ++){
            list.add(tree[index]);
        }
        // 次下层边界
        index = (index-2)/2 + 1;
        while (index < left){
            list.add(tree[index]);
            index++;
        }
        // 右边界
        index = 0;
        while (2 * index + 2 < n) {
            list.add(tree[2 * index + 2]);
            index = 2 * index + 2;
        }

        StringBuilder sb = new StringBuilder();
        int i = 0;
        for (; i<list.size()-2; i++){
            sb.append(list.get(i));
            sb.append(' ');
        }
        sb.append(list.get(i));
        System.out.println(sb.toString());
    }
}


#猿辅导##笔试题目#
全部评论
我知道了,右边界没有倒序😭
点赞 回复 分享
发布于 2020-08-22 20:55

相关推荐

暴走萝莉莉:这是社招场吧,作为HR说个实话:这个维护关系的意思是要有政府资源,在曾经的工作中通过人脉资源拿下过大订单的意思。这个有相关管理经验,意思也是真的要有同岗位经验。应酬什么的对于业务成交来说就算不乐意也是常态,就是要求说话好听情商高,酒量好。
点赞 评论 收藏
分享
一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务