Need help writing C++ programming assignment. Due by 700 am (central time) 8/2/2013

Dspace2
sortedint_supplied_files.cpp

// FILE: SortedInt.cpp // Implementation file for SortedInt // (See SortedInt.h for documentation.) // INVARIANT for SortedInt: // (1) Entries of the SortedInt are stored in a one-dimensional, // compile-time array of integers whose size is MAX_SIZE; // the member variable data references the array. // (2) # of entries the SortedInt currently contains is stored // in the member variable used. // (3) Entries of SortedInt are stored sorted in non-decreasing // order from data[0] through data[used - 1]. // (4) We DON'T care what is stored in any of the array elements // from data[used] and beyond. #include <iostream> #include <cassert> #include "SortedInt.h" using namespace std; bool isEmpty(const SortedInt& s) { cout << "isEmpty is not implemented yet..." << endl; return false; // dummy value returned } int size(const SortedInt& s) { cout << "size is not implemented yet..." << endl; return 0; // dummy value returned } int valAt(const SortedInt& s, int position) { cout << "valAt is not implemented yet..." << endl; return 0; // dummy value returned } int findMin(const SortedInt& s) { cout << "findMin is not implemented yet..." << endl; return 0; // dummy value returned } int findMax(const SortedInt& s) { cout << "findMax is not implemented yet..." << endl; return 0; // dummy value returned } double findAvg(const SortedInt& s) { cout << "findAvg is not implemented yet..." << endl; return 0.0; // dummy value returned } int findFreq(const SortedInt& s, int target) { cout << "findFreq is not implemented yet..." << endl; return 0; // dummy value returned } bool equal(const SortedInt& s1, const SortedInt& s2) { cout << "equal is not implemented yet..." << endl; return false; // dummy value returned } void reset(SortedInt& s) { cout << "reset is not implemented yet..." << endl; } void insert(SortedInt& s, int newInt) { cout << "insert is not implemented yet..." << endl; } bool delOne(SortedInt& s, int target) { cout << "delOne is not implemented yet..." << endl; return false; // dummy value returned } void add(SortedInt& benend, SortedInt addend) { cout << "add is not implemented yet..." << endl; } SortedInt combine(const SortedInt& s1, const SortedInt& s2) { cout << "combine is not implemented yet..." << endl; SortedInt result; return result; // dummy object returned }