Professor Abdul-Quader
Lesson 4
Given a singly LinkedList, suppose you have a reference to the head of the list, but no tail and no size. Implement a method which removes the last element of the list.
Given a singly LinkedList, how might you implement a reverse method? Moreover, how might you do this in-place: that is, without using a secondary list or additional storage?
Given a singly LinkedList, how might you find the middle element in one loop?
The following strings of brackets are perfectly matched:
The following are not:
Devise an algorithm which, given an input \(n\), outputs all numbers from 1 to \(n\) in binary. Example: if \(n = 6\), then we write 1, 10, 11, 100, 101, 110. (The format of the output doesn’t matter, they can all be on separate lines.)
Idea:
Three parts:
Due Sunday, 2/23 at 11:59 PM. (Two-ish weeks)
Given a file with a number b (from 2 - 8) and another number n (written in base 10), output all numbers from 1 to n in base b.
Regular (“infix”) arithmetic expressions require precedence rules and/or brackets to know how to evaluate them: \(3 + 4 * 5 = 23\). Postfix expressions do not require precedence rules. Postfix means the operator goes after the operands:
3 4 5 * +
” in postfix3 4 + 5 *
” in postfix12 7 − 13 4 − 5 * +
”?// assumes "data.txt" is in src folder
InputStream is = MyClass.class.getResourceAsStream("data.txt");
Scanner sc = new Scanner(is);
// for the PostfixCalculator:
while (sc.hasNextLine()) {
String line = sc.nextLine();
Scanner lineScanner = new Scanner(line); // this works!
// now we can read the data from the Scanner the same way we read input
// we can use lineScanner.nextInt(),
// or lineScanner.hasNextInt(), for example
}
For the “General Base counting” exercise, it’s somewhat easier. Just need to read two ints:
For the PostfixCalculator, need to parse several lines:
InputStream is = MyClass.class.getResourceAsStream("postfix_test.txt");
Scanner sc = new Scanner(is);
while (sc.hasNextLine()) {
String line = sc.nextLine();
Scanner lineScanner = new Scanner(line);
while (lineScanner.hasNext()) {
if (lineScanner.hasNextInt()) {
int number = lineScanner.nextInt(); // do something with this number
} else {
String operator = lineScanner.next(); // do something with this operator
}
}
}
5 points:
Suppose we are developing a newsfeed app for devices with very small amounts of memory. The app should store links to major news stories as they come in, subject to the following considerations:
Implementation considerations:
Let’s implement this together.
A tree is a set of nodes with the following relationships:
Idea: if our tree is a balanced, binary search tree, we can hope for \(O(\log n)\) for all operations: insertion, removal, lookups. (Compare to a list structure.)
Idea: a binary search tree has the following property for any node: