int cmp(struct data v1,struct data v2){ if(v1.cnt > v2.cnt) return 1;else if(v1.cnt < v2.cnt) return -1;else return strcmp(v1.w,v2.w);}