Algo lab/sorting tasks notes

จาก Theory Wiki
รุ่นแก้ไขเมื่อ 06:30, 28 สิงหาคม 2566 โดย Jittat (คุย | มีส่วนร่วม) (สร้างหน้าด้วย "== Template for flipsort == <syntaxhighlight lang="cpp"> #include <iostream> using namespace std; int x[1010]; main() { int n; while(cin >> n) {...")
(ต่าง) ←รุ่นแก้ไขก่อนหน้า | รุ่นแก้ไขล่าสุด (ต่าง) | รุ่นแก้ไขถัดไป→ (ต่าง)
ไปยังการนำทาง ไปยังการค้นหา

Template for flipsort

#include <iostream>

using namespace std;

int x[1010];

main()
{
  int n;

  while(cin >> n) {
    for(int i=0; i<n; i++) {
      cin >> x[i];
    }

    // do bubble sort
  }
}

Sample codes