Search:

Type: Posts; User: mikbferguson

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    648

    Java Recursion, Need help confused

    I am working on a Red Black tree for a data structures class.

    I have the code:


    void printInorder(Node node) //Input is initially the root node
    {
    if (node == null)
    {
    ...
  2. NullPointerException... Desperately need help

    I am trying to create a Hash table using chaining method.

    I create an array of pointers that are all instantiated with data = 0 and pointer = null.

    I get the error "Exception in thread "main"...
  3. [SOLVED] Need help desperately: "non-static variable this cannot be referenced from a static context"

    SOLVED
Results 1 to 3 of 3