The final exam is cumulative. In addition to the concepts
below, you should know the concepts that were tested on all the
quizzes in the course:
Quiz 1,
Quiz 2,
Quiz 3,
Quiz 4,
Quiz 5,
Quiz 6.
Historically, the final exam includes questions about each of the big
ideas and skills in the course, such as:
- Python expressions and types
- Write a complete program
- Write and test a class
- Trace a program, showing output and the stack diagram
- Recursion and iteration
- Analysis of algorithms
- Searching and sorting
- Linked Lists
Below are some of the new topics covered since the last quiz and
some additional practice problems.
You should be able to define and explain the following terms:
- Object-oriented programming, including
- methods
- an object's instance variables
- the constructor, or __init__ method
- the string, or __str__, method
- access methods, getters, accessors
- update methods, setters, mutators
- Linked lists, including
- the LinkedList class
- the Node class
- the implementation and running time of various LinkedList methods, such as the constructor, insertAtTail, insertAtHead, deleteHead, and index
- how linked lists differ from Python's consecutive-memory Lists
You should understand and be able to use the following Python concepts:
- How to create a Python object, including its constructor, string method, and the instance variables that it uses.
- How to implement a LinkedList in Python
Practice problems:
- Using the LinkedList implementation from class, work through
the code below. You should be able to draw the linked list after every
line of code. Note: some professors use different names for the same methods.
For example, insertAtTail() might be called append(), insertAtHead() might be
prepend(), getData() might be getItem(), and so on...
LL = LinkedList()
LL.insertAtTail(30)
LL.insertAtHead(10)
LL.insertAtHead(100)
LL.insertAtTail(56)
# draw the linked list as it would look here
Assume the LinkedList class has a function
getHeadNode() that returns the head of the linked list.
def getHeadNode():
return self.head
If, after the code above, we assign curr = LL.getHeadNode(),
give the value and type of each expression below:
TYPE VALUE
---- -----
LL
curr
curr.getData()
curr.getNext()
curr.getNext().getData()
- For the code in the previous problem, implement a python program
that creates a similar sequence of elements using a python list
instead of a linked-list. That is, for each line of code, what is the
corresponding expression using python lists?
- Using the LinkedList implementation from class,
write a LinkedList sum method that returns the sum
of the items in the linked list.
- Compare the complexity of python lists and Linked Lists for different
operations. What is the big-O complexity of searching an unsorted list versus linked list? How about if the list/linked list is sorted? What is the big-O
complexity of inserting an item at the beginning of each list representation?
How about at the end of each list? In some cases, python lists and linked lists
may have different complexities for the same problem.
- Using the LinkedList implementation from class,
write a LinkedList deleteTail method that deletes the
tail of a linked list and returns the value of the item that was
stored at the tail. Before attempting this, write pseudo-code for
the deleteTail method; it's harder than
the deleteHead method from class! To delete the tail, you
need to set the new tail to be the Node before the current tail; to do
that, you need to find that Node by traversing through the list.
- In big-O notation, how does the running time of deleteHead depend on the size of the linked list, N?
- In big-O notation, how does the running time of deleteTail depend on the size of the linked list, N?
- Write a complete program that
plays a guessing game with numbers. The goal is for the user to guess
a randomly selected number between 1 and 100 as quickly as
possible. The program will inform the user whether the hidden number
is higher or lower than the current guess. You can assume that the
user will always enter integers, but you must verify that the integers
entered are between 1 and 100. You must break the problem
up into a main program and at least one additional function.
The following is a sample run of the program:
I'm thinking of a number between 1 and 100.
Enter guess: 50
Number is higher than 50
Enter guess: 588
Invalid, try again: 75
Number is lower than 75
Enter guess: 62
Number is lower than 62
Enter guess: 56
You guessed it in 4 tries!
- Write a Student class that stores information for a Swarthmore student.
The class should include the following instance variables:
- id, an integer identifier for the student
- lastName, a string for the student's last name
- credits, an integer representing the number of course-credits
the student has earned
- courseLoad, an integer representing the current number of
credits in progress
Write the following methods for your Student class:
- A constructor that, given an id, and a name, creates a Student
with those values and no course-credits and no course load.
- Accessor (getter) and mutator (setter) methods for each piece of data
encapsulated by the class.
- A registerCurrent method that sets the current course load.
The course load must be positive and no greater than 4 credits, otherwise
no change happens
- A withdraw method, which decreases the course load by one
credit, but never goes below 0.
- A passedCourse method, which removes one course from the
current course load and adds to the students overall course-credits.
- A createEmail method, which returns a string. The string
should be an email address of the student's name combined with their ID and
the post-fix @swarthmore.edu. For example, a student with last
name "Soni", and ID 25 should return "soni25@swarthmore.edu"