by admin | Jun 5, 2015 | sem1
Properties of Alloys DEFINITION: An alloy is a metal (parent metal) combined with other substances (alloying agents), resulting in superior properties such as;strength, hardness, durability, ductility,tensile strength and toughness. The parent metal is the majority of...
by admin | Jun 5, 2015 | sem1
Alloys An alloy is a metal (parent metal) combined with other substances (alloying agents), resulting in superior properties such as; strength, hardness, durability, ductility, tensile strength and toughness. The parent metal is the majority of the alloy. For example,...
by admin | Jun 5, 2015 | sem3
Amortized Analysis Amortized analysis is a worst-case analysis of a a sequence of operations — to obtain a tighter bound on the overall or average cost per operation in the sequence than is obtained by separately analyzing each operation in the sequence. For an...
by admin | Jun 5, 2015 | sem3
C++ disjoint set About disjoint set : C++ Disjoint sets are very useful data structures that are used in many famous Algorithms, and you might consider using them in designing algorithms that include some sort of union behavior. Here we show how to implement a...
by admin | Jun 5, 2015 | sem3
Fibonacci Heap in C++ Fibonacci Heap in c++program using struct is given below : #include <iostream> using namespace std; int main (){ Node *heap = NULL; int arr[13] = {3,6,8,1,5,9,4,2,0,7, 11,14,13}; for (int i=0; i<13; i++) insertHeap(&heap,...
by admin | Jun 5, 2015 | sem3
Binomial Heap in c++ The main application of Binary heap in C++ is as implement priority queue. Binomial Heap is an extension of Binary heap that provides faster union or merge operation together with other operations provided by Binary Heap. A Binomial Heap is a...