What is a spanning Tree?
Answer / jagrit kashyap
A spanning tree is a tree associated with a network. All the nodes of the graph appear on the tree once. A minimum spanning tree is a spanning tree organized so that the total edge weight between nodes is minimized.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is use of #include in c?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
What is context in c?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
in linking some of os executables are linking name some of them
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Determine if a number is a power of 2 at O(1).
What do the functions atoi(), itoa() and gcvt() do?
Why does everyone say not to use gets?
wat are the two methods for swapping two numbers without using temp variable??
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
What is the use of linkage in c language?