1. Homepage
  2. Exam
  3. [2022] COMP6771 Advanced C++ Programming Final Exam - Question 2 Smart List

[2022] COMP6771 Advanced C++ Programming Final Exam - Question 2 Smart List

This question has been solved
Engage in a Conversation

Question 2

1. Background

Normal lists in C++ are either C-style arrays or standard-library containers (e.g. std::vector, std::array, std::list). We want to create a more powerful list structure in C++. We want to create one that can exhibit more interesting behaviours. For example: CourseNana.COM

auto l1 = smart_list<double>{1,2,3};
auto l2 = smart_list<double>{4,5,6};
auto l3 = l1 + l2;
REQUIRE(l3 == smart_list<double>{1,2,3,4,5,6})

In rare cases we want a list that is very smart and can do everything a normal smart_list can do, but can also sometimes make use of particular properties of our types: CourseNana.COM

auto l = very_smart_list<int>{6,9,15};
l /= 3;
REQUIRE(l == very_smart_list<int>{2,3,5});
REQUIRE(l.is_prime());

A smart_list should not be able to do these things: it's not smart enough. CourseNana.COM

Please note that the usage of "list" here is quite high level, and does not specifically refer to a linked list. In most cases "list" in higher level languages just refers to an object similar to std::vector. CourseNana.COM

2. Task

You are to develop a new class template smart_list<T> that behaves similar to a std::vector<T> except that it has a handful of modified funtionality and additional functionality. You are also to develop a new class very_smart_list<T> which can do everything a smart_list<T> can do, with more. CourseNana.COM

The interface of these classes are described below. Where functions are provided for both smart_list and very_smart_list, the use of "smart_list" should be replaced by "very_smart_list" when appropriate except when otherwise mentioned. CourseNana.COM

There are no constraints regarding internal representation or implement. As long as the interface functions as described that is all that matters. You are allowed to have more functions on the public interface than we have described (if this helps you solve the question). CourseNana.COM

Constructors

Both smart_list and very_smart_list: CourseNana.COM

  • explicit smart_list(std::size_t count) / explicit very_smart_list(std::size_t count)
    • A constructor that generates exactly count default-constructed elements into the list.
    • Example: auto x = smart_list<int>(5);
    • Exceptions: None.
  • smart_list(T const& one, T const& two, std::size_t count) / very_smart_list(T const& one, T const& two, std::size_t count)
    • A constructor that generates count repetitions of appending both one and two to the list.
    • Example: auto x = smart_list<std::string>("hello", "there", 3) would produce a list containing ["hello", "there", "hello", "there", "hello", "there"].
    • Exceptions: If one == two, throws "Cannot use multi-argument constructor with two identical elements"
  • smart_list(std::initializer_list<T> il) / very_smart_list(std::initializer_list<T> il)
    • A constructor that initializes its contents with the given list.
    • Example: auto l = smart_list<double>{ 1.0, 1.5, 2.0 };
    • Exceptions: None.

For very_smart_list only: CourseNana.COM

  • explicit very_smart_list(smart_list<T> const& other)
    • A constructor that copies all elements from other.
    • Example: auto vsl = very_smart_list<double>(sl);
    • Exceptions: None.
  • explicit very_smart_list(smart_list<T>&& other)
    • A constructor that moves all elements from other.
    • Example: auto vsl = very_smart_list<double>(std::move(sl));
    • Exceptions: None.

Accessors

Both smart_list and very_smart_list: CourseNana.COM

  • std::size_t size()
    • Returns the number of elements in the container.
    • Example: auto x = sl.size();
    • Exceptions: None.

Modifiers

Both smart_list and very_smart_list: CourseNana.COM

  • void push_back(const T& value)
    • Appends the given element to the end of the container.
    • Example: sl.push_back(5);
    • Exceptions: None.
  • void pop_back()
    • Removes the last element in the container.
    • Example: sl.pop_back();
    • Exceptions: If sl.size() == 0, throws "Cannot pop_back an empty list".
  • void emplace_back(Args... args)
    • Appends a new element to the end of the container, constructed in-place using perfect forwarding.
    • Example: auto sl = smart_list<std::pair<int, double>>(); sl.emplace_back(1, 2.0);
    • Exceptions: None.
    • Notes: The provided signature is not totally correct; you must determine the appropriate signature to perfectly forward the list of arguments.

