最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

【Python】PAT 甲級(jí) A1147:Heaps(大小堆)

2021-02-16 20:25 作者:曉霧喵  | 我要投稿

題目?jī)?nèi)容

In computer science, a?heap?is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the value) of P is either greater than or equal to (in a max heap) or less than or equal to (in a min heap) the key of C. A common implementation of a heap is the binary heap, in which the tree is a complete binary tree. (Quoted from Wikipedia at?https://en.wikipedia.org/wiki/Heap_(data_structure))

Your job is to tell if a given complete binary tree is a heap.

Input Specification:

Each input file contains one test case. For each case, the first line gives two positive integers: M (?100), the number of trees to be tested; and N (1<N?1,000), the number of keys in each tree, respectively. Then M lines follow, each contains N distinct integer keys (all in the range of?int), which gives the level order traversal sequence of a complete binary tree.

Output Specification:

For each given tree, print in a line?Max Heap?if it is a max heap, or?Min Heap?for a min heap, or?Not Heap?if it is not a heap at all. Then in the next line print the tree's postorder traversal sequence. All the numbers are separated by a space, and there must no extra space at the beginning or the end of the line.

Sample Input:

Sample Output:

題目要點(diǎn)

本題 30 分,考察的是堆的判定,并輸出堆的后序遍歷序列。

處理堆的問(wèn)題時(shí),首先要利用堆本身是完全二叉樹(shù)的性質(zhì)迅速定位左右孩子節(jié)點(diǎn)。根節(jié)點(diǎn)要從下標(biāo)1開(kāi)始存儲(chǔ),對(duì)于任意節(jié)點(diǎn)root來(lái)說(shuō),其左孩子下標(biāo)為2*root,右孩子下標(biāo)為2*root+1,父親下標(biāo)為root//2(向下取整)。有了這些結(jié)論就可以通過(guò)遍歷各個(gè)節(jié)點(diǎn)判斷是否符合堆的性質(zhì)。

如果完全二叉樹(shù)的所有孩子節(jié)點(diǎn)都比其父親節(jié)點(diǎn)小,那么這就是一個(gè)最大堆;反之,所有孩子節(jié)點(diǎn)都比父親節(jié)點(diǎn)大是最小堆。如果既不是最小堆、又不是最大堆,那么該完全二叉樹(shù)就不是堆。

源代碼


【Python】PAT 甲級(jí) A1147:Heaps(大小堆)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
商丘市| 黄浦区| 丹棱县| 富裕县| 鄄城县| 滨海县| 泰宁县| 宜阳县| 临安市| 光泽县| 玉山县| 新郑市| 临西县| 尚义县| 沙河市| 河北省| 成安县| 东丽区| 隆德县| 张家界市| 巢湖市| 夏河县| 郓城县| 武胜县| 铁力市| 本溪| 安陆市| 玛曲县| 拉孜县| 济南市| 榆社县| 叶城县| 临江市| 铜川市| 江源县| 宣化县| 百色市| 凯里市| 攀枝花市| 桃园县| 山西省|