• 0

[C++] Sorting a Vector of vectors


Question

Hello,

I have an entity in 3D, which is defined by a std::vector of points. Each point is an std::vector containing three values :, X, Y and Z.

So it's really a vector< vector< int > >.

I want to find the geometrical center of the 3D entity. To do this, I think I have to find the minimum X and maximum X, and take the value in-between, repeat for Y, repeat for Z; those three values are the center.

I could of course proceed with a bunch of for loops but this is tedious. To find maximum and minimum values, I could more easily use the sort algorithm of the STL. I'm a bit clueless at how I would implement this, though. Yes generally speaking I know how to implement a functor for an algorithm but in this case my brain refuses to cooperate.

Any help is appreciated.

Link to comment
https://www.neowin.net/forum/topic/700528-c-sorting-a-vector-of-vectors/
Share on other sites

4 answers to this question

Recommended Posts

  • 0

If I read your post right, your vector of vectors is structured like this:

VectorList< Vector<int>[3] = {x, y, z} > (an arbitrarily-sized list of vectors, where each vector contains 3 elements)

and you want to find the geometrical center. There isn't anything in the STL that can do it this way because of your structure. Honestly, you've got the organization a bit backward for the goal you're trying to achieve. It would be a lot simpler if the inner vector was a list of (x/y/z)-coordinates, and the outer vector contained each inner vector, something like this:

VectorList< Vector<int> >[3] (a list of 3 vectors, where each vector is of arbitrary size)

You might create a function that returns a vector as described with the input being your own implementation, and then pass the result as an argument to the actual function that computes the geometric center, which might make use of things from the <algorithm> header like std::min_element() and std::max_element(). FWIW, I said a conversion function would be useful because both have their strengths and weaknesses.

I've got the code ready, but it seems like you really enjoy programming; I think I'll let you think about it. ^_^

I hope this helps!

  • 0

I'm not sure why you are using a vector to store a static number of variables.

In my opinion, a better way would be to create a Point class and a PointVector class (or however you want to name them). The Point class would simply hold the x, y, and z coordinates and have methods to access and edit those values, and the PointVector class would implement a vector to hold those points. You could then create methods in the PointVector class to sort by whichever point you want or give you min and max of whichever point. Such simple classes wouldn't take very long to write.

  • 0

I am in no way responsible for the poor design, this is an assignment. I cannot change the provided implementation AFAIK, I have to work with it.

So it seems my brain refused to cooperate because there's no evident way of doing it with STL algorithms. Sigh. I guess I'll do what rpgfan suggested.

Thanks. :)

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Hello, It would appear so, according to https://finance.yahoo.com/news/how-to-hide-your-home-on-google-maps-apple-maps-204146687.html. Regards, Aryeh Goretsky      
    • Hello, The Nvidia Founders Edition 3080 video card is approximately six years old, correct? Have you looked into whether replacement fans are available for it? Perhaps replacing those will improve cooling, especially when combined with cleaning the card's heatsink and replacing the thermal interface materials. Regards, Aryeh Goretsky  
    • Hello, While ~104 GB of space may seem generous (at least compared to other e-readers which have 8-32GB), I feel at this price point the device should have a Micro SDXC card slot for expansion, particularly if it allows audio books to be installed and played. I hope to see more reviews of 6" phone-sized e-readers on Neowin in the future. It will be interesting to see how they compare. Regards, Aryeh Goretsky
    • Sandboxie Plus 1.17.8 / Classic 5.72.8 by Razvan Serea Run programs in a sandbox to prevent malware from making permanent changes to your PC. Sandboxie allows you to run your browser, or any other program, so that all changes that result from the usage are kept in a sandbox environment, which can then be deleted later. Sandboxie is a sandbox-based isolation software for 32- and 64-bit Windows NT-based operating systems. It is being developed by David Xanatos since it became open source, before that it was developed by Sophos (which acquired it from Invincea, which acquired it earlier from the original author Ronen Tzur). It creates a sandbox-like isolated operating environment in which applications can be run or installed without permanently modifying the local or mapped drive. An isolated virtual environment allows controlled testing of untrusted programs and web surfing. Sandboxie is available in two flavors Plus and Classic. Both have the same core components, this means they have the same level of security and compatibility. What's different is the user interface the Plus build has a modern Qt based UI which supports all new features that have been added since the project went open source. The Classic build has the old no longer developed MFC based UI, hence it lacks support for modern features, these features can however still be used when manually configured in the Sandboxie.ini. Sandboxie Plus 1.17.8 / Classic 5.72.8 release notes: Added added DisableCustomTitleOpt=[process,][y|n] to allow [#] sandboxie title markers on custom-titlebar windows (Delphi VCL, Qt, Electron) that were previously skipped to prevent DWM repaint CPU loops #5387 Changed updated bundled ImDisk driver to 3.0.2 #5419 Fixed fix Suppress logs for expected non-user SIDs #5422 SbieSvc.exe: SBIE2218/2219 error when run program as administrator #5417 fixed explorer.exe crashes in Application Compartment when Huorong Security is installed #5423 Download: Sandboxie Plus (64-bit) | 23.5 MB (Open Source) Download: Sandboxie Classic (64-bit) | 3.0 MB Links: Sandboxie Website | GitHub | ARM64 | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Hello, Christian Maas' XVI32 is a nice (and very small) hex editor. Speaking of hex editors, many years ago a colleague and I who both worked at Tribal Voice managed to edit a copy of the company's PowWow instant messaging client to make it behave better now that all of its lookup servers and other server-side tech was gone.  The program didn't support NAT (RFC-3022 was introduced in January 2001, the same time Tribal Voice was shuttered), but it still worked okay if you manually set up port-forwarding on your router.  The server at http://powwow.jazy.net/ hosts a copy (usual warnings about downloading and running untrusted code from random internet servers apply). I occasionally use some tools like Funduc Software's Search and Replace and Application Mover when I need to make mass-edits to text-based files or move programs with a hard-coded installation directories, respectively.  When I need to figure out the exact LCD panel inside of a laptop, EnTech Taiwan's Monitor Asset Manager is my go-to tool for that purpose. JD Design's website (now hosted on github.io) has a number of interesting freeware and shareware utilities.  I used to use their TouchPro utility to set the file timestamps on software I was mastering to match its version number (e.g., version 3.00 of a program had all of its files dates set to 3:00AM, and so forth). Karenware has a number of interesting freeware utilities, too. Regards, Aryeh Goretsky  
  • Recent Achievements

    • Week One Done
      Jeroen Wilms earned a badge
      Week One Done
    • Week One Done
      rolfus earned a badge
      Week One Done
    • One Month Later
      Leroy Jethro Gibbs earned a badge
      One Month Later
    • Conversation Starter
      flexorcist earned a badge
      Conversation Starter
    • One Month Later
      AndreaB earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      509
    2. 2
      +Edouard
      198
    3. 3
      PsYcHoKiLLa
      138
    4. 4
      ATLien_0
      90
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!