Algo lab/sorting tasks notes
รุ่นแก้ไขเมื่อ 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
}
}