排序點的最佳方法是什麼(首先基於x座標,如果x相同,那麼y座標相同,如果y相同,那麼基於z座標等)。在java中沒有實現排序算法?java中的排序點(2d,3d等)
在C++中,它可以非常容易地完成(如下)在對的幫助下。
對於2D:
Vector < pair < int,int > > plane;
sort(plane.begin(),plane.end())
對於3D:
Vector < pair < int,pair < int,int > > > space;
sort(space.begin(),space.end());
在此先感謝。 Shantanu