Answer: a device that can help could be a map.. she could learn about that place then see if its coasters are better.
Explanation: i dunno if i'm right
~shina~
Answer:
Data Flow Diagram
Explanation:
Data flow diagram is representation of data which is processed in terms of input and output.It is a tool for designing the structure for a software.Rectangles,square and circles are used in representing the flow of information.
DFD consists two components
- Layers-It consist many layers,the top layer is called context diagram.
- Levels-The first level shows the main process of the system.
Answer:
Starting from root, recursively traverse the min-heap. Once we find a key with value less than our X, we know that every key in subtree of that key will be also smaller than our X. Otherwise, we should keep traversing.
Explanation:
The complexity of this algorithm will be O(N) where N is the number of keys in our min-heap.