我有一個模板類,它使用數組和當前大小存儲對象的集合。我想出了插入和刪除。我在isEmpty
函數中遇到困難。它返回false
(好像它不是空的),即使當我加入說3和5,然後刪除3和5時。它應該然後說true
。如何插入數組? C++
#include <cstdio>
#include <iostream>
#include <cstdlib>
/************************************************************/
// Local includes
/************************************************************/
// Using declarations
using namespace std;
/************************************************************/
template <class T>
class Collection
{
public:
Collection (int mArraySize)
{
m_size = mArraySize;
array = new T[mArraySize];
reset();
}
/************************************************************/
int
size()
{
return nextEmpty;
}
/************************************************************/
void
reset()
{
nextEmpty = 0;
nextToRead = 0;
}
/************************************************************/
void
insert(const T& a)
{
if (nextEmpty < m_size)
{
array[nextEmpty++] = a;
}
}
/************************************************************/
bool
isEmpty()
{
if(m_size == 0)
{
return true;
}
else
{
return false;
}
}
/************************************************************/
void
makeEmpty()
{
m_size = 0;
array = NULL;
}
/************************************************************/
void
remove(const T& r)
{
int i = 0;
for (i = 0; i < m_size; i++)
{
if (array[i] == r)
{
break;
}
}
while (i++ < m_size)
{
array[i - 1] = array[i];
}
m_size--;
}
/************************************************************/
void
contains(T array, T target)
{
for(int i = 0; i < m_size; i++)
{
}
}
/************************************************************/
T&
get()
{
return array[nextToRead++];
}
/************************************************************/
private:
T* array;
int nextEmpty;
int nextToRead;
int m_size;
};
/************************************************************/
#include <iostream>
#include <iterator>
/****************************************************************************/
// Local includes
#include "header.h"
/****************************************************************************/
// Using declarations
using namespace std;
/****************************************************************************/
// Prototypes, typedefs, etc.
bool
isEmpty();
void
makeEmpty();
void
insert();
void
remove();
void
contains();
void
testerFcn();
/****************************************************************************/
int main(int argc, char* pArgs[])
{
testerFcn();
return EXIT_SUCCESS;
}
/************************************************************/
void
testerFcn()
{
Collection <int> testArray(15);
// insert test
cout << "Enter numbers to add to array (enter negative number to finish): " << endl;
for(;;)
{
int n;
cin >> n;
if (n < 0) {
break;
}
testArray.insert(n);
}
// remove test
cout << "Enter value to remove, (enter negative number to finish): " << endl;
for(;;)
{
int n;
cin >> n;
if (n < 0) {
break;
}
testArray.remove(n);
}
cout << "Is the array empty: 0 = false, 1 = true ==> " << testArray.isEmpty() << endl;
// print what we have
cout << "New Array: " << endl;
for (int i = 0; i < testArray.size(); i++)
{
cout << i << ":" << testArray.get() << endl;
}
}
這功課嗎?任何不使用矢量的理由? – Bart 2012-02-10 21:45:18
這是你的真實碼嗎?它充斥着編譯錯誤。你有沒有試過編譯它並運行它來測試?我假設這是家庭作業,所以我現在暫緩回答。如果這是作業,我可以給你的最重要的建議是學會使用調試器,儘早編譯並開始編譯,並開始爲你的功能編寫單元測試。 – Chad 2012-02-10 21:48:07
是的。我們可以和其他人一起工作。是的,對於這門課程,我們剛開始使用C++,所以我們還沒有學習矢量。我知道他們是什麼,但考慮到我們還沒有從技術上了解他們,我不應該使用他們。 – user1202950 2012-02-10 21:49:29