标签:end 红黑树 cout 不同 因此 比较 头文件 改变 地址
首先当然要包含algorithm头文件 :#include <algorithm>
1 int box[3]={1,2,3}; 2 do{ 3 for(int i=0;i<3;++i) 4 cout << box[i] << ‘ ‘; 5 cout << endl; 6 }while(next_permutation(box,box+3));
1 1 int box[5]; 2 2 fill(box,box+5,123); 3 3 for(int i=0;i<5;++i) 4 4 cout << box[i] << ‘ ‘; 5 5 cout << endl;
1 bool cmp(int a,int b) //改写为按递减顺序来排序 2 { 3 return a > b; 4 } 5 6 struct node 7 { 8 int x; 9 int y; 10 }; 11 12 bool cmp(node a,node b) // 结构体的比较函数 13 { 14 if(a.x!=b.x) 15 { 16 return a.x > b.x; 17 } 18 else 19 { 20 return a.y < b.y; 21 } 22 }
标签:end 红黑树 cout 不同 因此 比较 头文件 改变 地址
原文地址:https://www.cnblogs.com/kachunyippp/p/10256705.html