Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
168B

  1. template <class C>
  2. void bubblesort (C& a) {
  3. for (int i=a.size()-1; i>=0; i--)
  4. for (int j=0; j<i; j=j+1)
  5. if (a[j+1]<a[j])
  6. std::swap(a[j+1], a[j]);
  7. }