C++ 배열 정렬

1 개요[ | ]

C++ 배열 정렬
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
    int nums[] = {3,4,2,1};
    int len = sizeof(nums)/sizeof(int);
    sort(nums, nums+len);
    for(int i=0; i<len; i++) cout << nums[i] << " ";
    // 1 2 3 4
}

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}