將兩個有序順序表合成一個新的有序順序表,使表中全部元素的值均不一樣

typedef int type; typedef struct { int len; type data[MAX]; }sqList; bool isposorder(sqList *a)//非題 { for(int i=1;i<a->len;i++) if(a->data[i]<a->data[i-1]) return false; re
相關文章
相關標籤/搜索