⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fibonaccinode.java

📁 This code implements the shortest path algorithm via the simple scheme and fibonacci heap data struc
💻 JAVA
字号:


public class FibonacciNode {
//fibonacci node structure	
    int dist;//distance from the source node
    int count; //the No. of node
    FibonacciNode   FirstChild;
    FibonacciNode   LeftSibling;
    FibonacciNode   RightSibling;
    FibonacciNode   Parent;
    int degree;
    public boolean ChildCut;
	
	public FibonacciNode(){}
	public FibonacciNode(int d,int n){
		dist=d;
		count=n;
		degree=0;
		FirstChild=null;
		LeftSibling=null;
		RightSibling=null;
		Parent=null;
	}


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -