Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
219B

  1. template <class C>
  2. void insertionsort (C& a) {
  3. for (int i=1; i<a.size(); i=i+1) {
  4. // i Elemente sind sortiert
  5. int j=i;
  6. while (j>0 && a[j-1]>a[j]) {
  7. std::swap(a[j], a[j-1]);
  8. j=j-1;
  9. }
  10. }
  11. }