gpt4 book ai didi

c++ - 将数组作为引用传递给不起作用的函数

转载 作者:太空宇宙 更新时间:2023-11-04 12:32:13 25 4
gpt4 key购买 nike

在学校的实验室中,我被要求生成随机数和字符并将其传递到函数模板中,然后在首先显示我的工作为未排序后对它们进行排序。我正在使用 Visual Studio 作为我学校的要求,但我的主要问题是它编译没有错误但是当我运行我的程序时它没有传递我的数组进行排序。我花了很多时间试图理解为什么它不起作用,我们将不胜感激。

    #include <iostream>
#include <cstdlib>
#include <ctime>
#include <algorithm>
using namespace std;

template <typename T>
void arrayIn(T arr[], int size, char word) {

if (word == 'd') {

sort(arr, arr + size, greater<>());
}
else {

sort(arr, arr + size);
}
return;
}

template <typename O>
void arr_out(O arr[], int size) {
int j;

for (j = 0; j < size; j++) {
cout << arr[j] << endl;
return;
}
delete[] arr;
}
int main(void) {
srand(time_t(NULL));
int size,i,j;
char word;
int *arr1;
char *arr2;


cout << "Enter in the size of the array: ";
cin >> size;
cout << "How would you like to sort in ascending or descending order?: ";
cin >> word;
arr1 = new int[size];
arr2 = new char[size];

if (arr1 == 0) {
cout << "memory allocation error";
system("pause");
exit(1);
}
cout << "The first array will sort intagers." << endl;
cout << "not sorted" << endl;
for (i = 0; i < size; i++) {
arr1[i] = rand() % 100 + 1;
cout << arr1[i] << endl;
}

arrayIn(arr1, size, word);
cout << "sorted" << endl;
arr_out(arr1,size);

if (arr2 == 0) {
cout << "memory allocation error";
system("pause`enter code here`");
exit(1);
}

cout << "the secound array will sort characters." << endl;
cout << "not sorted" << endl;

for (j = 0; j < size; j++) {
arr2[j] = rand() % (126 + 1 - 33) + 33;
cout << arr2[j] << endl;
}
arrayIn(arr2, size, word);
cout << "sorted" << endl;
arr_out(arr2, size);

system("pause");

return 0;
}

最佳答案

arr_out 函数中有一个非常简单的错误,它只打印第一个元素。更正如下(去掉我注释掉的行):

template <typename O> 
void arr_out(O arr[], int size) {
int j;

for (j = 0; j < size; j++) {
cout << arr[j] << endl;
// return; // This will return after printing the first element!
}
delete[] arr;
}

关于c++ - 将数组作为引用传递给不起作用的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58211996/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com