3

我是 Java 新手,我有 4 个 int 堆栈需要以特定方式打印出来。我使用的 IDE 是 BlueJ。

我想打印数组看起来像下面

 |110|   |231|   |333|   |444|
 |111|   |232|   |334|   |447|
 |112|   |233|   |335|   |448|
 |113|   |234|   |336|   |449|
 |114|   |235|   |337|   |450|
 |115|   |236|   |338|   |451|

我正在尝试这样做,System.out.println("|"+stack1.pop()+"|")但它会产生一个问题,因为我不确定如何从底部返回顶部。前任。115 --> 回溯到 231。每一列代表一个堆栈。

谢谢!

4

3 回答 3

2

您将无法在控制台中执行此操作:
作为替代方案,您可以打印每个堆栈中的值,然后向下移动,例如:

System.out.println("|"+stack1.pop()+"|\t|"+stack2.pop()+"|\t|"+stack3.pop()+"|\t|"+stack4.pop()+"|" );

按评论编辑 - 您可以使用String.format(...)在此处查看可用的格式选项

于 2013-02-12T03:59:11.667 回答
2

使用String.format()比连接一堆字符串更好

System.out.println(String.format("|%s|\t|%s|\t|%s|\t|%s|",
                            stack1.pop(),stack2.pop(),stack3.pop(),stack4.pop()));

如果要以Stack相反的顺序打印元素,只需reverse先堆栈

于 2013-02-12T04:15:40.283 回答
0

这个怎么样 :

    ArrayList<Stack<Integer>> arrays=new ArrayList<Stack<Integer>>();
    arrays.add(stack1);
    arrays.add(stack2);
    arrays.add(stack3);
    arrays.add(stack4);

//Put some code here to  Determine the stack size, if all are unequal in size   
    int size=stack1.size(); 


    for(int i=0;i<size;i++){
        String value="";
        String temp="";

//4 = 如果您知道堆栈数仅为 4

        for(int j=0;j<4;j++){ 

            //Handle here Empty Stack Exception and print blank
            value="|"+(String)(arrays.get(j)).pop().toString()+"|"+" ";
            temp=temp+value;


        }

        System.out.println(temp);



    }
于 2013-02-12T04:37:33.823 回答