1樓:藍色**
你如果要按照x的大小順序牌還是y 的大小順序牌,。
int comp(const void *a, const void *b)
2樓:
vc6 幫助裡的對qsort 裡compare函式指標引數的要求:
compare((void*)elem1,(void*)elem2);
the routine must compare the elements, then return one of the following
values:
return value description
< 0 elem1 less than elem2
0 elem1 equivalent to elem2
> 0 elem1 greater than elem2
1)int less_x(const void *a, const void *b)
qsort(point, sizeof(point), n, less_x);
2)int less_y( cons point *a, cons point *b)
qsort(point, sizeof(point), n, (int (*)(const void *, const void *))less_x);
3)int less_xy( cons point *a, cons point *b)
qsort(point, sizeof(point), n, (int (*)(const void *, const void *))less_xy);
3樓:她是我的小太陽
#include
#include
using namespace std;
static const int n = 3;
struct point
;int comp(const void *a, const void *b)
return true;
}int main()
qsort(point, n, sizeof(point), comp);
for(int i=0; i
c++中sort怎麼對結構體陣列中的字串陣列排序?
4樓:
//我寫的一個簡單的使用c++ sort的例子,供你參考#include
#include
typedef struct _testsortarraytestsortarray;
int main()
std::cout << "previous string is:" << tsa._arrstr << std::endl;
std::sort(tsa._arrstr,tsa._arrstr + 15);
std::cout << "after sort,string is:" << tsa._arrstr << std::endl;
system("pause");
return 0;}
請問,c++中的類的物件組成的動態陣列怎麼用sort()或qsort()排序?
5樓:菜刀撒
使用sort排序
結構體網上例子很多的 就是先寫一個排序函式
然後讓sort按照你的函式排序就行了
stl 裡面有個 sort 函式,可以直接對陣列排序,複雜度為 n*log2(n) 。使用這個函式,需要包含標頭檔案。
這個函式可以傳兩個引數或三個引數。第一個引數是要排序的區間首地址,第二個引數是區間尾地址的下一地址。也就是說,排序的區間是 [a,b) 。
簡單來說,有一個陣列 int a[100] ,要對從 a[0] 到 a[99] 的元素進行排序,只要寫 sort(a,a+100) 就行了,預設的排序方式是升序。
拿我出的“ ac 的策略”這題來說,需要對陣列 t 的第 0 到 len-1 的元素排序,就寫 sort(t,t+len);
對向量 v 排序也差不多, sort(v.begin(),v.end());
如果是沒有定義小於運算的資料型別,或者想改變排序的順序,就要用到第三引數——比較函式。比較函式是一個自己定義的函式,返回值是 bool 型,它規定了什麼樣的關係才是“小於”。想把剛才的整數陣列按降序排列,可以先定義一個比較函式 cmp
bool cmp(int a,int b)
排序的時候就寫 sort(a,a+100,cmp);
假設自己定義了一個結構體 node
struct node
有一個 node 型別的陣列 node arr[100] ,想對它進行排序:先按 a 值升序排列,如果 a 值相同,再按 b 值降序排列,如果 b 還相同,就按 c 降序排列。就可以寫這樣一個比較函式:
以下是**片段:
bool cmp(node x,node y)
排序時寫 sort(a,a+100,cmp);
6樓:匿名使用者
//假設類名為a,比較函式可以這樣寫
bool cmp(a m,a n)
使用的時候是這樣
a array[size];
....//各種賦值修改操作
sort(array,array+size,cmp);//排序
7樓:匿名使用者
class array
s[100]
//按照result的值從小到大將類排序
int cmp( const void *a ,const void *b)
qsort(s,100,sizeof(s[0]),cmp);
C語言,結構體中的陣列怎麼賦值,C語言中結構體中的陣列,不能直接賦值嗎
1 用字元常量逐個初始化陣列。例如 char a 8 把8個字元依次分別賦給c 0 c 7 這8個元素。如果在定義字元陣列時不進行初始化,則陣列中各元素的值是不可預料的。如果花括號中提供的初值個數 即字元個數 大於陣列長度,則出現語法錯誤。如果初值個數小於陣列長度,則只將這些字元賦給陣列中前面那些元...
C 中怎麼檢測結構體中是否存在某個變數
前段時間看到的 模板函式,檢查t是否有名為 s 的成員 value 為bool型檢查結果 type為s成員的型別 value為true是有效 templatestruct has member s 使用方法 struct foo if has member s value cout s 當然還可以配...
C 對字元陣列排序,c 中對於幾組字串的升序或降序排序怎麼做???
風若遠去何人留 與其它排序類似,字元陣列排序也是根據一定演算法,如冒泡法,將各個項值進行比較,並通過賦值交換位置即可。對於字元陣列,賦值和比較均與一般物件或變數不同。1 字元陣列比較 需要呼叫strcmp函式。int strcmp char s1,char s2 按照ascii碼比較,當s1和s2相...