Operator overloads

Both smart_list and very_smart_list: CourseNana.COM

  • operator[](std::size_t index)
    • Get and/or set a value at the given index.
    • Example: auto a = sl[1]; sl[2] = a + 2;
    • Exceptions: None. (You can assume the index is valid.)
  • smart_list operator+(smart_list const& lhs, smart_list const& rhs)
    • Concatenate two smart lists together.
    • Example: auto c = a + b;
    • Exceptions: When lhs.size() == 0 or rhs.size() == 0, throw "Cannot concatenate smart lists where one is empty".
    • Notes: Always returns a smart_list, even when called on very_smart_lists.
  • smart_list operator-(smart_list const& lhs, smart_list const& rhs)
    • Return a copy of lhs, with all elements also present in rhs removed.
    • Example: auto c = a - b;
    • Exceptions: When lhs.size() == 0 or rhs.size() == 0, throw "Cannot subtract smart lists where one is empty".
    • Notes: you can assume you may use operator== to compare elements. Always returns a smart_list, even when called on very_smart_lists.
  • smart_list<smart_list<T>> operator*(smart_list const& lhs, smart_list const& rhs)
    • Multiply two lists together. The output is a 2D smart list with products of all components.
    • Example:
      auto a = smart_list<double>{1,2,3};
      auto b = smart_list<double>{2,3,4};
      auto c = a * b;
      REQUIRE(c == smart_list<smart_list<double>>{{2,3,4},{4,6,8},{6,9,12}});
    • Exceptions: None.
    • Notes: You can assume you may use operator* to multiple elements. Always returns a nested smart_list, even when called on very_smart_lists.
  • std::ostream& operator<<(std::ostream& os, smart_list const& sl)
    • Prints out each element of sl to os with a | on either side of the element. An empty list should print nothing.
    • Example:
      auto sl = smart_list<double>{1,2,3};
      std::cout << sl; // |1|2|3|
    • Exceptions: None.

For very_smart_list only: CourseNana.COM

  • very_smart_list operator*(very_smart_list const& lhs, double scalar)
    • Scalar multiplication, where e.g. [1 2] * 3 = 3 * [1 2] = [3 6]. If T is not an arithmetic type, then this function has no effect and simply returns a copy of the list passed in.
    • Example: auto x = sl * 3.0; auto y = 3.0 * sl;
    • Exceptions: None.
  • very_smart_list operator/(very_smart_list const& lhs, double scalar)
    • Scalar division, where e.g. [3.0 6.0] / 2.0 = [1.5 3.0]. If T is not an arithmetic type, then this function has no effect and simply returns the list passed in.
    • Example: auto x = sl / 3.0;
    • Exceptions: None.

Miscellaneous functions

For very_smart_list only: CourseNana.COM

  • bool is_prime()
    • Returns false if T is not an integer type. Otherwise, returns true iff all of the elements in the container are prime numbers.
    • Example: auto x = vsl.is_prime();
    • Exceptions: None.

Other notes

You are also required to ensure that both classes have the following capabilities: CourseNana.COM

  • It is comparable using operator== and operator!= with the normal meanings (assuming that T is also comparable)
  • Standard default constructor that populates an empty list
  • Standard copy semantics (construction and assignment) that does member-wise copy
  • Standard move semantics (construction and assignment) that does member-wise move
  • Standard destructor that ensures all memory is cleaned up
  • For operators where it makes sense, a compound assignment form should exist as well (e.g. provide operator+= too). It should throw the same exceptions as well.
  • Provides functions begin() and end() that returns a type which models at least std::bidirectional_iterator and act as iterators to your underlying container. You can assume begin() and end() return only const_iterator-like types (no non-const iterators).

