Hemos discutido algunos de los casos de clasificación de vectores 2D en el conjunto 1 y el conjunto 2 a continuación.
Clasificación de vectores 2D en C++ | Conjunto 1 (por fila y columna)
Clasificación de vectores 2D en C++ | Conjunto 2 (En orden descendente por fila y columna)
Más casos se discuten en este artículo
Como se menciona en uno de los artículos publicados de este conjunto, un vector 2D también puede tener filas con diferente número de columnas. Esta propiedad es diferente a la Array 2D en la que todas las filas tienen el mismo número de columnas.
CPP
// C++ code to demonstrate 2D Vector // with different no. of columns #include<iostream> #include<vector> // for 2D vector using namespace std; int main() { // Initializing 2D vector "vect" with // values vector< vector<int> > vect{{1, 2}, {3, 4, 5}, {6}}; // Displaying the 2D vector for (int i=0; i<vect.size(); i++) { //loop till the size of particular //row for (int j=0; j<vect[i].size() ;j++) cout << vect[i][j] << " "; cout << endl; } return 0; }
Producción:
1 2 3 4 5 6
Caso 5: Clasificación del vector 2D en base al no. de columnas en fila en orden ascendente.
En este tipo de clasificación, el vector 2D se clasifica en función de un número. de columna en orden ascendente. Esto se logra pasando un tercer argumento en «sort()» como una llamada a la función explícita definida por el usuario.
CPP
// C++ code to demonstrate sorting of // 2D vector on basis of no. of columns // in ascending order #include<iostream> #include<vector> // for 2D vector #include<algorithm> // for sort() using namespace std; // Driver function to sort the 2D vector // on basis of a no. of columns in // ascending order bool sizecom(const vector<int>& v1, const vector<int>& v2) { return v1.size() < v2.size(); } int main() { // Initializing 2D vector "vect" with // values vector< vector<int> > vect{{1, 2}, {3, 4, 5}, {6}}; // Displaying the 2D vector before sorting cout << "The Matrix before sorting is:\n"; for (int i=0; i<vect.size(); i++) { //loop till the size of particular //row for (int j=0; j<vect[i].size() ;j++) cout << vect[i][j] << " "; cout << endl; } //Use of "sort()" for sorting on //basis of no. of columns in //ascending order. sort(vect.begin(), vect.end(), sizecom); // Displaying the 2D vector after sorting cout << "The Matrix after sorting is:\n"; for (int i=0; i<vect.size(); i++) { //loop till the size of particular //row for (int j=0; j<vect[i].size() ;j++) cout << vect[i][j] << " "; cout << endl; } return 0; }
Producción:
The Matrix before sorting is: 1 2 3 4 5 6 The Matrix after sorting is: 6 1 2 3 4 5
Caso 6: Clasificación del vector 2D en base al no. de columnas en fila en orden descendente.
En este tipo de clasificación, el vector 2D se clasifica en función de un número. de columna en orden descendente. Esto se logra pasando un tercer argumento en «sort()» como una llamada a la función explícita definida por el usuario.
CPP
// C++ code to demonstrate sorting of // 2D vector on basis of no. of columns // in descending order #include<iostream> #include<vector> // for 2D vector #include<algorithm> // for sort() using namespace std; // Driver function to sort the 2D vector // on basis of a no. of columns in // descending order bool sizecom(const vector<int>& v1, const vector<int>& v2) { return v1.size() > v2.size(); } int main() { // Initializing 2D vector "vect" with // values vector< vector<int> > vect{{1, 2}, {3, 4, 5}, {6}}; // Displaying the 2D vector before sorting cout << "The Matrix before sorting is:\n"; for (int i=0; i<vect.size(); i++) { //loop till the size of particular //row for (int j=0; j<vect[i].size() ;j++) cout << vect[i][j] << " "; cout << endl; } //Use of "sort()" for sorting on //basis of no. of columns in //descending order. sort(vect.begin(), vect.end(), sizecom); // Displaying the 2D vector after sorting cout << "The Matrix after sorting is:\n"; for (int i=0; i<vect.size(); i++) { //loop till the size of particular //row for (int j=0; j<vect[i].size() ;j++) cout << vect[i][j] << " "; cout << endl; } return 0; }
Producción:
The Matrix before sorting is: 1 2 3 4 5 6 The Matrix after sorting is: 3 4 5 1 2 6
Este artículo es una contribución de Manjeet Singh . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA