Preskoči na glavni sadržaj
Prijava
Sign up for FREE
arrow_back
Biblioteka

Linked List Worksheet 3

star
star
star
star
star
Posljednje ažuriranje about 2 years ago
2 questions
1
Pitanje 1
1.

Part 1 : Complete method skipEveryOther().

//method skipEveryOther will remove every other node

public void skipEveryOther(ListNode list)

{

//// Code goes here ////

}

1
Pitanje 2
2.

Part 2 : Complete method doubleUp().

//method doubleUp will double the size of the list by adding in

//new nodes with the same values as the original list nodes

public void doubleUp(ListNode list)

{

////// Code goes here //////

}