亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Java語(yǔ)言實(shí)現(xiàn)最大堆代碼示例

 更新時(shí)間:2017年12月05日 15:02:38   作者:GoldArowana  
這篇文章主要介紹了Java語(yǔ)言實(shí)現(xiàn)最大堆代碼示例,具有一定參考價(jià)值,需要的朋友可以了解下。

最大堆

最大堆的特點(diǎn)是父元素比子元素大,并且是一棵完全二叉樹。

data[1]開始存,data[0]空著不用。也可以把data[0]當(dāng)成size來(lái)用。

public class MaxHeap<T extends Comparable<? super T>> {
	private T[] data;
	private int size;
	private int capacity;
	public MaxHeap(int capacity) {
		this.data = (T[]) new Comparable[capacity + 1];
		size = 0;
		this.capacity = capacity;
	}
	public int size() {
		return this.size;
	}
	public Boolean isEmpty() {
		return size == 0;
	}
	public int getCapacity() {
		return this.capacity;
	}
	/**
   * @return 查看最大根(只看不刪, 與popMax對(duì)比)
   */
	public T seekMax() {
		return data[1];
	}
	public void swap(int i, int j) {
		if (i != j) {
			T temp = data[i];
			data[i] = data[j];
			data[j] = temp;
		}
	}
	public void insert(T item) {
		size++;
		data[size] = item;
		shiftUp(size);
	}
	/**
   * @return 彈出最大根(彈出意味著刪除, 與seekMax對(duì)比)
   */
	public T popMax() {
		swap(1, size--);
		shiftDown(1);
		return data[size + 1];
	}
	/**
   * @param child 孩子節(jié)點(diǎn)下角標(biāo)是child,父節(jié)點(diǎn)下角表是child/2
   */
	public void shiftUp(int child) {
		while (child > 1 && data[child].compareTo(data[child / 2]) > 0) {
			swap(child, child / 2);
			child = child / 2;
		}
	}
	/**
   * @param a data數(shù)組中某個(gè)元素的下角標(biāo)
   * @param b data數(shù)組中某個(gè)元素的下角標(biāo)
   * @return 哪個(gè)元素大就返回哪個(gè)的下角標(biāo)
   */
	private int max(int a, int b) {
		if (data[a].compareTo(data[b]) < 0) {
			//如果data[b]大
			return b;
			//返回b
		} else {
			//如果data[a]大
			return a;
			//返回a
		}
	}
	/**
   * @param a data數(shù)組中某個(gè)元素的下角標(biāo)
   * @param b data數(shù)組中某個(gè)元素的下角標(biāo)
   * @param c data數(shù)組中某個(gè)元素的下角標(biāo)
   * @return 哪個(gè)元素大就返回哪個(gè)的下角標(biāo)
   */
	private int max(int a, int b, int c) {
		int biggest = max(a, b);
		biggest = max(biggest, c);
		return biggest;
	}
	/**
   * @param father 父節(jié)點(diǎn)下角標(biāo)是father,左右兩個(gè)孩子節(jié)點(diǎn)的下角表分別是:father*2 和 father*2+1
   */
	public void shiftDown(int father) {
		while (true) {
			int lchild = father * 2;
			//左孩子
			int rchild = father * 2 + 1;
			//右孩子
			int newFather = father;
			//newFather即將更新,父、左、右三個(gè)結(jié)點(diǎn)誰(shuí)大,newFather就是誰(shuí)的下角標(biāo)
			if (lchild > size) {
				//如果該father結(jié)點(diǎn)既沒有左孩子,也沒有右孩子
				return;
			} else if (rchild > size) {
				//如果該father結(jié)點(diǎn)只有左孩子,沒有右孩子
				newFather = max(father, lchild);
			} else {
				//如果該father結(jié)點(diǎn)既有左孩子,又有右孩子
				newFather = max(father, lchild, rchild);
			}
			if (newFather == father) {
				//說(shuō)明father比兩個(gè)子結(jié)點(diǎn)都要大,表名已經(jīng)是大根堆,不用繼續(xù)調(diào)整了
				return;
			} else {
				//否則,還需要繼續(xù)調(diào)整堆,直到滿足大根堆條件為止
				swap(father, newFather);
				//值進(jìn)行交換
				father = newFather;
				//更新father的值,相當(dāng)于繼續(xù)調(diào)整shiftDown(newFather)
			}
		}
	}
	public static void main(String[] args) {
		//創(chuàng)建大根堆
		MaxHeap<Integer> maxHeap = new MaxHeap<Integer>(100);
		//向堆里存
		for (int i = 0; i < 100; i++) {
			maxHeap.insert((int) (Math.random() * 100));
		}
		//創(chuàng)建數(shù)組
		Integer[] arr = new Integer[100];
		//從堆里取,放進(jìn)數(shù)組里
		for (int i = 0; i < 100; i++) {
			arr[i] = maxHeap.popMax();
			System.out.print(arr[i] + " ");
		}
		System.out.println();
	}
}

最大堆:shiftDown()函數(shù)與上面不一樣