You should be able to use a very_smart_list wherever a smart_list is expected. For example: CourseNana.COM

auto sl = smart_list<double>{1,2,3};
auto vsl = very_smart_list<double>(sl);
vsl *= 3.0;
REQUIRE(sl + vsl == smart_list<double>{1,2,3,3,6,9});

However, you should not be able to use a smart_list where a very_smart_list is expected: CourseNana.COM

auto sl = smart_list<double>{1,2,3};
sl *= 3.0; // should be a compiler error

You are required to ensure that relevant operators are marked const where appropriate, or have both a const and non-const version where appropriate. CourseNana.COM

All exceptions thrown are std::runtime_error. The use of "Exceptions: None." just means you do not need to throw any exceptions yourself: you do not need to handle exceptions thrown by operations on the types stored. CourseNana.COM

Please ensure that as a priority you ensure that operator==, push_back, and default construction work. We will rely on these 3 heavily for testing. CourseNana.COM

3. Assumptions & Constraints

  • There are no performance requirements or constraints for this question
  • You can assume that all input is valid unless stated otherwise in the spec

4. Mark Breakdown

For this question, the approximate mark allocations are: CourseNana.COM

  • 60% for correctly implementing smart_list
    • 20% of this will be for constructors
    • 10% of this will be for Accessors
    • 10% of this will be for modifiers
    • 40% of this will be for operator overloads
    • 10% of this will be for miscellaneous functions
    • 10% of this will be other requirements listed in "Other notes"
  • 30% for correctly implementing very_smart_list (everything from smart_list plus additional functions)
    • 20% of this will be for constructors
    • 10% of this will be for Accessors
    • 10% of this will be for modifiers
    • 40% of this will be for operator overloads
    • 10% of this will be for miscellaneous functions
    • 10% of this will be other requirements listed in "Other notes"
  • 10% for allowing very_smart_list to be used everywhere a smart_list might be expected

Get the Solution to This Question

WeChat WeChat
Whatsapp WhatsApp
COMP6771代写,Advanced C++ Programming代写,UNSW代写,C++代写,澳洲代写,考试代写,Exam代写,Smart List代写,smart_list代写,very_smart_list代写,COMP6771代编,Advanced C++ Programming代编,UNSW代编,C++代编,澳洲代编,考试代编,Exam代编,Smart List代编,smart_list代编,very_smart_list代编,COMP6771代考,Advanced C++ Programming代考,UNSW代考,C++代考,澳洲代考,考试代考,Exam代考,Smart List代考,smart_list代考,very_smart_list代考,COMP6771help,Advanced C++ Programminghelp,UNSWhelp,C++help,澳洲help,考试help,Examhelp,Smart Listhelp,smart_listhelp,very_smart_listhelp,COMP6771作业代写,Advanced C++ Programming作业代写,UNSW作业代写,C++作业代写,澳洲作业代写,考试作业代写,Exam作业代写,Smart List作业代写,smart_list作业代写,very_smart_list作业代写,COMP6771编程代写,Advanced C++ Programming编程代写,UNSW编程代写,C++编程代写,澳洲编程代写,考试编程代写,Exam编程代写,Smart List编程代写,smart_list编程代写,very_smart_list编程代写,COMP6771programming help,Advanced C++ Programmingprogramming help,UNSWprogramming help,C++programming help,澳洲programming help,考试programming help,Examprogramming help,Smart Listprogramming help,smart_listprogramming help,very_smart_listprogramming help,COMP6771assignment help,Advanced C++ Programmingassignment help,UNSWassignment help,C++assignment help,澳洲assignment help,考试assignment help,Examassignment help,Smart Listassignment help,smart_listassignment help,very_smart_listassignment help,COMP6771solution,Advanced C++ Programmingsolution,UNSWsolution,C++solution,澳洲solution,考试solution,Examsolution,Smart Listsolution,smart_listsolution,very_smart_listsolution,