“Sort wektor c” Kod odpowiedzi

Sort wektor c

sort(begin(v), end(v), [] (int a, int b) { return a > b; }); // decrease
BreadCode

sortować wektor c

sort(a.begin(), a.end());
Pleasant Panda

sort wektor w c

// C++ program to sort a vector in non-decreasing
// order.
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
    vector<int> v{ 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 };
 
    sort(v.begin(), v.end());
 
    cout << "Sorted \n";
    for (auto x : v)
        cout << x << " ";
 
    return 0;
}
Red Team

Odpowiedzi podobne do “Sort wektor c”

Pytania podobne do “Sort wektor c”

Więcej pokrewnych odpowiedzi na “Sort wektor c” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu