Search:

Type: Posts; User: vluong

Search: Search took 0.08 seconds.

  1. Replies
    3
    Views
    1,640

    Re: mobile development in java

    Check out Android mobile development! ADT Plugin | Android Developers
  2. Replies
    2
    Views
    1,552

    Re: Height of a node in a binary tree

    Good start, so far!

    What you need:
    - the height of a node

    What you have:
    - passing in the root as parameter

    What you are missing:
    ... because it is a recursive method, in each method...
  3. Replies
    6
    Views
    1,435

    [SOLVED] Re: For Loop - need a hint for what to do next

    The "+" operator is an overloaded operator. This means that you can use it for adding integers an concatenating strings. You cannot use the "-" in the same way to remove characters, unfortunately.
    ...
  4. Replies
    6
    Views
    1,435

    [SOLVED] Re: For Loop - need a hint for what to do next

    Okay, what you have is perfect. Next hint: java substring.
  5. Re: Introduction to programing class. I am stuck on my assignment arrays.

    Hi. I understand you are in an intro class, and while your implementation will work for the purpose of this assignment, have you thought about using a separate class to hold all the information for a...
  6. Replies
    6
    Views
    1,435

    [SOLVED] Re: For Loop - need a hint for what to do next

    Hi.

    You are off to a very good start - let's go with the for-loop. A for-loop consists of three parts: initialization, termination, and incrementation. For example, I choose these three...
  7. Replies
    3
    Views
    1,143

    Re: Printing an array.

    Logan, I have tried running your program in my IDE. Here are some remarks:

    REMARK 1: You need to invoke printArray(array); in main() -- I see that the main() method in the code you posted is...
  8. Replies
    0
    Views
    7,656

    2-3-4 Tree (Btree)

    Hello JPF.

    I am currently trying to implement a 2-3-4 tree for my class. Pseudocodes are provided for the methods that I am to write codes for, but I am still unclear as how to set this up. This...
  9. Replies
    1
    Views
    4,897

    Doubling hashing, infinite loop?

    Hello JPF,

    I am trying to implement a hash table, using the methods of double hashing. It seems that I am running an infinite loop. Any suggestions on how I can fix this? Thanks.


    private int...
  10. Replies
    0
    Views
    5,894

    Creating an Expression Tree

    Hello JPF,

    I have just been introduced to trees, and for my assignment, I have to build an expression tree. I have the algorithm and idea down, but I'm not exactly sure where to start. So I have...
  11. Replies
    2
    Views
    2,348

    Re: Creating new instance

    I'll give that a try!
  12. Replies
    2
    Views
    2,348

    Creating new instance

    Hello JPF. I am currently working on a program that builds an expression tree. I am provided with class BinaryTree and I am having trouble constructing a new node.

    1) This works:...
  13. Replies
    6
    Views
    7,012

    Re: Writing clone() method for LinkedList

    Thanks a bunch, literallyjer! It works now!
  14. Replies
    6
    Views
    7,012

    Re: Writing clone() method for LinkedList

    literallyjer, the "A" are just used for testing and I forgot to change it before posting (it's been changed). I get this error:

    Exception in thread "main" java.lang.ClassCastException:...
  15. Replies
    6
    Views
    7,012

    Writing clone() method for LinkedList

    Hello, JPF. I am trying to implement my own LinkedList and the clone method I have written doesn't seem to work. Can anyone tell me what I did wrong? Thanks!

    Okay, this is what I have in my...
  16. Replies
    5
    Views
    2,561

    Undo Method for Text Editor

    Thanks helloworld922 and Json.

    The reason why I am trying to write an Editor class with ListIterator is because I am trying to implement a text editor program. I have figured it out for the most...
  17. Replies
    5
    Views
    2,561

    Help with ListIterator

    I need to write a method to undo the preceding step. For example: I'll add "Hello" to the LinkedList and then decide to undo it. My idea is to clone the LinkedList and then if the user calls undo,...
  18. Replies
    3
    Views
    2,016

    Re: Implementing LinkedList as a user?

    Thank you, Json!
  19. Replies
    3
    Views
    2,016

    Implementing LinkedList as a user?

    Hello JPF! I have just been introduced to LinkedList and I am working on my first programming assignment, but I am really confused and lost. My professor wants us to implement the program as a user;...
  20. Replies
    4
    Views
    2,302

    Re: Storing an array into an array

    Will try that! I have something very similar set up, but I will make some changes. Thanks.
  21. Replies
    4
    Views
    2,302

    Re: Storing an array into an array

    Thanks for the suggestion. I actually haven't learned hash codes, yet, so I'm still trying to figure this out. I understand that my program won't be very efficient, but right now, I just want to...
  22. Replies
    4
    Views
    2,302

    Storing an array into an array

    I have an array of customers, and I want to keep track of the DVD titles each customer borrowed, so I am guessing that I will create an array for each customer. Can someone help me set it up or...
  23. Replies
    2
    Views
    2,593

    Re: Scanner Class Confusion

    Your area is of type double, but you are multiplying PI and message (which is a String). There are two things you can do:

    1. Change String message into double message, and instead of message =...
  24. Replies
    1
    Views
    3,037

    Reading .txt and storing into an array

    So basically, when my program starts, it loads data into an array. I have figured out how to load customer names and numbers by reading from a .txt file and then storing that information into an...
Results 1 to 24 of 24