Search:

Type: Posts; User: mmooo

Search: Search took 0.26 seconds.

  1. Replies
    6
    Views
    820

    Re: how i can do that??

    still i cant do it
  2. Replies
    6
    Views
    820

    Re: how i can do that??

    i tried this

    public static list ( list L1 , list L2 ){
    list L = new list ();
    listNode temp1=L1.first;
    listNode temp2 = L2.first ;
    listNode temp3 = L.first ;
    while ( temp1 !=null){
    temp3=...
  3. Replies
    6
    Views
    820

    how i can do that??

    Write a Java function Sum2List that takes two lists L1 and L2 of the same size and returns list L that contains the sum of data inside the corresponding nodes of lists L1 and L2.
Results 1 to 3 of 3