Requirements
This project is to be done in groups.
You are allowed to write everything in one file this time, so long it is organized and the file is not too long. If the file gets too long, please split it into multiple .h
and .cpp
files, and have a main.cpp
that #include
s the .h
files, and can be used to call the test functions prototyped in them. I recommend having one pair of .h
and .cpp
files for Parts 13, and another pair for Part 4 (and the challenge, if you choose to take it).
All the files you produce must be able to exist within a single project. You will submit these files via github as normal.
Part 1
- Read about exceptions (either here, or you may find another source).
- Come up with the most interesting (readable) example of using them that you can. This should take an hour or less.
Part 2
- Read about templates (I suggest starting here and reading till you feel like youve read enough).
- Come up with the most interesting (readable) example of using them that you can. This should take an hour or less.
Part 3
- Think about a time when you really wanted a variable length array, or a list that was always sorted, or something similar.
- Read about
vector
s,set
s, and one other STL container that looks interesting to you. This might be a good place to start, but you may also need to google around a bit. - Come up with the most interesting (readable) example of using them that you can. This should take an hour or less.
Part 4
Write definitions for as many of the following functions as you can in roughly 3 hours. Be sure to label the base case and recursive case in each function.
int gcd(int a, int b);
Returns the greatest common divisor of two integers using Euclids algorithm. This function has the following properties:gcd(a,0)
evaluates toabs(a)
gcd(a,b)
is equivalent togcd(b,a)
gcd(a,b)
is equivalent togcd(abs(a),abs(b))
gcd(a,b)
is equivalent togcd(a-b,b)
is equivalent togcd(a,b-a)
Pseudocode for this function might look like the following:
- Normalize
a
andb
by making them positive - If
a
orb
is0
, return the one that is nonzero - If
a > b
returngcd(a-b, b)
- Otherwise return
gcd(a, b-a)
where line (2) is the base case, and lines (3) and (4) are the recursive case.
int fib(int n);
Returns then
th Fibonacci number. Recall that the Fibonacci sequence is defined as follows:fib(1)
evaluates to1
fib(2)
evaluates to1
fib(n)
evaluates tofib(n-1) + fib(n-2)
int pow(int a, int b);
Returnsa
raised to theb
th power (for positiveb
).int tri(int n);
Returns then
th triangular number. Triangular numbers are, informally1 . .3 . . . . .6 . . .
and so on. More formally, the
n
th triangular number, forn > 0
, is the sum of the integers between1
andn
, inclusive.Note that there is a closed form expression for finding then
th triangular number (and a famous story about Gauss coming up with it, as a child); but for this assignment, please find the answer algorithmically :-).
Part 5
Rewrite the functions you wrote in Part 4 as iterative functions (append _iter
to your name for the recursive version of the function).
Challenge
std::string int_to_roman(int n);
A recursive version of theint_to_roman()
function from assignment-01std::string int_to_words(int n);
A recursive function taking in any integer,n
, and returning a string containing the English representation of that number. For example, the following code:should produce the following output:0 == zero1 == one-1 == negative one123 == one hundred twenty three123123 == one hundred twenty three thousand one hundred twenty three123000123 == one hundred twenty three million one hundred twenty three123123000 == one hundred twenty three million one hundred twenty three thousand
While writing this, remember the use of
const
arrays in the in-class solution to assignment-01. A similar technique may save you a lot ofif ... else
statements.Also, if you find it useful, you may modify the function signature slightly.As a general approach to solving this problem, I would recommend starting by writing a function that can correctly handle all the numbers from 1999, then extending it to handle all possible numbers by splitting the original number into groups of 3 digits, recursively passing these smaller groups to itself, and appending the correct suffix (e.g. thousand) to each group.std::string magic_number(int n);
Ponder this:1 is 33 is 55 is 44 is the magic number!7 is 55 is 44 is the magic number!13 is 88 is 55 is 44 is the magic number!
Why is 4 the magic number? Is 4 always the magic number?Once you figure it out, write a recursive function that generates the above example given the following:
Requests
(None)
Assumptions
(None)
Style
- Place your solution in a
solution--YOURNAME
subdirectory (whereYOURNAME
is your GitHub username). - Include your copyright and license information at the top of every file, followed by a brief description of the files contents, e.g.
- Use include guards in all
.h
files. Be sure to give the preprocessor variable a name corresponding to the file name. For example, inpoint.h
: main()
must have its own.cpp
file. I suggest calling itmain.cpp
.- Classes must have both
.h
and.cpp
files, with member functions defined in the.cpp
files unless they are truly trivial. If it makes sense, you may put multiple classes into one pair of.h
and.cpp
files. - Declare member functions and function arguments as
const
when appropriate (in general, whenever possible). - Document and format your code well and consistently. Be sure to clearly document the source of any code, algorithm, information, etc. that you use or reference while completing your work.
- Wrap lines at 79 or 80 columns whenever possible.
- End your file with a blank line.
- Do not use
using namespace std;
. You may get around typingstd::
in front of things or with, e.g.,using std::cout;
.
5/5 – (1 vote)
cout << 0 << " == " << int_to_words(0) << endl; cout << 1 << " == " << int_to_words(1) << endl; cout << -1 << " == " << int_to_words(-1) << endl; cout << 123 << " == " << int_to_words(123) << endl; cout << 123123 << " == " << int_to_words(123123) << endl; cout << 123000123 << " == " << int_to_words(123000123) << endl; cout << 123123000 << " == " << int_to_words(123123000) << endl;
cout << magic_number(1) << endl;cout << magic_number(7) << endl;cout << magic_number(13) << endl;
/* ---------------------------------------------------------------------------- * Copyright © 2016 Ben Blazak <[email protected]> * Released under the [MIT License] (http://opensource.org/licenses/MIT) * ------------------------------------------------------------------------- *//** * A short program to print "Hello World!" to standard output. */
Reviews
There are no reviews yet.