Question

In: Computer Science

The goal of this assignment is to implement a set container using linked lists. Use the...

The goal of this assignment is to implement a set container using linked lists. Use the authors bag3.h and bag3.cpp as a basis for implementing your set container using linked lists. The authors bag3.h and bag3.cpp can be found here https://www.cs.colorado.edu/~main/chapter5/

Since you are using the authors bag3.h and bag3.cpp for your Set container implementation, make sure that you change the name of the class and constructors to reflect the set class.

Additionally you will need to implement the follow set operations. Union, intersection, relative complement, insertion (if the element is in the set, then nothing happens), deletion (if the element is not in the set nothing happens), query to check whether an element is in a set, query to find the number of elements in a set, display the set, destructor, copy constructor, overloading assignment operator.

The assignment must follow the author's guidelines of preconditions andpostconditions for the functions. In addition, the efficiency of each function must be stated.

Solutions

Expert Solution

Here is the code for set.h and set.cpp created from the bag.*** files from the above link mention in your question. You will need node1.h and node1.cpp files as well from the link to compile the code. Implemented the functionality for union, intersect, complement, deletion , display . I have created a Test.cpp file with the code shown to test out the implementation of set. Attached is the screen shot of running Test.cpp. Please do rate the answer if you are happy with the program. Thanks.

set.h

=========

// FILE: set.h
// CLASS PROVIDED: set (part of the namespace main_savitch_5)
//
// TYPEDEFS for the set class:
// set::value_type
// is the data type of the items in the set. It may be any
// of the C++ built-in types (int, char, etc.), or a class with a default
// constructor, a copy constructor, an assignment
// operator, and a test for equality (x == y).
//
// set::size_type
// is the data type of any variable that keeps track of how many items are
// in a set
//
// CONSTRUCTOR for the set class:
// set( )
// Postcondition: The set is empty.
//
// MODIFICATION MEMBER FUNCTIONS for the set class:
//   
// bool erase(const value_type& target)
// Postcondition: If target was in the set, then one copy of target has
// been removed from the set; otherwise the set is unchanged. A true
// return value indicates that one copy was removed; false indicates that
// nothing was removed.
//
// bool insert(const value_type& entry)
// Postcondition: The entry is inserted if not already present in the set.
//       A true is return if insertion successful otherwise false.
//
// void operator +=(const set& addend)
// Postcondition: Each item in addend , if not already present has been added to this set.
//
// CONSTANT MEMBER FUNCTIONS for the set class:
// size_type size( ) const
// Postcondition: Return value is the total number of items in the set.
//
// size_type count(const value_type& target) const
// Postcondition: Return value is number of times target is in the set.
//
//
// value_type grab( ) const
// Precondition: size( ) > 0.
// Postcondition: The return value is a randomly selected item from the set.
//
// NONMEMBER FUNCTIONS for the set class:
// set operator +(const set& b1, const set& b2)
// Postcondition: The set returned is the union of b1 and b2.
//
//   set operator -(const set& b1, const set& b2)
// Postcondition: The set returned is the complement i.e. b1- b2 (all elements in b1 that are not in b2)
// VALUE SEMANTICS for the set class:
// Assignments and the copy constructor may be used with set objects.
//
// DYNAMIC MEMORY USAGE by the set:
// If there is insufficient dynamic memory, then the following functions throw
// bad_alloc: The constructors, insert, operator +=, operator +, and the
// assignment operator.

#ifndef MAIN_SAVITCH_set_H
#define MAIN_SAVITCH_set_H
#include <cstdlib> // Provides size_t and NULL
#include "node1.h" // Provides node class
namespace main_savitch_5
{
class set
{
public:
// TYPEDEFS
typedef std::size_t size_type;
typedef node::value_type value_type;
// CONSTRUCTORS and DESTRUCTOR
set( );
set(const set& source);
   ~set( );
// MODIFICATION MEMBER FUNCTIONS
bool erase(const value_type& target);
  
bool insert(const value_type& entry);
set intersect(const set& set2);
void operator +=(const set& addend);
void operator -=(const set& set2);
void operator =(const set& source);
// CONSTANT MEMBER FUNCTIONS
size_type size( ) const { return many_nodes; }
bool isPresent(const value_type& target) const;

value_type grab( ) const;
void display() ;
private:
node *head_ptr; // List head pointer
size_type many_nodes; // Number of nodes on the list
};

// NONMEMBER FUNCTIONS for the set class:
set operator +(const set& b1, const set& b2);
   set operator -(const set& b1, const set& b2);
}
#endif

=============

set.cpp

=======

