CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2016
    Posts
    1

    Stuck in my project:Fill the ship with products in c++ (max efficiency)

    Hey guys, I will start my simple project but I still confuse about the main points.

    Here basic story of my project: Imagine that one little ship has got one big store place.We also know exactly measurements of the this storage place.
    For example:storage place dimensions length=50 meters, height=15meters, width=20meters

    Users should add input values(x,y,z) of products in the storage.I will declare some variables like x(length), y(height), z(width) for product sizes.

    And I want to fill the storage with maximum efficiency.So how should I start, and which type methods should I use and I need some advice ty guys

  2. #2
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: Stuck in my project:Fill the ship with products in c++ (max efficiency)

    Start by researching the bin packing or best fit algorithms.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured