Describe
Now there are a lot of rectangles, each rectangle has a number, this number can be repeated, also know that the width and length of the rectangle, the number, length, width are all integers; now it's required to sort by a bit (the default collation is small to large);
1. Sort by number from small to large
2. For the numbers equal to the rectangle, according to the oblong long sort;
3. If the numbers and lengths are the same, sort by the width of the rectangle;
4. If the number, length, and width are the same, only one rectangle is reserved for sorting, the extra rectangles are removed, and the final sequence displays all rectangles in the specified format;
Input
The first line has an integer 0<n<10000, which indicates that there is an n set of test data next.
The first line of each group has an integer 0<m<1000, which indicates that there is a m rectangle;
The next M-line, each line has three numbers, the first number represents the number of rectangles,
The second and third numeric representations are long, the values are small, the representation is wide, equal
Description This is a square (data contract length width and number are less than 10000);
Output
Sequential output The number length of all eligible rectangles for each set of data
Sample input
181 1 11 1 11 1 21 2 11 2 22 1 12 1 22 2 1
Sample output
1 1 11 2 11 2 22 1 12 2 1
< /span>
#include <stdio.h> #include <malloc.h>typedef struct{int a,b,c,flag;} list,*link;//swap void Swap (list* m,list* n) {list *k;k= (sizeof (list)); *k=*m;*m=*n;*n=*k;free (k);} int main () {int n,a,i,j,temp; Link h[1000];scanf ("%d", &n), GetChar (), while (n--) {scanf ("%d", &a), GetChar (); for (i=0; i<a; i++) {h[i]= ( Link) malloc (sizeof (List)); scanf ("%d%d%d", &h[i]->a,&h[i]->b,&h[i]->c); if (h[i]->b
It's a little troublesome, but AC.
Operation Result:
Nyoj 81 kinds of sorting