华为OD机试-2024年E卷-空栈压数(200分) JAVA

模拟栈:

public class OJTest10 {
    public static void main(String[] args) throws IOException {
        BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
        String[] inputs = bf.readLine().split(" ");
        int[] nums = new int[inputs.length];
        for (int i = 0; i < nums.length; i++) {
            nums[i] = Integer.parseInt(inputs[i]);
        }
        StackArray stack = new StackArray(nums.length);
        List<Integer> list = stackCaculate(stack, nums);
        System.out.println(list);
    }

    private static List<Integer> stackCaculate(StackArray stack, int[] nums) {
        int optionNums = 1;
        int count = nums[0];
        stack.push(nums[0]);
        for (int i = 1; i < nums.length; i++) {
            //入栈前先判断是否和栈顶的数字相同,相同的话,先出栈*2再加入
            if (stack.peek() == nums[i]) {
                stack.pop();
                stack.push(2 * nums[i]);
                count+=nums[i];
                continue;
            } else if (count == nums[i]) { //判断当前栈内的数字和是否和nums[i]相等,相等的话 全部出栈然后nums[i]*2 push进去
                for (int op = 0; op < optionNums; op++) {
                    stack.pop();
                }
                stack.push(2 * nums[i]);
                optionNums = 1;
                count+=nums[i];
                continue;

            }
            count += nums[i];
            stack.push(nums[i]);
            optionNums++;
        }
        List<Integer> list = new ArrayList<>();
        while (!stack.isEmpty()) {
            list.add(stack.pop());
        }
        return list;
    }
}

class StackArray {

    private int[] stack;
    private int top;

    // 构造函数,初始化栈的大小
    public StackArray(int size) {
        stack = new int[size];
        top = -1;
    }

    // 入栈操作
    public void push(int value) {
        if (top < stack.length - 1) {
            top++;
            stack[top] = value;
        } else {
            System.out.println("Stack is full.");
        }
    }

    // 出栈操作
    public int pop() {
        if (top >= 0) {
            int value = stack[top];
            stack[top] = 0;
            top--;
            return value;
        } else {
            System.out.println("Stack is empty.");
            return -1;
        }
    }

    // 获取栈顶元素
    public int peek() {
        if (top >= 0) {
            return stack[top];
        } else {
            System.out.println("Stack is empty.");
            return -1;
        }
    }

    // 判断栈是否为空
    public boolean isEmpty() {
        return top == -1;
    }

    // 判断栈是否已满
    public boolean isFull() {
        return top == stack.length - 1;
    }
}

全部评论
这个解答没有考虑新入栈元素等于栈顶一部分元素之和(而不是栈内所有元素)的情况吧 比如用例:5 10 20 50 70 1,正确输出应该是1 140 10 5,这个代码会给 1, 70, 50, 20, 10, 5
点赞 回复 分享
发布于 10-29 16:18 四川

相关推荐

不愿透露姓名的神秘牛友
昨天 20:21
签耀等华
算法功成师:我咋那么想举办你呢,铁铁
点赞 评论 收藏
分享
CISYA:啊?这么溜的简历会难?
点赞 评论 收藏
分享
09-25 10:34
东北大学 Java
多面手的小八想要自然醒:所以读这么多年到头来成为时代车轮底下的一粒尘
点赞 评论 收藏
分享
3 收藏 评论
分享
牛客网
牛客企业服务