Hi again and thanks in advance !Any help would be very appreciated cause i'm having a test tomorrow and i need some help!
So i wanna have a class called Bag and a subclass Set.In bag we have 2 constructors,
an insert function , getsize function , getsum (which adds all elements of the bag) , and contains which finds if an element is in the bag or not.
In the subclass is only given that a set cannot have twice the same element
i've made 2 classes but i don't know if they are correct.
And finally i have to overload .If a,b are objects from set then i must have the ability to add
a=b+7;
The theme is i'm having logic error probably cause i'm not getting compile errors but the program once it opens it closes

1.
bag.h

 2.


 3.


 4.


 5.
#ifndef BAG_H

 6.
#define BAG_H

 7.


 8.


 9.
class Bag

 10.
{

 11.
      protected : int size;

 12.
      int pos;

 13.
      int *data;

 14.
        public:

 15.


16.
                Bag();

 17.
                Bag(int k);

 18.
                ~Bag();

 19.
                int insert(int k);

 20.
                int getSize();

 21.
                int getSum();

 22.
                int contains(int k);

 23.


24.
};

 25.


 26.
#endif 

27.


 28.
bag.cpp

 29.


 30.


 31.


 32.
#include "bag.h" 

33.


 34.


 35.
Bag::Bag()

 36.
{

 37.
size=1;

 38.
data=new int;   

39.
}

 40.


 41.
Bag::Bag(int k)

 42.
{

 43.
size=k;

 44.
data=new int[size];     

45.
}

 46.


 47.


 48.
Bag::~Bag()

 49.
{

 50.
        delete [] data;

 51.
}

 52.


53.
int Bag::insert(int k)

 54.
{

 55.
    if(pos==size)

 56.
    return 1;

 57.


58.
    data[pos]=k;

 59.
    pos++;

 60.
    return 0;

 61.
}

 62.


63.
int Bag::getSize()

 64.
{

 65.
    return size;

 66.
}

 67.


68.
int Bag::getSum()

 69.
{

 70.
    int sum=0;

 71.
    for(int i=0;i<pos;i++)

 72.
    sum+=data[i];

 73.
    return sum;

 74.
}

 75.


76.
int Bag::contains(int k)

 77.
{

 78.
    for(int i=0;i<pos;i++)

 79.
    if(data[i]==k)

 80.
    return 1;

 81.


82.
    return 0;

 83.
}

 84.


 85.


 86.


 87.
set.h

 88.


 89.


 90.


 91.
#ifndef SET_H

 92.
#define SET_H

 93.


 94.
#include "bag.h" 

95.


 96.


 97.
class Set : public Bag

 98.
{

 99.
        public:

 100.


101.
                Set();

 102.


103.
                Set(int k);

 104.
                bool push(int k);

 105.
                Set operator+(int k);

 106.
                Set operator+(Set a);

 107.
};

 108.


 109.
#endif 

110.


 111.


 112.


 113.


 114.
#include "set.h" 

115.
#include "bag.h"

 116.


 117.
Set::Set() : Bag()

 118.
{

 119.


120.
}

 121.


 122.


 123.
Set::Set(int k) : Bag(k)

 124.
{

 125.


126.
}

 127.


 128.
bool Set::push(int k)

 129.
{

 130.
     if(contains(k))

 131.
     return false;

 132.


 133.
     else 

134.
     insert(k);

 135.
}

 136.


 137.
Set Set::operator+(int k)

 138.
{

 139.
    Set newset;

 140.


141.
    if(pos==size)

 142.
    return *this;

 143.


144.
    newset=*this;

 145.


146.
    if(contains(k)==false)

 147.
    {

 148.
                          newset.data[pos]=k;

 149.
                          newset.pos++;

 150.
    }

 151.
    return newset;

 152.
}

 153.
Set Set::operator+(Set a)

 154.
{

 155.
    Set newset;

 156.


157.


158.


159.
    for(int i=0;i<a.pos;i++)

 160.
    newset=newset+a.data[i];

 161.


162.
    return newset;

 163.
}

 164.


 165.


 166.
main.cpp

 167.


 168.
#include <cstdlib>

 169.
#include <iostream>

 170.
#include "bag.h"

 171.
