CSE111 Assignment 3 Solved

34.99 $

Description

5/5 - (1 vote)

URL: https://www2.ucsc.edu/courses/cse111-wm/:/Assignments/asg3-listmap-templates/
1. Overview
In this assignment, you will implement template code and not use any template classes from the standard library. You will also write your own code to handle files. Refer to the earlier assignment as to how to open and read files.
2. Program specification
The program is specified in the format of a Unix man(1) page.
NAME
keyvalue — manage a list of key and value pairs
SYNOPSIS
keyvalue [-@ flags] [filename…]
DESCRIPTION
Input is read from each file in turn. Before any processing, each input line is echoed to cout, preceded by its filename and line number within the file. The name of cin is printed as a minus sign (-). If any filename is specified as a minus sign, cin is read at that point in processing the files from the command line. If no files are specified on the command line, cin is read.
Each non-comment line causes some action on the part of the program, as described below. Before processing a command, leading and trailing white space is trimmed off of the key and off of the value. White space interior to the key or value is not trimmed. When a key and value pair is printed, the equivalent of the format string used is “%s = %s “. Of course, use <iostream>, not <stdio>. The newline character is removed from any input line before processing. If there is more than one equal sign on the line, the first separates the key from the value, and the rest are part of the value. Input lines are one of the following:
#
Any input line whose first non-whitespace character is a hash (#) is ignored as a comment. This means that no key can begin with a hash. An empty line or a line consisting of nothing but white space is ignored.
key
A line consisting of at least one non-whitespace character and no equal sign causes the key and value pair to be printed. If not found, the message key: key not found
is printed. Note that the characters in italics are not printed exactly. The actual key is printed. This message is printed to cout.
key =
If there is only whitespace after the equal sign, the key and value pair is deleted from the map.
key = value
If the key is found in the map, its value field is replaced by the new value. If not found, the key and value are inserted in increasing lexicographic order, sorted by key. The new key and value pair is printed.
=
All of the key and value pairs in the map are printed in lexicographic order.
= value
All of the key and value pairs with the given value are printed in lexicographic order sorted by key.
OPTIONS
The -@ option is followed by a sequence of flags to enable debugging output, which is written to the standard error. The option flags are only meaningful to the programmer.
OPERANDS
Each operand is the name of a file to be read. If no filenames are specified, cin is read. If filenames are specified, a filename consisting of a single minus sign (-) causes cin to be read in sequence at that position. Any file that can not be accessed causes a message in proper format to be printed to cerr.
EXIT STATUS
0 No errors were found.
1 There were some problems accessing files, and error messages were reported to cerr.
3. Implementation sequence
In this assignment, you will constuct a program from scratch, using some of the code from previous assignments.
(a) Study the behavior of misc/pkeyvalue.perl, whose behavior your program should emulate. The Perl version does not support the debug option of your program.
(b) Copy Makefile from your previous assignment, and edit it so that it will build and submit your new assignment.
(c) Implement your main program whose name is main.cpp, and handle files in the same way as the sample Perl code. Instead of trying to use a map, just print debug statements showing which of the five kinds of statements are recognized, printing out the key and value portion of the statement.
(d) Instead of <pair> from the standard library, you will use xpair.
(e) You will be using a linear linked list to implement your data structure. This isobviously unacceptable in terms of a real data structures problem, since unit operations will run in O(n) time instead of the proper O(log2 n) time for a balanced binary search tree. But iteration over a binary search tree is rather complex and will not contribute to your learning about how to implement templates.
(f) Look at xless.h and misc/testxless.cpp, which show how to create and use an xless object to make comparisons. The listmap class assumes this has already been declared.
(g) The files *.tcc are explicit template instantiations. Templates are type-safe macros and the source is needed at the point where they are compiled.
4. The main function
Replace the code in the main function to do options analysis. Then, for each input line, use regex_search using regular expressions to parse the line into one of the three kinds of lines described above. Use the field captures to extract the key and value fields. See the example matchlines.cpp, which shows how to use regular expressions from the <regex> library.
5. Template class listmap
We now examine the class listmap, which is partially implemented for you. You need not implement functions that are never called.
(a) template <typename key_t, typename mapped_t, class less_t=xless<key_t>> class listmap
defines the template class with three arguments. key_t and mapped_t are the elements to be kept in the list. less_t is the class used to determine the ordering of the list and defaults to xless<key_t>.
(b) using key_type = key_t; using mapped_type = mapped_t; using value_type = xpair<const key_type, mapped_type>;
are some standard names given to usual standard library types. Note that the value type is an xpair, not what is normally thought as the value, which here is called the mapped type.
(c) struct link represents the list itself and is contained in every node. The list is kept as a circular doubly linked list with the list itself being the start and end, as well as the end() result. In a list with n nodes, there are n+ 1 links, each node having a link, and the list itself having a link, but not node values.
(d) struct node is a private node used to hold a value type along with forward and backword links to form a doubly linked list. It inherits from struct link. The private function anchor() downcasts from a link to a node.
(e) listmap(); listmap (const listmap&); listmap& operator= (const listmap&); listmap (listmap&&); listmap& operator= (listmap&&); Ëœlistmap();
The usual six members are overriden and explicitly defined.
(f) iterator insert (const value_type&);
Note that insertion takes a pair as a single argument. If the key is already there, the value is replaced, otherwise there is a new entry inserted into the list. An iterator pointing at the inserted item is returned.
(g) iterator find (const key_type&);
Searches and returns an iterator. If find fails, it returns the end() iterator.
(h) iterator erase (iterator position);
The item pointed at by the argument iterator is deleted from the list. The returned iterator points at the position immediately following that which was erased.
(i) iterator begin(); iterator end();
The usual iterator generators. We don’t bother here with a constant iterator. Since the list is circular, end() is just the list itself.
6. Template class listmap::iterator
Although the iterator is nested inside the list map, it is easier to read when specified separately.
(a) class listmap<key_t,mapped_t,less_t>::iterator specifies precisely which class the iterator belongs to.
(b) friend class listmap<key_t,mapped_t>;
Only a listmap is permitted to construct a valid iterator.
(c) iterator (listmap* map, node* where);
The iterator keeps track of both the node and the list as a whole, so that end() can return an iterator ‘‘off the end’’,
(d) value_type& operator*();
Returns a reference to some value type (key and value pair) in the list. Selections are then by dot (.).
(e) value_type* operator->();
Returns a pointer to some value type, from which fields can be selected with an arrow (->).
(f) iterator& operator++(); //++itor iterator& operator–(); //–itor
Move backwards and forwards along the list. Moving off the end with ++ and moving from an end iterator to the last element does not require special coding, since the list is a circular list. We don’t bothere here with the postfix operators.
(g) void erase();
Removes the key and value pair from the list.
7. Diagram of listmap with data
end begin last anchor node node node node +—-+ +—-+ +—-+ +—-+ +—-+
(last)—>| *-|—>| *-|—>| *-|—>| *-|—>| *-|—>(anchor)
(last)<—|-* |<—|-* |<—|-* |<—|-* |<—|-* |<—(anchor)
+—-+ +—-+ +—-+ +—-+ +—-+
| | | | | | | |
|key | |key | |key | |key |
| | | | | | | |
|mapd| |mapd| |mapd| |mapd|
| | | | | | | |
+—-+ +—-+ +—-+ +—-+
8. What to Submit
Makefile, README, and all necessary C++ header and implementation (*.h, *.tcc, *.cpp) files. If you are using pair programming, also submit PARTNER.

  • asg3-zquzcv.zip