Search:

Type: Posts; User: blaster

Search: Search took 0.09 seconds.

  1. Replies
    9
    Views
    2,245

    Re: where to put the nodes into the array?

    yeap, there is too much question than suggestion. luck of academic literature
  2. Replies
    9
    Views
    2,245

    Re: where to put the nodes into the array?

    why u just go somewhere and have fun?!
  3. Replies
    9
    Views
    2,245

    Re: where to put the nodes into the array?

    is it adding an array list?
  4. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    sorry Norm, that is exactly how on paper
  5. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    given two DNA strands(thread)
    the nucleotides (element) from the position i+1 of the second strand(thread)
  6. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    i know what does jargon means i asked which words unclear
  7. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    what u mean jargon
  8. Replies
    9
    Views
    2,245

    where to put the nodes into the array?

    hi guys
    im implementing a basic singly linked list structure (Java class) it should allow the addition and deletion of a single (element in the linked list) at a specified position i. we can assume...
  9. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    thats my full question, is that make sense :confused:
  10. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    I need to implement, crossover phenomenon. given 2 dan strands and an index i, d strands should cross-over so that d 1st i nucleotides of the 1st strand r unchanged, but d remainder is replaced with...
  11. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    no, that is a string,
  12. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    no thats fine, just didn't wanted to make a mess ))

    public void insert(int x){

    if(start==null){
    start=new Node(x,start);
    }
    if(start!=null){
    ...
  13. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    is that ok if PM you my code?
  14. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    Sorry to be a pain,
    yeap, extract nodes from a linked list and store them in an array
  15. Replies
    24
    Views
    3,376

    Re: Singly-Linked list structure

    How can I get a link list to print out in an array? Any ideas?
  16. Replies
    24
    Views
    3,376

    Singly-Linked list structure

    Hi All
    I am beginner in Java and this is my first post.
    Please could you help me with this .
    I need to implement a basic singly-linked list structure as a class. also it should allow
    addition...
Results 1 to 16 of 17