#include "set.h"

 172.


 173.
using namespace std;

 174.


 175.
int main(int argc, char *argv[])

 176.
{

 177.
     Set a;

 178.
     Set b(5);

 179.


180.
    a=b+7;

 181.


 182.


183.


184.
    system("PAUSE");

 185.
    return EXIT_SUCCESS;

 186.
}

Recommended Answers

All 2 Replies

2.


 3.
#ifndef BAG_H

 4.
#define BAG_H

 5.


 6.


 7.
class Bag

 8.
{

 9.
      protected : int size;

 10.
      int pos;

 11.
      int *data;

 12.


13.
        public:

 14.


15.
                Bag();

 16.
                Bag(int k);

 17.
                ~Bag();

 18.
                int insert(int element);

 19.
                int getSize();

 20.
                int getSum();

 21.
                int contains(int k);

 22.
};

 23.


 24.
#endif 

25.


 26.


 27.


 28.


 29.


 30.
#include "bag.h" 

31.


 32.


 33.
Bag::Bag()

 34.
{

 35.
size=1;

 36.
pos=0;

 37.
data=new int;

 38.
}

 39.


 40.
Bag::Bag(int k)

 41.
{

 42.
             size=k;

 43.
             data=new int[size];

 44.
             pos=0;

 45.
}

 46.


 47.
Bag::~Bag()

 48.
{

 49.
        delete [] data;

 50.
}

 51.


 52.
int Bag::insert(int element)

 53.
{

 54.
    if(pos==size)

 55.
    return 1;

 56.


57.
    else

 58.


59.
{

 60.
    data[pos]=element;

 61.
    pos++;

 62.
    return 0;

 63.
}

 64.
}

 65.


 66.
int Bag::getSize()

 67.
{

 68.
    return size;

 69.
}

 70.


71.
int Bag::getSum()

 72.
{

 73.
    int sum=0;

 74.
    for(int i=0;i<pos;i++)

 75.
    sum+=data[i];

 76.
    return sum;

 77.
}

 78.


79.
int Bag::contains(int k)

 80.
{

 81.
    for(int i=0;i<pos;i++)

 82.
    if(k==data[i])

 83.
    return 1;

 84.


85.
    return 0;

 86.
}

 87.


 88.


 89.


 90.


 91.
#ifndef SET_H

 92.
#define SET_H

 93.


 94.
#include "bag.h" 

95.


 96.


 97.
class Set : public Bag

 98.
{

 99.
        public:

 100.


101.
                Set();

 102.
                Set(int k);

 103.


104.
                ~Set();

 105.
                int setinsert(int k);

 106.
                Set operator+(int k);

 107.


108.
};

 109.


 110.
#endif 

111.


 112.
#include "set.h" 

113.
#include "bag.h"

 114.


 115.


 116.
Set::Set() : Bag()

 117.
{

 118.


119.
}

 120.


 121.
Set::Set(int k) : Bag(k)

 122.
{

 123.


 124.
}

 125.
Set::~Set()

 126.
{

 127.
           delete [] data;

 128.
}

 129.


 130.
int Set::setinsert(int k)

 131.
{

 132.
    if(contains(k)==1)

 133.
    return -1;

 134.


135.
    else

 136.
    insert(k);

 137.


 138.


 139.
}

 140.


 141.


 142.
#include <cstdlib>

 143.
#include <iostream>

 144.
#include "bag.h"

 145.
#include "set.h"

 146.


 147.


 148.
using namespace std;

 149.


 150.
int main(int argc, char *argv[])

 151.
{

 152.
    Bag a(10);

 153.
    cout<<a.insert(5)<<endl;

 154.
    cout<<a.contains(10)<<endl;

 155.
    Set b(6);

 156.
    b.setinsert(3);

 157.


158.


159.


160.
    Set c(4);

 161.
    c.setinsert(1);

 162.
    c.setinsert(2);

 163.
    c.setinsert(3);

 164.
    c.setinsert(4);

 165.


166.
    b=c+7;

 167.
    cout<<b.getSize();

 168.


169.
    system("PAUSE");

 170.
    return EXIT_SUCCESS;

 171.
}

Your postings are all messed up with the line numbers. Where are you copying and pasting from?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.