使用动态数组 C++11 的直方图函数
Histogram function using Dynamic arrays C++11
我的程序运行时要求用户输入指定的整数,然后将更多整数存储在动态数组中。输出给出了一个直方图,使用星号来显示每个整数的数量。
我完成了所有任务,只有一项除外。我已经尝试实施交换功能数小时,但无法找到解决问题的方法。
我的问题是我想按从小到大的顺序获取输出。
例如,
Enter number of grades:
5
Enter grades (each on a new line):
20
4
10
10
20
Histogram:
20 **
4 *
10 **
但是,我想要下面的输出
Histogram:
4 *
10 **
20 **
这是我的代码:
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
void hist(int arr[], int n);
void swap(int &a, int &b);
int main(){
int* arr = NULL;
int number;
cout << "Enter number of grades:" << endl;
cin >> number;
cout << "Enter grades (each on a new line):" << endl;
arr = new int[number];
for(int i = 0; i < number; i++){
cin >> arr[i];
}
hist(arr, number);
return 0;
delete [] arr;
}
void hist(int arr[], int n){
cout << "Histogram:" << endl;
for (int i = 0; i < n; i++){
int j;
for (j = 0; j < i; j++)
if(arr[i] == arr[j])
break;
if (i == j){
int xx = count(arr, arr+n, arr[i]);
cout << setw(3) << arr[i] << " ";
for (int j = 0; j < xx; ++j){
cout << "*";
}
cout << endl;
}
}
}
void swap(int &a, int &b){
int temp;
temp = a;
a = b;
b = temp;
}
你想要的是在计算元素之前对向量进行排序。
void hist(int arr[], int n){
sort(arr, arr+n);
...
}
我建议您更改解决方案。如果您使用的是 std::map
,那么您将以预定的方式立即获得问题的解决方案。
另外,你为什么不使用 std::vector
?
我的程序运行时要求用户输入指定的整数,然后将更多整数存储在动态数组中。输出给出了一个直方图,使用星号来显示每个整数的数量。
我完成了所有任务,只有一项除外。我已经尝试实施交换功能数小时,但无法找到解决问题的方法。
我的问题是我想按从小到大的顺序获取输出。 例如,
Enter number of grades:
5
Enter grades (each on a new line):
20
4
10
10
20
Histogram:
20 **
4 *
10 **
但是,我想要下面的输出
Histogram:
4 *
10 **
20 **
这是我的代码:
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
using namespace std;
void hist(int arr[], int n);
void swap(int &a, int &b);
int main(){
int* arr = NULL;
int number;
cout << "Enter number of grades:" << endl;
cin >> number;
cout << "Enter grades (each on a new line):" << endl;
arr = new int[number];
for(int i = 0; i < number; i++){
cin >> arr[i];
}
hist(arr, number);
return 0;
delete [] arr;
}
void hist(int arr[], int n){
cout << "Histogram:" << endl;
for (int i = 0; i < n; i++){
int j;
for (j = 0; j < i; j++)
if(arr[i] == arr[j])
break;
if (i == j){
int xx = count(arr, arr+n, arr[i]);
cout << setw(3) << arr[i] << " ";
for (int j = 0; j < xx; ++j){
cout << "*";
}
cout << endl;
}
}
}
void swap(int &a, int &b){
int temp;
temp = a;
a = b;
b = temp;
}
你想要的是在计算元素之前对向量进行排序。
void hist(int arr[], int n){
sort(arr, arr+n);
...
}
我建议您更改解决方案。如果您使用的是 std::map
,那么您将以预定的方式立即获得问题的解决方案。
另外,你为什么不使用 std::vector
?