STL for Fibonacci Heap?
boost has an implementation of it. Hope that helps. There doesn't seem to be one in the STL. Here's an example:
for(int n=0;n<40;++n){
std::cout<<"F("<<n<<")="<<fibonacci(n)<<std::endl;
}
boost has an implementation of it. Hope that helps. There doesn't seem to be one in the STL. Here's an example:
for(int n=0;n<40;++n){
std::cout<<"F("<<n<<")="<<fibonacci(n)<<std::endl;
}