java - 算法四第82页出现的问题

查看:94
本文介绍了java - 算法四第82页出现的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

import edu.princeton.cs.algs4.*;

public class FixedCapacityStackOfStrings  
{  
    private String[] a; 
    private int N; 
    public FixedCapacityStackOfStrings(int cap)  
    { a = new String[cap]; }  
    public boolean isEmpty() { return N == 0; }  
    public int size() { return N; }  
    public void push(String item)  
    { a[N++] = item; }  
    public String pop()  
    { return a[--N]; }  
 


    public static void main(String[] args)  
    {  
        FixedCapacityStackOfStrings s;  
        s = new FixedCapacityStackOfStrings(100);  
        while (!StdIn.isEmpty())  
        {  
            String item = StdIn.readString();  
            if (!item.equals("-"))  
                s.push(item);  
            else if (!s.isEmpty()) StdOut.print(s.pop() + " ");  
        }  
        StdOut.println("(" + s.size() + " left on stack)");  
    }  
}

代码如上,实现功能就是每次输入-,就从栈中pop元素,但是我每次在eclipse中输入后,显示的都不对,如输入tobe or-,显示的是2个left,else if的内容没有显示,明明就是按书上敲得啊。。。

解决方案

http://algs4.cs.princeton.edu...
我找到了书上说的网站源码的详细地址.
里面的代码好像和你写的差不多

因为我完全不知道StdIn和StdOut是什么东西,哈哈,学艺不精
说真的,我工作两年,好像都没有直接在Java控制台输入/(ㄒoㄒ)/~~

/******************************************************************************
 *  Compilation:  javac FixedCapacityStackOfStrings.java
 *  Execution:    java FixedCapacityStackOfStrings
 *  Dependencies: StdIn.java StdOut.java
 *  
 *  Stack of strings implementation with a fixed-size array.
 *
 *  % more tobe.txt 
 *  to be or not to - be - - that - - - is 
 * 
 *  % java FixedCapacityStackOfStrings 5 < tobe.txt 
 *  to be not that or be
 *
 *  Remark:  bare-bones implementation. Does not do repeated
 *  doubling or null out empty array entries to avoid loitering.
 *
 ******************************************************************************/

import java.util.Iterator;
import java.util.NoSuchElementException;

public class FixedCapacityStackOfStrings implements Iterable<String> {
    private String[] a;  // holds the items
    private int N;       // number of items in stack

    // create an empty stack with given capacity
    public FixedCapacityStackOfStrings(int capacity) {
        a = new String[capacity];
        N = 0;
    }

    public boolean isEmpty()            {  return N == 0;                    }
    public boolean isFull()             {  return N == a.length;             }
    public void push(String item)       {  a[N++] = item;                    }
    public String pop()                 {  return a[--N];                    }
    public String peek()                {  return a[N-1];                    }
    public Iterator<String> iterator()  { return new ReverseArrayIterator(); }


    public class ReverseArrayIterator implements Iterator<String> {
        private int i = N-1;

        public boolean hasNext() {
            return i >= 0;
        }

        public String next() { 
            if (!hasNext()) throw new NoSuchElementException();
            return a[i--];
        }

        public void remove() {
            throw new UnsupportedOperationException();
        }
    }


    public static void main(String[] args) {
        int max = Integer.parseInt(args[0]);
        FixedCapacityStackOfStrings stack = new FixedCapacityStackOfStrings(max);
        while (!StdIn.isEmpty()) {
            String item = StdIn.readString();
            if (!item.equals("-")) stack.push(item); 
            else if (stack.isEmpty())  StdOut.println("BAD INPUT"); 
            else                       StdOut.print(stack.pop() + " ");
        }
        StdOut.println();

        // print what's left on the stack
        StdOut.print("Left on stack: ");
        for (String s : stack) {
            StdOut.print(s + " ");
        }
        StdOut.println();
    } 
} 

这篇关于java - 算法四第82页出现的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