JS MaxHeap 排序

发布于 2023-07-28 16:36:00 字数 1066 浏览 30 评论 0

class MaxHeap {

    constructor(data) {
        this.store = data;
    }

    heapify(store, topIndex) {
        let top = topIndex;
        let left = 2 * top + 1;
        let right = 2 * top + 2;

        if (store[top] < store[right]) top = right;

        if (store[top] < store[left]) top = left;

        if (top != topIndex) {
            return this.swap(store, top, topIndex)
        }
        return this.store;
    }

    build() {
        let top = Math.floor(this.store.length / 2 - 1);

        for (let i = top; i >= 0; i--) {
            this.store = this.heapify(this.store, i)
        }
    }

    getStore() {
        return this.store;
    }

    swap(store, i, j) {
        const temp = store[i];
        store[i] = store[j];
        store[j] = temp;
        return store;
    }

    sort() {
        const newStore = [];
        for (let i = this.store.length; i > 0; i--) {
            this.build();
            newStore.push(this.store.shift())
        }
        return newStore;
    }
    
}
module.exports = MaxHeap;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

关于作者

0 文章
0 评论
24 人气
更多

推荐作者

娇女薄笑

文章 0 评论 0

biaggi

文章 0 评论 0

xiaolangfanhua

文章 0 评论 0

rivulet

文章 0 评论 0

我三岁

文章 0 评论 0

薆情海

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文