inplace_swap 작성일 2021-02-11 | In linux | void inplace_swap(int *x,int *y) { *y=*x^*y; *x=*x^*y; *y=*x^*y; }