// FILE: set.cxx
// CLASS implemented: set (see set.h for documentation)
// INVARIANT for the set ADT:
// 1. The items in the set are stored on a linked list;
// 2. The head pointer of the list is stored in the member variable head_ptr;
// 3. The total number of items in the list is stored in the member variable
// many_nodes.
#include <iostream>
#include <cassert> // Provides assert
#include <cstdlib> // Provides NULL, rand, size_t
#include "node1.h" // Provides node and the linked list functions
#include "set.h"

using namespace std;

namespace main_savitch_5
{

set::set( )
// Library facilities used: cstdlib
{
   head_ptr = NULL;
   many_nodes = 0;
}

set::set(const set& source)
// Library facilities used: node1.h
{
node *tail_ptr; // Needed for argument of list_copy

list_copy(source.head_ptr, head_ptr, tail_ptr);
many_nodes = source.many_nodes;
}
  
set::~set( )
// Library facilities used: node1.h
{
list_clear(head_ptr);
many_nodes = 0;
}
     
   bool set::isPresent(const value_type &target) const
   {
      node *cursor = list_search(head_ptr, target);
      return cursor!=NULL;
   }
  


  
bool set::erase(const value_type& target)
// Library facilities used: cstdlib, node1.h
{
   node *target_ptr;
  
   target_ptr = list_search(head_ptr, target);
   if (target_ptr == NULL)
   return false; // target isn't in the set, so no work to do
   target_ptr->set_data( head_ptr->data( ) );
   list_head_remove(head_ptr);
   --many_nodes;
   return true;
}

set::value_type set::grab( ) const
// Library facilities used: cassert, cstdlib, node1.h
{
   size_type i;
   const node *cursor; // Use const node* since we don't change the nodes.

   assert(size( ) > 0);
   i = (rand( ) % size( )) + 1;
   cursor = list_locate(head_ptr, i);
   return cursor->data( );
}

set set::intersect(const set& set2)
// Library facilities used: node1.h
{
   set answer;
   node *cursor=head_ptr;
   while(cursor!=NULL)
   {
       //check if the item from current set is in set2, then put it in answer
       if(set2.isPresent(cursor->data()))
           answer.insert(cursor->data());
       cursor=cursor->link();
      
   }
   return answer;
}
   bool set::insert(const value_type& entry)
// Library facilities used: node1.h
{
  
   node *cursor;
  
   cursor = list_search(head_ptr, entry);
   if (cursor == NULL)// entry isn't in the set, so add to set
   {
       list_head_insert(head_ptr, entry);
       ++many_nodes;
   return true;
   }
   else
       return false;
  
}


void set::operator +=(const set& addend)
// Library facilities used: cstdlib, node1.h
{
       node *cursor=addend.head_ptr;
  
  
       if (addend.many_nodes > 0)
       {
          //iterate over each item in the set and use insert function. So that no duplicates are in the set
       while(cursor!=NULL)
       {
          
               insert(cursor->data());
              cursor=cursor->link();
       }
       }
}
void set::operator -=(const set& set2)
// Library facilities used: cstdlib, node1.h
{
       node *cursor=set2.head_ptr;
  
  
       if (set2.many_nodes > 0)
       {
          //iterate over each item in the 2nd set and remove it from current
       while(cursor!=NULL)
       {      
               erase(cursor->data());
              cursor=cursor->link();
       }
       }
}
void set::operator =(const set& source)
// Library facilities used: node1.h
{
   node *tail_ptr; // Needed for argument to list_copy

   if (this == &source)
return;

   list_clear(head_ptr);
   many_nodes = 0;
   list_copy(source.head_ptr, head_ptr, tail_ptr);
   many_nodes = source.many_nodes;
}
  
   void set::display()
   {
       node *p=head_ptr;
       cout<<"\n[";
       while(p!=NULL)
       {
           cout<<p->data()<<",";
           p=p->link();
       }
       cout<<"]";
   }
set operator +(const set& b1, const set& b2)
{
   set answer;

   answer += b1;
   answer += b2;
   return answer;
}
  
   set operator -(const set& b1, const set& b2)
{
       set answer;
       answer+=b1;
       answer-=b2;
      
      
       return answer;
}
}

======

Test.cpp

======

