Three examples of ADTs Answer: Arrays, Array lists, Strings
Nodes consist of two items, what are they? Answer: data, next
In order to delete a node you must have what? Answer: current position and previous position
What is included in a linked list node?
I) a ref...
Three examples of ADTs Answer: Arrays, Array lists, Strings
Nodes consist of two items, what are they? Answer: data, next
In order to delete a node you must have what? Answer: current position and previous position
What is included in a linked list node?
I) a reference to the next node
II) an array reference
III) a data element Answer: I and III
insert the missing code in the following code fragment. The fragment is intended to add a new node to
the head of a linked list:
public class LinkedList
{
....
public void addFirst(Object element)
{
Node newNode = new Node();
newNode.data = element;
,---------
---------
}
....
}
A. first = newNode;
newNode.next = first;
B. newNode.next = first;
first = newNode;
C. first = newNode.next;
newNode.next = first;
D. first = newNode.next;
newNode = first; Answer: B. newNode.next = first;
first = newNode;
Insert the missing code in the following code fragment. This fragment is intended to
remove a node from the head of a linked list:
public class LinkedList
{
...
public Object removeFirst()
, {
if (first == null)
{
throw new
NoSuchElementException();
}
Object element = first.data;
________________
________________
}
...
}
A. first = first.next;
return element;
B. first.next = first;
return element;
C. first = element.next;
return element;
D. first = element.next;
return null; Answer: A. first = first.next;
return element;
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller Schoolflix. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $14.49. You're not tied to anything after your purchase.