Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Page 2 of 2 FirstFirst 12
Results 26 to 29 of 29

Thread: Is this allowed?

  1. #26
    Banned
    Join Date
    May 2010
    Location
    North Central Illinois
    Posts
    1,631
    My Mood
    Sleepy
    Thanks
    390
    Thanked 112 Times in 110 Posts

    Default Re: Is this allowed?

     
    public abstract class Node 
    {
     
    protected Node  left, right, parent;
    protected Object data;
    protected ArrayList<Object> childrenHolder;
     
    public Node(Object data, Node  parent, Node  left, Node  right)
    {
    data = this.data;
    left = this.left;
    right = this.right;
    parent = this.parent;
    childrenHolder = new ArrayList<Object>();
    }
     
    public Object getData()
    {
    return data;
    }
     
     
    public Node  getParent()
    {
    return parent;
    }
     
    public Node getLeft()
    {
    return left;
    }
     
    public Node  getRight()
    {
    return right;
    }
     
    public abstract float evaluate();
     
    public boolean isLeaf()
    {
    if (this.left == null && this.right == null)
    return true;
    else return false;
     
    }
     
    public int getImmediateChildren(Node aNode)
    {
     
    if (aNode.isLeaf())
    return 0;
     
    else if (((aNode.left == null && aNode.right != null) || (aNode.left != null && aNode.right == null)))
    return 1;
     
    else
    return 2;
     
     
    }
     
    public void setParent(Node aParent)
    {
    this.parent = aParent;
    }
     
    public void setLeft(Node newLeft)
    {
    this.left = newLeft;
    }
     
    public void setRight(Node  newRight)
    {
    this.right = newRight;
    }
    public boolean isRoot()
    {
    if (this.parent == null)
    return true;
    else
    return false;
    }
     
    public Object getRoot(Node  aNode)
    {
     
    while (aNode.isRoot() == false)
    {
    aNode = aNode.getParent();
    }
     
    return (aNode.getData());
     
    }
     
     
    }

     
    public class OperandNode<Float> extends Node
    {
    private Float data;
     
     
    public OperandNode(Float data)
    {
    data = this.data;
     
     
     
    }
     
     
    public Float getData()
    {
    return this.data;
    }
     
    public float evaluate()
    {
     
    return this.getData();
     
    }
     
     
     
    }

     
    public class OpearatorNode<Character> extends Node
    {
     
    private Character data;
    private Node  left, right;
     
    public OpeatorNode(Character data, Node  left, Node right)
    {
    data = this.data;
    left = this.left;
    right = this.right;
    }
     
    public OperatorNode getRight();
    {
    return this.right;
    }
     
    public OperatorNode getLeft()
    {
    return this.left;
    }
     
     
    }

     
    public class Expression_Tree 
    {
    private Node root;
    private MyStack<Node> stackOne;
    private MyStack<OperatorNode> stackTwo;
    private StringBuffer buffer;
    public Expression_Tree(Node root)
    {
    root = this.root;
    stackOne = new MyStack<Node>();
    stackTwo = new MyStack<OperatorNode>();
    }
     
    public Node getRoot()
    {
    return this.root;
    }
     
     
     
    public void buildTree(String expression)
    {
    buffer = new StringBuffer(expression);
     
    // initialize both stacks to be empty
    // perhaps I should call my setEmpty() method
     
    // how will it know if token is operator or operand?
     
    /*
    The algorithm to build an expression tree given an expression uses two stacks, one that holds Node objects, and another that holds operators. The algorithm is as follows:
    1. Initialize both stacks to be empty.
    2. For every “token” from the expression (see below):
    a. If token is operand, create OperandNode with it and push into operand stack.
    b. If token is operator:
    i. If operator stack is empty, push token to operator stack.
    ii. If operator stack is not empty:
    I. If token is ‘)’ do steps III(a-c) below until ‘(‘ is popped from operator stack.
    II. If precedence of token is greater than top of operator stack, push token to operator stack.
    III. If precedence of token is lesser than or equal to top of operator stack:
    a. Pop one operator from operator stack.
    b. Pop two Node objects from operand stack.
    c. Create new Operator node, put popped operator in it and put the popped Node objects as its children.
    d. Push token to operator stack.
    3. If the operator stack is not empty, repeat steps III(a-c) below until the operator stack is empty. If the expression is valid, there will be exactly one node in the operand stack. Pop it, and this is the root of the expression tree.
    You can either use your own Stack class from the previous assignment or use Java’s Stack class.
    Obtaining tokens from a string:
    Since the input expression does not have any spaces your program must break it into a sequence of operators and operands. These are referred to as “tokens”. For example the expression “(1.2+3.25)*2” is broken into the following tokens: “(“, “1.2”, “+”, “3.25”, “)”, “*”, “2”.
    Please start the buildTree method by converting the expression from a String object to a StringBuffer object. This class works the same way as String, except it allows you to change a string. Use the provided method to get the next token sub-string. This method returns the next token and also removes it from the StringBuffer object passed as its parameter. If the resulting StringBuffer object has zero length, it means the expression is over.
    */
     
     
     
    }
     
    }

    import java.util.*;
    import java.io.*;
     
    public class MyStack <T>
    { // beginning of class
     
    private DoublyLinkedList<T> dLL;
     
    public MyStack()
    { // beginning of constructor
    dLL = new DoublyLinkedList<T>();
    } // end of constructor
     
    public void pop
    { // beginning of method
    dLL.remove(0);
     
    } // end of method
     
    public void push(T data)
    { // beginning of method
     
    dLL.addFirst(data);
    } // end of method
     
    public void setEmpty()
    {
    dLL.removeAll();
     
    }
     
     
    public T top()
    { // beginning of method
    return dLL.get(0);
    } // end of method
     
    public int Size()
    { // beginning of method
    return dLL.Size();
    } // end of method
     
    } // end of class

    import javax.swing.Icon;
    import javax.swing.ImageIcon;
    import javax.swing.JOptionPane;
    import java.util.*;
    import java.io.*;
    //Paul Adcock
    // Assignment 4
    // Lasted Worked On: 10/12/2010
     
    // this class is the Doubly Linked list class.  It has a Node that holds a reference to some date of type T and has a reference
    // to the next Node and to the previous Node.  
     
     
    public class DoublyLinkedList<T>
    {
        private class Node<T>
        {
            private T data;
            private Node<T> next;
                   private Node<T> previous;
     
            public Node(T data,Node<T> next, Node<T> previous)
            {
                this.data = data;
                this.next = next;
                           this.previous=previous;
            }
     
            public T getData()
            {
                return data;
            }
     
            public Node<T> getNext()
            {
                return next;
            }
     
    public Node<T> getPrevious()
    {
    return previous;
    }
     
            public void setNext(Node<T> next)
            {
                this.next = next;
            }      
     
    public void setPrevious(Node<T> previous)
    {
    this.previous = previous;
    }
        }
     
        private Node<T> head;//head of the linked list
           private Node<T> tail; // tail of linked list
        private int size;
       private ImageIcon icon;
       private Icon icon2;
        public DoublyLinkedList()
        {
            head = null;
                    tail = null;
            size = 0;
            icon = new ImageIcon("doh3.jpg");
        }
     
     
     
        // returns a String of all the items in the linked list.  
        public String toString()
        {
            String str = "[";
     
            Node<T> curr;
     
            for (curr=head;curr!=null;curr = curr.getNext())
            {
                str = str + curr.getData();
                if (curr.getNext()!=null)
                    str = str + " ";
            }
            str = str + "]";
            return str;
     
     
        }
     
    public void removeRange(int from, int to)
    {
    if (from < 0 || from > = Size() || to < 0 || to >=Size())
    {
    return;
    }
     
    for (int i = from; i <=to; i++)
    {
    remove(i);
    }
    }
     
        // adds the data as the first element.  If the list size is 0, makes first element tail.  If head is not null, it puts the old
        // tail as the second element and the new element as the new head.  
        public void addFirst(T data)
    {  
        /*  Since this is the first Object,  previous should be null
         */
        Node<T> newNode = new Node<T>(data,head,null);
        //We know that if head is null, the list is empty
        if (head==null)
            {
            //If the list is empty,  tail will be newNode
            tail = newNode;
        }
     
        if(head!=null)
            head.setPrevious(newNode);
     
        //We want to set head to be newNode
    // if the list was empty before, both head and tail will be set to newNode;
        head = newNode;
        //Increment Size
        size++;
    }
     
        public void removeFirst()
        {
               if (size == 0)
    {
                   JOptionPane pane = new JOptionPane();
                   pane.setIcon(icon);
    pane.showMessageDialog(null, "Cannot remove from an empty list!", "Invalid removal", JOptionPane.ERROR_MESSAGE);
    pane.setMessageType(JOptionPane.ERROR_MESSAGE);
     
    return;
    }
            Node<T> current = head; // creates a Node called current and sets it to head.
     
            head = head.getNext(); //move head to the next element
     
            current.setNext(null);
    size--;
        }
     
        public void addLast(T data)
        {
            //If there are no elements, use the addFirst method
            if (tail == null)
            {
                addFirst(data);
                return;
            }
            /* Create the new Node from the data. Set next to null
             * because this will be the last element and will not
             * have a next. Set previous to tail because tail has
             * not been changed yet and is currently referencing
             * that element that will be directly before this element
             */
            Node<T> newNode = new Node(data,null,tail);
            /* Since the tail variable still references the element
             * directly before the new element, we can set that node's
             * next to our new element.
             */
            tail.setNext(newNode);
            //Set tail to our new Node
            tail = newNode;
            //Increment size
            size++;
        }
     
        public int Size()
        {
            return(size);
        }
     
        public void add(int index,T data)
        {
            int i;
           if (index == 0)
           {
               addFirst(data);
               return;
     
           }
            if (index>size)
            {
                JOptionPane.showMessageDialog(null, "Cannot add out of bounds!", "Invalid command", JOptionPane.ERROR_MESSAGE);
                return;
            }
     
     
            if (index < 0)
            {
                JOptionPane.showMessageDialog(null, "Cannot add out of bounds!", "Invalid command", JOptionPane.ERROR_MESSAGE);
                return;
            }
     
            if (head==null)
            {
                addFirst(data);
                return;
            }
     
            if (index == size)
            {
                addLast(data);
                return;
            }
     
            //step 1
            Node<T> current;
     
            current = head;
     
            for (i=0;i<index-1;i++)
            {
                current = current.getNext();
            }
     
            //current now refers to object immediately before new node
     
            //step 2
            Node<T> newnode = new Node<T>(data,current.getNext(), current.getPrevious());
     
            //step 3
     
            current.setNext(newnode);
     
     
            size++;
        }  
     
        public void remove(int index)
        {
            if ((index<0) || (index>=size))
    {
    JOptionPane.showMessageDialog(null, "You cannot remove an out-of-bounds value!", "Invalid removal", JOptionPane.ERROR_MESSAGE);
                return;
            }
     
     
     
    Node <T> next2, previous3;
           Node<T> NodeToRemove = head; // sets Node to remove originally to head
     
     
    for (int v = 0; v < index; v++)
    {
    NodeToRemove = NodeToRemove.getNext(); // traverse to Node we want to remove
    }
     
    previous3 = NodeToRemove.getPrevious(); // sets previous3 to value before Node to remove
    next2 = NodeToRemove.getNext(); // sets next2 to value after Node to remove
     
    if (previous3 == null)
    {
    if (next2 == null)
    {
    head = null;
    tail = null;
    }
     
    else
    {
    head = next2;
    }
    }
     
    else
    {
    previous3.setNext(next2);
    }
     
    if (next2 == null)
    {
    if (previous3 == null)
    {
    head = null;
    tail = null;
    }
     
    else
    {
    tail = previous3;
    }
    }
    else
    {
    next2.setPrevious(previous3);
    }
     
     
            size--;
        }
     
        public T get(int i)
        {
            if (i < 0 || i >= size)
                return null;
     
            if (i ==0)
            {
                    Node<T> thisNode = head;
                    return(head.getData());
            }
     
            if (i == size - 1)
            {
                Node<T> thisNode = tail;
                return(tail.getData());
            }
            Node<T> specialNode = head;
            for (int x = 1; x < i + 1; x++)
            {
                specialNode = specialNode.getNext();
            }
            return(specialNode.getData());
     
            // How do I get it to return the data at i?
     
     
        }
     
        // calls get method of first index
        public T front()
        {
            if (head == null)
                return null;
     
            return(get(0));
        }
     
        // calls get Method of last index
        public T back()
        {
            if (tail == null)
                return null;
     
            return(get(size - 1));
        }
     
        public void removeLast()
        {
     
            if (head == null)
            {
                JOptionPane.showMessageDialog(null, "Cannot remove from an empty list!", "Invalid removal", JOptionPane.ERROR_MESSAGE);
                return;
            }
            remove(Size() -1 );
        }
     
        // gets a String for the first bracket.  Then stores each set of first and last, 2nd and 2nd to last, etc, in a String array;
        // it then sets the third string to the concatination of all of the Strings in the array.  It thens puts these together and adds
        // the last set of brackets and returns the final string.  
    public String printAlternate()
    {
    /*
    This method returns a string that has
    the data in the following fashion (assume for this example that the list stores String objects)
    If the list is currently [amit is now here], it will return a string �[amit here is now]�
    If the list is currently [amit is now currently here], it will return a string �[amit here is currently now]�
    */
        String str = "[";
        String [] str2 = new String[size];
    for (int v = 0; v < size; v++)
    {
        str2[v] = this.get(v) + " " + this.get(size - (v+1) );
    }
    String str3 = "";
    for (int x = 0; x < size - 2; x++)
    {
        str3 = str2[x].concat(str2[x+1]);
    }
    String str4 = str + " " + str3 + " " + "]";
    return(str4);
    }
     
    // removes all data 
    public void removeAll()
    {
    int x = 0;
    int y = this.Size() - 1;
     
    removeRange(x,y); 
    }
     
    public DoublyLinkedList<T> getCopy()
    {
    DoublyLinkedList<T> dLL = new DoublyLinkedList<T>();
    T[] array = new T[this.Size()];
     
    for (int x =0; x < this.Size; x++)
    {
    array[x] = this.get(x);
    dLL.add(array[x], x);
     
    }
     
    return dLL;
    }
    }

    public int precedence(char op1, char op2)
    {
    if (op1 == '(' || op1 == ' ) ')
    {
     
    return 1;
    }
     
    else if (op1 == '*')
    {
    if (op2 == '(' || op2 == ')')
    return -1;
    else
    return 1;
     
    }
     
    else if (op1 == '/')
    {
    if (op2 == '(' || op2 == ')')
    return -1;
    else if (op2 == '*')
    return -1;
    else
    return 1;
    }
     
    else if (op1 == '%')
    {
    if (op2 == '(' || op2 == ')')
    return -1;
    else if (op2 == '*')
    return -1;
    else if (op2 == '/')
    return -1;
    else
    return 1;
    }
     
    else if (op1 == '+')
    {
    if (op2 == '(' || op2 == ')')
    return -1;
    else if (op2 == '*')
    return -1;
    else if (op2 == '/')
    return -1;
    else if (op2 == '%')
    return -1;
    else 
    return 1;
    }
     
    else
    {
    if (op2 == '-')
    return 1;
    else
    return -1; 
    }
     
    }


    Have new method to help:

    public static String getNextToken(StringBuffer expr) //get the next token in string expr starting at index start
    	{
    		int i = 0;
    		boolean found;
    		String token="";
     
    		char c = expr.charAt(i);
    		if ((c=='+') || (c=='-') || (c=='*') || (c=='/') || (c=='%') || (c=='(') || (c==')'))
    		{
    			token = ""+c;
    			expr = expr.delete(0,1);
    			return token;
    		}
     
    		found = false;
     
    		while ((i<expr.length()) && (!found))
    		{
    			c = expr.charAt(i);
    			if ((c=='+') || (c=='-') || (c=='*') || (c=='/') || (c=='%') || (c=='(') || (c==')'))
    			{
    				found = true;
    				token = expr.substring(0,i);
    				expr = expr.delete(0,i);
    			}
    			else
    				i++;
     
    		}
    		if (!found)
    		{
    			token = expr.substring(0,i);
    			expr = expr.delete(0,i);	
    		}
    		return token;
    	}

     
    public class Test_Expression
    {
     
    static Scanner console = new Scanner(System.in);
     
    public static void main(String[] args)
    {
     
    // I'd like to have a Node that keeps track of the root, but I can't instantiate a Node as it's abstract and has to be abstract.  
    // Also, I think that I have too much in my Node class.  
     
    Expression_Tree et = new Expression_Tree(root);
     
     
    String expression = "";
    System.out.println("Enter an expression.");
     
    expression = console.nextLine();
     
    et.buildTree(expression);
     
     
     
    System.out.println("(" + expression + ")");
     
    /*
    Main Method:
    The main method of your program should ask the user for an expression from the keyboard. It should then print that expression with parentheses and also print the result of its evaluation.
    */
     
    }
    }
    Last edited by javapenguin; November 13th, 2010 at 03:16 PM. Reason: Updating to show that I'm not lazy.

  2. #27
    Banned
    Join Date
    May 2010
    Location
    North Central Illinois
    Posts
    1,631
    My Mood
    Sleepy
    Thanks
    390
    Thanked 112 Times in 110 Posts

    Angry Re: Is this allowed?

    I'm having a very hard time trying to figure out what he wants me to do with those tokens.

    And how to evaluate the expressions.

    I continue to update and I feel like I'm talking to a brick wall.

  3. #28
    Member DavidFongs's Avatar
    Join Date
    Oct 2010
    Location
    Minneapolis, MN
    Posts
    107
    Thanks
    1
    Thanked 45 Times in 41 Posts

    Default Re: Is this allowed?

    1. You are asking quite a bit for people to read all that code

    2. I helped you earlier and now it appears you ignored all of my advice

  4. The Following User Says Thank You to DavidFongs For This Useful Post:

    javapenguin (November 15th, 2010)

  5. #29
    Banned
    Join Date
    May 2010
    Location
    North Central Illinois
    Posts
    1,631
    My Mood
    Sleepy
    Thanks
    390
    Thanked 112 Times in 110 Posts

    Default Re: Is this allowed?

    Well, I took most of it.

    In fact, I likely took pretty much all of it.

    It's been updated as you can see.

    In the other thread.

Page 2 of 2 FirstFirst 12