摘要: 1 inline int LEFT(int i) 2 { 3 return (i * 2 + 1); 4 } 5 6 inline int RIGHT(int i) 7 { 8 return (i * 2 + 2); 9 } 10 11 void swap(int &i, int &j) 12 { 13 int temp = i; 14 i = j; 15 j = temp; 16 } 17 18 阅读全文
posted @ 2019-11-10 23:42 Ren.Yu 阅读(111) 评论(0) 推荐(0) 编辑