J'ai des problèmes dans mon fichier main.cpp où le programme me dit que Member reference base type 'int [11]' is not a structure or union
pour ma ligne QuickSort et ma boucle for également. Ensuite, dans la ligne cout, il est écrit Adding 'int' to a string does not append to the string and "Use array indexing to silence this warning
.
Voici mon fichier main.cpp où se situe mon problème.
#include <iostream>
#include "QuickSort.h"
using namespace std;
int main() {
int F[] = {12, 2, 16, 30, 8, 28, 4, 10, 20, 6, 18};
QuickSort(F, 0, F.length-1);
for (int i = 0; i<F.length; i++){
cout << F[i] + " ";
}
return 0;
}
Juste au cas où vous auriez besoin de mon autre code à déchiffrer. Voici mon fichier QuickSort.h :
using namespace std;
class QuickSortRecursion{
public:
QuickSortRecursion();
int Partition (int a[], int low, int high);
void QuickSort(int a[], int low, int high);
private:
};
Voici mon fichier QuickSort.cpp :
QuickSortRecursion::QuickSortRecursion(){
return;
}
int QuickSortRecursion::Partition(int a[], int low, int high){
int pivot = high;
int i = low;
int j = high;
while (i<j){
if (a[i] <= a[pivot]){
i++;
}if (a[i] > a[pivot]){
if ((a[i] > a[pivot]) && (a[j] <= a[pivot])){
int temp = a[i];
a[i] = a[j];
a[j] = temp;
i++;
} if (a[j] > a[pivot]){
j--;
}
}
}
int temp = a[i];
a[i] = a[pivot];
a[pivot] = temp;
return i;
}
void QuickSortRecursion::QuickSort(int a[], int low, int high){
if (low >= high){
return;
}
int split = Partition (a, low, high);
QuickSort(a, low, split-1);
QuickSort(a, split+1, high);
}