25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- template <class C>
- void bubblesort (C& a) {
- for (int i=a.size()-1; i>=0; i--)
- for (int j=0; j<i; j=j+1)
- if (a[j+1]<a[j])
- std::swap(a[j+1], a[j]);
- }
|