我正在尝试将一个 int 插入到类对象中的数组中,但我无法弄清楚我做错了什么。我的代码的当前状态永远不会将 int 插入到数组中。
基本上我想做的是当我调用 insert(int) 时,它会检查数组中是否还有剩余空间,如果有,它将添加它,否则它将重新分配 8 个更多空间大批。
这是一些相关的课程信息
private:
unsigned Cap; // Current capacity of the set
unsigned Num; // Current count of items in the set
int * Pool; // Pointer to array holding the items
public:
// Return information about the set
//
bool is_empty() const { return Num == 0; }
unsigned size() const { return Num; }
unsigned capacity() const { return Cap; }
// Initialize the set to empty
//
Set()
{
Cap = Num = 0;
Pool = NULL;
}
这是我正在处理的代码
bool Set::insert(int X)
{
bool Flag = false;
if (Num == Cap)
{
//reallocate
const unsigned Inc = 8;
int * Temp = new int[Cap+Inc];
for (unsigned J=0;J<Num;J++)
{
Temp[J] = Pool[J];
}
delete [] Pool;
Pool = Temp;
Cap = Cap+Inc;
}
if(Num < Cap)
{
Pool[Num+1] = X;
Flag = true;
}
return Flag;
}