Search:

Type: Posts; User: vk999

Search: Search took 0.10 seconds.

  1. Replies
    0
    Views
    2,279

    Duplicating Elements through Recursion

    /**
    * A list implemented using a singly-linked list and using recursive methods
    * @author Edo Biagioni
    * @lecture ICS 211 Jan 27 (or later)
    * @date January 26,...
  2. Replies
    1
    Views
    1,228

    PLEASE HELP ME!!!

    I am having trouble with this code.


    public E remove(int index){
    checkInvariants();
    if ((index < 0) || index >= size) {
    String warning = "The index has to be between 0 and...
  3. Replies
    5
    Views
    1,922

    Re: Help: OrderedLinkedList

    I'm not very good at putting algorithm to code. Could anyone show an example of how the methods should look like, or closely resemble them?
  4. Replies
    5
    Views
    1,922

    Re: Help: OrderedLinkedList

    Would you mind showing me an example in code?
  5. Replies
    5
    Views
    1,922

    Re: Help: OrderedLinkedList

    It's supposed to add name and phone number from another class. yes, it compiles, but only registers the head and the tail. what is in the middle becomes null for some reason. according to an expert,...
  6. Replies
    5
    Views
    1,922

    Help: OrderedLinkedList

    Here is my class program. It is an ordered linked list and I am having trouble with 1) the add and 2) find methods, as well as 3) how to use the String.compareToIgnoreCase method to put the nodes in...
Results 1 to 6 of 6