Search:

Type: Posts; User: Rain_Maker

Search: Search took 0.06 seconds.

  1. Re: I need help with LinkList: Removing and adding

    Well,

    I know you need to insert an object into the node lets say Node1. Node1 will have my data and a reference point which will point to null. Sense there is only node in the list. When I create...
  2. Re: I need help with LinkList: Removing and adding

    One of the main reason I'm having trouble understanding about this LinkList concept is iteration through the LinkList. It just a little hard for me to grasp. I know each node has reference to the...
  3. Re: I need help with LinkList: Removing and adding

    Hey I'm back. I made some progress. I know you told me not to use any type of counter but I'm just really stuck on the whole linklist concepts. I guess I'm thinking about arrays and array lists to...
  4. Re: I need help with LinkList: Removing and adding

    So what your saying is if I create null1 assigned to null and then create null2 and assign it to null. I can then use the "next" method to reference to my new null1 value to null2 value. Which will...
  5. Re: I need help with LinkList: Removing and adding

    Well if I do that will it be possible to iterator through my null list? I want to eventually add a remove method and some other methods. I just want to make sure I'm able to access the content of the...
  6. Re: I need help with LinkList: Removing and adding

    Hello Everyone,

    Thanks for the quick reply. KevinWorkman...I been drawing pictures and diagrams. I know what my end result is but I just don't know what to write in code correctly.

    int I =...
  7. I need help with LinkList: Removing and adding

    public class LinkList
    {

    public class Node
    {

    public Node next;
    public Object data;
Results 1 to 7 of 7