Page 1 of 1

Subject : Data Structure write in C language (using heap Algorithm)

Posted: Tue Jul 05, 2022 10:33 am
by answerhappygod
Subject : Data Structure
write in C language (using heap Algorithm)
Subject Data Structure Write In C Language Using Heap Algorithm 1
Subject Data Structure Write In C Language Using Heap Algorithm 1 (162.29 KiB) Viewed 10 times
Subject Data Structure Write In C Language Using Heap Algorithm 2
Subject Data Structure Write In C Language Using Heap Algorithm 2 (41.83 KiB) Viewed 10 times
Café Jolly Soul is a place that sells trendy drinks. The drinks they sell and the drink codes are: Boba Coffee (BC), Moccapucino (MC), Pandan Coffee (PC), Boba Thai (BT), Choco Pandan (CP) and Cheese Choco (CC). Cafe Jolly Soul has a program to input order and view sales: A. First Line, User will input T orders B. For the next T lines, in each line, User will input the following format: N [Drink Code] N is the order quantity C. Output will display 2 Top Sales with the following output format: 1. [Drink Names] [Sales Amount] 2. [Drink Names] [Sales Amount] Try implementing Heap into the Café Jolly Soul program using C CONSTRAINTS 1≤T≤100 1≤N≤100 Drink Codes: Boba Coffee (BC), Moccapucino (MC), Pandan Coffee (PC), Boba Thai (BT), Choco Pandan (CP) and Cheese Choco (CC) Sample 1: 5 10 BC 5 MC 3 CC 2 BC 21 BT Top Sales: 1. Boba Thai 21 2. Boba Coffee 12
Sample 2: 10 5 BC 3 MC 13 CC 12 BC 2 BT 10 PC 2 PC 4 CP 5 MC 25 MC Top Sales: 1. Moccapucino 33 2. Boba Coffee 17