我目前创建了一个小程序来了解列表。我允许用户将随机整数添加到列表中。只需使用DList.insert(number, position)
. 第一次迭代一切正常,但是当我允许用户输入更多随机数时,它会删除以前的数字,然后添加更多随机数。
由于我是 C++ 新手(很少用它来编程),我认为我犯了一个非常简单的错误。问题似乎是我只是覆盖列表中的旧值而不是添加新值。
这就是我正在做的,
List testList;
//Ask user for a number of elements to add
int num = get_number();
addRandInts(testList, num);
//I then give the user the option to add more or quit
这是我的addRandInts
:
void addRandInts(List dl, int num)
{
int random_max = 999;
int numIterations = dl.getSize() + num;
if(num > 0) {
cout << "Array Size: " << dl.getSize() << endl;
for(int i = dl.getSize(); i < numIterations; i++) {
dl.insert(rand() % random_max + 1, i);
}
} else {
cout << "You need to enter a positive integer" << endl;
}
dl.display(cout);
}
List.insert(List, pos)
如果需要,我可以提供我的方法。
这是示例输出:
Please enter an integer number for the list: 5
Current Size: 0
42 486 341 527 189
//chance to add more to list
Please enter an integer number for the list: 3
Current Size: 0
740 490 388
所以在第二次运行时,我想我应该有 5 的大小,它应该增加 3。由于我是指针等的新手,我应该将指针传递给列表而不是列表吗?