answersLogoWhite

0


Best Answer

one larger than the number

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: For a graph with n number of nodes the number of edges to form a tree is?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use the pictorial graph?

the number 2305 in a pictorial form


What does range mean in kid form?

The answer in a graph between the biggest number and the smallest number


What is a non linear number pattern?

does not form a staight line on a graph


Compare the number of line segments that form the edges of a pentagon withteh number line segments that form a rectangle write a comparison ststement?

5 > 4


How a bar graph is different form a chart?

a bar graph is a graph and a chart is a chart


What is the C program for DFS and BFS?

Breadth First Search is the technique to find the shortest distance between some starting node and the remaining nodes of the graph. This shortest distance is the minimum number of edges traversed in order to travel from the start node to the specific node being examined. It is called BFS because the distances are given breadth wise. It is the faster search technique as the representation of the nodes and the edges are in the form of adjacency list representation. We can also use this technique for searching.Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph. One starts at the root (selecting some node as the root in the graph case) and explores as far as possible along each branch before backtracking./******************************************************************-> This Program is to implement Depth First search.-> Data Structers:Graph:Adjacency ListStack:Array-> This program works in Microsoft vc++ 6.0 environment.*******************************************************************/#includeint visit[100];class graph{private:int n;graph*next;public:graph* read_graph(graph*);void dfs(int); //dfs for a single nodevoid dfs(); //dfs of the entire graphvoid ftraverse(graph*);}*g[100];int dfs_span_tree[100][100];graph* graph::read_graph(graph*head){int x;graph*last;head=last=NULL;coutx;while(x!=-1){graph*NEW;NEW=new graph;NEW->n=x;NEW->next=NULL;if(head==NULL)head=NEW;elselast->next=NEW;last=NEW;coutx;}return head;}void graph::ftraverse(graph*h){while(h!=NULL){cout


How does the cold spring graph differ form the normal weather graph?

how does the cold spring graph differ from the normal weather graph.


How can you construct a dual graph?

A dual graph is constructed by taking the original graph, which must be planar (no crossing edges) and creating a vertex inside each face of the graph. A face is an enclosed area in the graph and the space outside of the graph is also a face. Once you have created a vertex in every space, you must connect every vertex by crossing each edge in the original graph. For example, a simple triangle is planar and has two faces, one inside and one outside. We would form a vertex inside the triangle and somewhere outside of the triangle. Now, we have three edges we must cross, so starting at the inner vertex, draw three lines with one exiting through exactly 1 side each. You should now have a vertex with 3 lines that exist outside of the triangle. Without crossing them, just simply connect them to the vertex on the outside. This will create a dual of the triangle. It should resemble two vertices connected with three edges. Note that this dual graph is not planar like the original.


Which two elements combine to form a network?

Links and nodes.


Is a symbol for a number we don't know called a variable or graph?

An unknown number is a variable and its symbol is usually in the form of a letter such as x or y


What do you first when making a line graph?

Decide why you want to make a line graph and not some other form of graph.


How many edges are in a octohedron?

An octahedron (not octohedron) is a polyhedron with 8 faces. There are 257 distinct topological octahedrons and the number of vertices and edges varies.For example, an octahedron in the form of a quadrilateral based bipyramid has only 12 edges whereas a hexagonal prism has 18.