Sorting of Cartons
A truck driver needs to move a set of cartons from Chennai to Vellore. As per the government rules, he can load the cartons in the truck as long as the number of cartons is within a limit. So he wants to load the truck with few cartons but with as much weight as possible. The cartons are numbered using ID. (an integer in the range from 1 to 100).
Help him to pick the cartons by arranging the cartons in ascedning order of weight.
Design an algorithm and write the C code to display the list of ID numbers of cartons in descending order of their wheight.
For example, if there are 5 cartons with IDs as 17, 20, 33, 40 and 22, and weights as 170.45, 500, 650, 230, 50.75, then the output should be
33, 20, 40, 17, 22
Input format
Read the number of cartons, N
Read the ID of the carton1
Read the weight of carton1
Read the ID of the carton-N
Read the weight of carton-N
Output Format:
Ids of the cartons, sorted according to weight
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of