Skip to main content
Engineering LibreTexts

1.8: Discussion and Exercises

  • Page ID
    8435
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    The List, USet, and SSet interfaces described in Section 1.2 are influenced by the Java Collections Framework [54]. These are essentially simplified versions of the List, Set, Map, SortedSet, and SortedMap interfaces found in the Java Collections Framework. The accompanying source code includes wrapper classes for making USet and SSet implementations into Set, Map, SortedSet, and SortedMap implementations.

    For a superb (and free) treatment of the mathematics discussed in this chapter, including asymptotic notation, logarithms, factorials, Stirling's approximation, basic probability, and lots more, see the textbook by Leyman, Leighton, and Meyer [50]. For a gentle calculus text that includes formal definitions of exponentials and logarithms, see the (freely available) classic text by Thompson [73].

    For more information on basic probability, especially as it relates to computer science, see the textbook by Ross [65]. Another good reference, which covers both asymptotic notation and probability, is the textbook by Graham, Knuth, and Patashnik [37].

    Readers wanting to brush up on their Java programming can find many Java tutorials online [56].

    Exercise \(\PageIndex{1}\)

    This exercise is designed to help familiarize the reader with choosing the right data structure for the right problem. If implemented, the parts of this exercise should be done by making use of an implementation of the relevant interface (Stack, Queue, Deque, USet, or SSet) provided by the Java Collections Framework.

    Solve the following problems by reading a text file one line at a time and performing operations on each line in the appropriate data structure(s). Your implementations should be fast enough that even files containing a million lines can be processed in a few seconds.

    1. Read the input one line at a time and then write the lines out in reverse order, so that the last input line is printed first, then the second last input line, and so on.
    2. Read the first 50 lines of input and then write them out in reverse order. Read the next 50 lines and then write them out in reverse order. Do this until there are no more lines left to read, at which point any remaining lines should be output in reverse order.

      In other words, your output will start with the 50th line, then the 49th, then the 48th, and so on down to the first line. This will be followed by the 100th line, followed by the 99th, and so on down to the 51st line. And so on.

      Your code should never have to store more than 50 lines at any given time.

    3. Read the input one line at a time. At any point after reading the first 42 lines, if some line is blank (i.e., a string of length 0), then output the line that occured 42 lines prior to that one. For example, if Line 242 is blank, then your program should output line 200. This program should be implemented so that it never stores more than 43 lines of the input at any given time.
    4. Read the input one line at a time and write each line to the output if it is not a duplicate of some previous input line. Take special care so that a file with a lot of duplicate lines does not use more memory than what is required for the number of unique lines.
    5. Read the input one line at a time and write each line to the output only if you have already read this line before. (The end result is that you remove the first occurrence of each line.) Take special care so that a file with a lot of duplicate lines does not use more memory than what is required for the number of unique lines.
    6. Read the entire input one line at a time. Then output all lines sorted by length, with the shortest lines first. In the case where two lines have the same length, resolve their order using the usual "sorted order." Duplicate lines should be printed only once.
    7. Do the same as the previous question except that duplicate lines should be printed the same number of times that they appear in the input.
    8. Read the entire input one line at a time and then output the even numbered lines (starting with the first line, line 0) followed by the odd-numbered lines.
    9. Read the entire input one line at a time and randomly permute the lines before outputting them. To be clear: You should not modify the contents of any line. Instead, the same collection of lines should be printed, but in a random order.

    Exercise \(\PageIndex{2}\)

    A Dyck word is a sequence of +1's and -1's with the property that the sum of any prefix of the sequence is never negative. For example, \(+1,-1,+1,-1\) is a Dyck word, but \(+1,-1,-1,+1\) is not a Dyck word since the prefix \(+1-1-1<0\). Describe any relationship between Dyck words and Stack \(\mathtt{push(x)}\) and \(\mathtt{pop()}\) operations.

    Exercise \(\PageIndex{3}\)

    A matched string is a sequence of {, }, (, ), [, and ] characters that are properly matched. For example, "{{()[]}}" is a matched string, but this "{{()]}" is not, since the second { is matched with a ]. Show how to use a stack so that, given a string of length \(\mathtt{n}\), you can determine if it is a matched string in \(O(\mathtt{n})\) time.

    Exercise \(\PageIndex{4}\)

    Suppose you have a Stack, \(\mathtt{s}\), that supports only the \(\mathtt{push(x)}\) and \(\mathtt{pop()}\) operations. Show how, using only a FIFO Queue, \(\mathtt{q}\), you can reverse the order of all elements in \(\mathtt{s}\).

    Exercise \(\PageIndex{5}\)

    Using a USet, implement a Bag. A Bag is like a USet--it supports the \(\mathtt{add(x)}\), \(\mathtt{remove(x)}\) and \(\mathtt{find(x)}\) methods--but it allows duplicate elements to be stored. The \(\mathtt{find(x)}\) operation in a Bag returns some element (if any) that is equal to \(\mathtt{x}\). In addition, a Bag supports the \(\mathtt{findAll(x)}\) operation that returns a list of all elements in the Bag that are equal to \(\mathtt{x}\).

    Exercise \(\PageIndex{6}\)

    From scratch, write and test implementations of the List, USet and SSet interfaces. These do not have to be efficient. They can be used later to test the correctness and performance of more efficient implementations. (The easiest way to do this is to store the elements in an array.)

    Exercise \(\PageIndex{7}\)

    Work to improve the performance of your implementations from the previous question using any tricks you can think of. Experiment and think about how you could improve the performance of \(\mathtt{add(i,x)}\) and \(\mathtt{remove(i)}\) in your List implementation. Think about how you could improve the performance of the \(\mathtt{find(x)}\) operation in your USet and SSet implementations. This exercise is designed to give you a feel for how difficult it can be to obtain efficient implementations of these interfaces.


    This page titled 1.8: Discussion and Exercises is shared under a CC BY license and was authored, remixed, and/or curated by Pat Morin (Athabasca University Press) .

    • Was this article helpful?