23 lines
240 B
C++
23 lines
240 B
C++
|
/*
|
||
|
* YOUR INFO HERE!
|
||
|
*/
|
||
|
|
||
|
// a b c d e f g
|
||
|
|
||
|
#define swap(a,b) {auto t=a; a=b; b=t;}
|
||
|
|
||
|
struct Thing{
|
||
|
int x, y, z;
|
||
|
};
|
||
|
|
||
|
struct Stuff{
|
||
|
Thing x;
|
||
|
int a, b, c;
|
||
|
};
|
||
|
|
||
|
void insert_sort(int *items, int size){
|
||
|
|
||
|
}
|
||
|
|
||
|
|