洛谷排序習題總結

可以採用計數排序 採用的數據結構爲 結構體 代碼如下: #include #include #include using namespace std; struct Node{ double x,y,z; bool operator<(const Node &other)const{//重載小於運算符 return z<other.z; } } a[50050]; int main(){ int
相關文章
相關標籤/搜索