public class MaxHeap<T extends Comparable<? super T>> {
	private T[] data;
	private int size;
	private int capacity;
	public MaxHeap(int capacity) {
		data = (T[]) new Comparable[capacity + 1];
		this.capacity = capacity;
		size = 0;
	}
	public int size() {
		return size;
	}
	public Boolean isEmpty() {
		return size == 0;
	}
	public void insert(T item) {
		data[size + 1] = item;
		size++;
		shiftUp(size);
	}
	/**
   * @return 彈出最大根(彈出意味著刪除, 與seekMax對(duì)比)
   */
	public T popMax() {
		T ret = data[1];
		swap(1, size);
		size--;
		shiftDown(1);
		return ret;
	}
	/**
   * @return 查看最大根(只看不刪, 與popMax對(duì)比)
   */
	public T seekMax() {
		return data[1];
	}
	public void swap(int i, int j) {
		if (i != j) {
			T temp = data[i];
			data[i] = data[j];
			data[j] = temp;
		}
	}
	public void shiftUp(int k) {
		while (k > 1 && data[k / 2].compareTo(data[k]) < 0) {
			swap(k, k / 2);
			k /= 2;
		}
	}
	public void shiftDown(int father) {
		while (2 * father <= size) {
			int newFather = 2 * father;
			if (newFather + 1 <= size && data[newFather + 1].compareTo(data[newFather]) > 0) {
				//data[j] data[j+1]兩者取大的那個(gè)
				newFather = newFather + 1;
			}
			if (data[father].compareTo(data[newFather]) >= 0) {
				break;
			} else {
				swap(father, newFather);
				//值進(jìn)行交換
				father = newFather;
				//newFather是(2*father)或者是(2*father+1),也就是繼續(xù)shiftDown(newFather);
			}
		}
	}
	public static void main(String[] args) {
		//創(chuàng)建大根堆
		MaxHeap<Integer> maxHeap = new MaxHeap<Integer>(100);
		//向堆里存
		for (int i = 0; i < 100; i++) {
			maxHeap.insert((int) (Math.random() * 100));
		}
		//創(chuàng)建數(shù)組
		Integer[] arr = new Integer[100];
		//從堆里取,放進(jìn)數(shù)組里
		for (int i = 0; i < 100; i++) {
			arr[i] = maxHeap.popMax();
			System.out.print(arr[i] + " ");
		}
		System.out.println();
	}
}

總結(jié)

以上就是本文關(guān)于Java語(yǔ)言實(shí)現(xiàn)最大堆代碼示例的全部?jī)?nèi)容,希望對(duì)大家有所幫助。感興趣的朋友可以繼續(xù)參閱本站其他相關(guān)專題,如有不足之處,歡迎留言指出。感謝朋友們對(duì)本站的支持!

相關(guān)文章

  • 如何使用Spring工具類動(dòng)態(tài)匹配url

    如何使用Spring工具類動(dòng)態(tài)匹配url

    這篇文章主要介紹了如何使用Spring工具類動(dòng)態(tài)匹配url,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2019-12-12
  • Mybatis Log Plugin的使用方式

    Mybatis Log Plugin的使用方式

    這篇文章主要介紹了Mybatis Log Plugin的使用方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2022-02-02
  • Java二進(jìn)制操作(動(dòng)力節(jié)點(diǎn)Java學(xué)院整理)

    Java二進(jìn)制操作(動(dòng)力節(jié)點(diǎn)Java學(xué)院整理)

    這篇文章給大家介紹了java二進(jìn)制操作技巧,包括移位、位運(yùn)算操作符等相關(guān)知識(shí)點(diǎn),非常不錯(cuò),感興趣的朋友參考下吧
    2017-03-03
  • POI導(dǎo)出Excel報(bào)錯(cuò)No such file or directory的解決方法

    POI導(dǎo)出Excel報(bào)錯(cuò)No such file or directory的解決方法

    這篇文章主要為大家詳細(xì)介紹了POI導(dǎo)出Excel報(bào)錯(cuò)No such file or directory的解決方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-11-11
  • java通過HTTP接收json詳細(xì)實(shí)例代碼

    java通過HTTP接收json詳細(xì)實(shí)例代碼

    Java作為一門廣泛使用的編程語(yǔ)言,很多開發(fā)人員會(huì)用它來(lái)進(jìn)行http請(qǐng)求,獲取json數(shù)據(jù),這篇文章主要給大家介紹了關(guān)于java通過HTTP接收json的相關(guān)資料,需要的朋友可以參考下
    2023-11-11
  • SpringBoot使用Log4j的知識(shí)點(diǎn)整理

    SpringBoot使用Log4j的知識(shí)點(diǎn)整理

    在本篇文章里小編給大家整理的是關(guān)于SpringBoot使用Log4j的知識(shí)點(diǎn),需要的朋友們可以參考學(xué)習(xí)下。
    2020-02-02
  • Java?詳細(xì)講解用堆解決Top-k問題

    Java?詳細(xì)講解用堆解決Top-k問題

    TopK問題即在N個(gè)數(shù)中找出最大的前K個(gè),這篇文章將詳細(xì)講解如何利用小根堆的方法解決TopK問題,文中代碼具有一定參考價(jià)值,快跟隨小編一起學(xué)習(xí)一下吧
    2022-04-04
  • springboot2.2.2集成dubbo的實(shí)現(xiàn)方法

    springboot2.2.2集成dubbo的實(shí)現(xiàn)方法

    這篇文章主要介紹了springboot2.2.2集成dubbo的實(shí)現(xiàn)方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-01-01
  • SpringBoot日志注解與緩存優(yōu)化詳解

    SpringBoot日志注解與緩存優(yōu)化詳解

    這篇文章主要給大家介紹了關(guān)于SpringBoot日志注解與緩存優(yōu)化的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2021-10-10
  • 詳談Java中的二進(jìn)制及基本的位運(yùn)算

    詳談Java中的二進(jìn)制及基本的位運(yùn)算

    下面小編就為大家?guī)?lái)一篇詳談Java中的二進(jìn)制及基本的位運(yùn)算。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來(lái)看看吧
    2017-07-07

最新評(píng)論