Exercises
8.1. Exercises#
Many of these exercises are taken from past exams of ECE 244 Programming Fundamentals courses at University of Toronto. The solutions are provided in the answer boxes.
Headings in this page classify the exercises into different categories: [Easy], [Intermediate], and [Challenging]. I suggest you start by easy exercises and work your way up to the challenging ones.
Question 6 in Fall 2021 Final Exam [Intermediate]
The following is the definition of the class ListNode
which represents a node in a linked list. All the members are public for simplicity. The head node of the linked list is pointed to by head
.
class ListNode {
public:
int key;
ListNode* next;
};
ListNode* head;
The following is a non-member function to traverse the linked list. However, some content from the function is removed, as shown by the comments. What are the removed lines?
// Non-member function invoked as traverse(head)
void traverse(ListNode* h) {
if (h == nullptr)
return;
ListNode** ptr = &(h->next);
// Line 1 removed
while (<condition removed>) {
// Line 2 removed
// Line 3 removed
}
}
What should
Line 1 removed
be replaced with? Choose one answer.Nothing
cout << h->key << endl;
cout << ptr->key << endl;
cout << (*h)->key << endl;
cout << (*ptr)->key;
Answer
cout << h->key << endl;
What should the
<condition removed>
be? Choose one answer.true
ptr != nullptr
*ptr == nullptr
*ptr != h
ptr != *h
Answer
All are incorrect. The correct answer is
*ptr != nullptr
What should
Line 2 removed
be replaced with? Choose one answer.Nothing
cout << ptr->key << endl;
cout << (*ptr).key << endl;
cout << &(*ptr)->key << endl;
cout << (*ptr)->key << endl;
Answer
cout << (*ptr)->key << endl;
What should
Line 3 removed
be replaced with? Choose one answer.Nothing
ptr = &((*ptr)->next);
ptr = (*ptr)->next;
ptr = ptr->next;
ptr = (*ptr).next;
Answer
ptr = &((*ptr)->next);
Question 7 in Fall 2021 Final Exam [Intermediate]
It is desired to implement an efficient deletion function in a linked list. You are given a linked list pointed to by head
and a pointer ptr
to a node in a linked list, which is guaranteed not to be the last node on the list (i.e., not the tail node ). Write a function removeNode
that removes this node from the list. You should not iterate the nodes in the list.
You may assume the following is the definition of the class, ListNode
. The head node of the linked list is pointed to by head
.
class ListNode {
public:
int key;
ListNode* next;
};
ListNode* head;
Write your answer below. You are not allowed to change the function’s argument or return type.
void removeNode(ListNode* node){
// write your code here!
}
Answer
void removeNode(ListNode* node) {
ListNode* next = node->next;
node->key = next->key;
node->next = next->next;
delete next;
}
Question 8 in Fall 2021 Final Exam [Intermediate]
You are provided with an implementation of a linkedList
class as well as a listNode
class. The linkedList
class is shown below, you may assum every function is correctly implemented.
class linkedList {
private:
listNode* head;
public:
linkedList();
linkedList(const linkedList& other);
~linkedList();
linkedList& operator=(const linkedList& rhs);
/*creates a new head with key k and updates the linked list accordingly*/
void insertKeyatHead(int k);
/*creates a new node at tail with value k*/
void insertKeyatTail(int k);
// if the list is empty the following functions
// return false and do nothing, otherwise they perform the
// mentioned tasks, update their arguments with the key
// of deleted node, and return true
bool deleteTail(int& k); // deletes the node at tail
bool deleteHead(int& k); // deletes the node at head
};
We wish to implement a myQueue
class that represents a queue. A queue is a data structure in which all insertions are done on one end, called the back and all deletions are done on another end called the front. The myQueue
class looks has the following definition:
class myQueue {
private:
linkedList data; /* lined list */
public:
myQueue(); /* create an empty queue */
void push_back(int k); /* insert node with key k at back */
int pop_front(); /* remove node at front, return its key */
int front(); /* return key of node at front */
bool isempty(); /* return true if queue is empty */
};
You are required to implement the following functions of the queue class to have the mentioned functionality. Note that the only private data member of myQueue
is a linkedList
named data
.
Implement the
void push_back(int k)
function. In this function, a new node with value ofk
is added at the back of the queue.void push_back(int k){ }
Answer
void push_back(int k){ data.insertKeyatTail(k); }
Implement the
int front()
function. In this function, the value of the key of the front node in the queue is returned and no updated happen to the queue. If the queue is empty-1
is returned.int front(){ }
Answer
int front(){ int d; bool isDeleted = data.deleteHead(d); if (isDeleted == false) { return -1; } else { data.insertKeyatHead(d); return d; } }
Implement the
bool isempty()
function which returnstrue
if there are no nodes in the queue andfalse
otherwise.bool isempty(){ }
Answer
bool isempty(){ int d; bool isDeleted = data.deleteHead(d); if (isDeleted == false) { return true; } else { data.insertKeyatHead(d); return false; } }
Implement the
int pop_front()
function. In this function, the value of the key of the front of the queue is returned and the node at front is removed from the queue. If the queue is empty,-1
is returned.int pop_front(){ }
Answer
int pop_front(){ int d; bool isDeleted = data.deleteHead(d); if (isDeleted == false) { return -1; } else { return d; } }
Question 6 in Fall 2019 Final Exam [Intermediate]
Circular linked lists are a variation on linked lists described in class. In a circular linked list, the next field in the last node in the list is not set to NULL (or nullptr). Rather, the field is made to point to the first node in the list, hence the name “circular”. An example of a circular linked list is shown below.
Consider the class ListNode
shown below. It represents a node in a circular linked list. It is similar to the one described in class and that you implemented in the labs, but all members are public for simplicity. The declaration of a head pointer, which points to the head of the list, is also shown.
class ListNode {
public:
int id;
ListNode* next;
};
ListNode* head;
Write a non-member function traverse
ListNode* h
that traverses the linked list. The function is invoked astraverse(head)
to start the traversal at the head of the list. In the traversal, visiting a node is simply printing itsid
field tocout
.void traverse(ListNode* h) {
Answer
void traverse(ListNode* h) { if (h == nullptr) return; ListNode* curr = h; cout << curr->id << " "; curr = curr->next; while (curr != h) { cout << curr->id << " "; curr = curr->next; } }
Write a non-member function
deleteNode(ListNode*& h, ListNode* p)
that deletes the node after the one pointed to by p from the circular list pointed to by h. The function is invoked asdeleteNode(head, ptr)
, whereptr
is guaranteed to point to one of the nodes on the list.void deleteNode(ListNode*& h, ListNode* p) {
Answer
void deleteNode(ListNode*& h, ListNode* p) { if (h == nullptr) return; if (h->next == h) { // one element, guaranteed p == h delete h; h = nullptr; } return; if (p->next == h) { h = h->next; } ListNode* next = p->next; p->next = next->next; delete next; }
It is sometimes not known if the linked list pointed to by
head
is circular or just a regular linked list with the next field in the last node set toNULL
. Write a non-member functionisCircular(ListNode* h)
that returns true if the list is circular and false otherwise. The function is invoked asisCircular(head)
.bool isCircular(ListNode* h) {
Answer
bool isCircular(ListNode* h) { if (h == nullptr) { // is circular and regular at the same time return true; } ListNode* p = h->next; while (p != nullptr && p != h) { p = p->next; } return p == h; }