#include "set.h"
#include <iostream>
using namespace std;
int main()
{
   main_savitch_5::set A,B;
   A.insert(1);
   A.insert(2);
   A.insert(3);
   A.insert(4);
  
   cout<<"After inserting 1,2,3,4 Set A has :";
   A.display();
  
   B.insert(1);
   B.insert(2);
   B.insert(5);
   B.insert(6);
  
   cout<<"\nAfter inserting 1,2,5,6 Set B has :";
   B.display();
  
   main_savitch_5::set U=A+B,I=A.intersect(B),C=A-B,D=B-A;
   cout<<"\nUnion : Set A + Set B :";
   U.display();
  
   cout<<"\nIntersection of Set A and Set B :";
   I.display();
  
   cout<<"\nSet A - Set B :";
   C.display();
  
   cout<<"\nSet B - Set A :";
   D.display();
  
   //try inserting a duplicate , should not insert
   return 0;
}


Related Solutions

In this assignment, you will implement a Polynomial linked list, the coefficients and exponents of the...
In this assignment, you will implement a Polynomial linked list, the coefficients and exponents of the polynomial are defined as a node. The following 2 classes should be defined.
In order to practice on Linked Lists, you will implement one from scratch which will allow...
In order to practice on Linked Lists, you will implement one from scratch which will allow you to examine how they work and explore their capabilities and limitations. You will build a doubly-circular linked list. In doubly linked lists, each node in the list has a pointer to the next node and the previous node. In circular linked lists, the tail node’s next pointer refers to the head and the head node’s previous pointer refers to the tail rather than...
Write a code to implement a python queue class using a linked list. use these operations...
Write a code to implement a python queue class using a linked list. use these operations isEmpty • enqueue. • dequeue    • size Time and compare the performances of the operations ( this is optional but I would appreciate it)
In C++ Use vectors instead of linked lists Create a Hash table program using H(key) =...
In C++ Use vectors instead of linked lists Create a Hash table program using H(key) = key%tablesize with Chaining and Linear probing for a text file that has a list of 50 numbers Ask the user to enter the file name, what the table size is, and which of the two options they want to use between chaining and linear probing
Write a code to implement a python stack class using linked list. use these operations isEmpty...
Write a code to implement a python stack class using linked list. use these operations isEmpty   • push. • pop.   • peek. • size Time and compare the performances ( this is optional but I would appreciate it)
Skills needed to complete this assignment: linked lists, stacks. Postfix notation, is a mathematical notation in...
Skills needed to complete this assignment: linked lists, stacks. Postfix notation, is a mathematical notation in which operators follow their operands; for instance, to add 3 and 4, one would write 3 4 + rather than 3 + 4 (infix notation). If there are multiple operations, operators are given immediately after their second operands; so, the expression written 3 − 4 + 5 in conventional notation would be written 3 4 − 5 + in postfix notation: 4 is first...
C++ Linked Lists Practice your understanding of linked lists in C++ by creating a list of...
C++ Linked Lists Practice your understanding of linked lists in C++ by creating a list of songs/artist pairs. Allow your user to add song / artist pairs to the list, remove songs (and associated artist) from the list and be sure to also write a function to print the list! Have fun! Make sure you show your implementation of the use of vectors in this lab (You can use them too ) You MUST modularize your code ( meaning, there...
Double Linked Lists: Implement the PutItem and DeleteItem function // ItemType.h #ifndef ITEMTYPE_H #define ITEMTYPE_H enum...
Double Linked Lists: Implement the PutItem and DeleteItem function // ItemType.h #ifndef ITEMTYPE_H #define ITEMTYPE_H enum RelationType { LESS, GREATER, EQUAL}; class ItemType { public:     ItemType();     void Initialize(int number);     int getValue() const;     RelationType ComparedTo(ItemType); private:     int value; }; #endif // ITEMTYPE_H // ItemType.cpp #include "ItemType.h" ItemType::ItemType() {     value = 0; } void ItemType::Initialize(int number) {     value = number; } RelationType ItemType::ComparedTo(ItemType otherItem) {         if(value < otherItem.value)             return LESS;         else if...
Topic: Students will be able to create skills in the use of linked lists, the stack,...
Topic: Students will be able to create skills in the use of linked lists, the stack, and the queue abstract data types, by implementing solutions to fundamental data structures and associated problems. Add the code for the methods where it says to implement. The main class is already done. There is a sample of the output. 1. A double-ended queue, or deque, is a data structure consisting of a list of items on which the following operations are defined: addToBack(x):...
Description( IN C++)!! The purpose of this challenge is to implement a stack using a Linked...
Description( IN C++)!! The purpose of this challenge is to implement a stack using a Linked List as a backing data structure Requirements Write the following structs struct Location { string name; string address; }; struct VisitNode { Location loc; VisitNode * next; }; Create a class called Stack. In this class, create a private variable VisitNode * head. This will keep track of the location of the head node. Add the following private function. This function will be used...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT