Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the maximum number of edges in a directed graph with n nodes? Is there any upper bound?

share|improve this question

5 Answers

up vote 14 down vote accepted

If you have N nodes, there are N - 1 directed edges than can lead from it (going to every other node). Therefore, the maximum number of edges is N * (N - 1).

share|improve this answer
2  
Correct. If edges are allowed to go from a node to itself, then the maximum is N^2. – ypercube Feb 22 '11 at 23:56

If the graph is not a multi graph then it is clearly n * (n - 1), as each node can at most have edges to every other node. If this is a multigraph, then there is no max limit.

share|improve this answer

The correct answer is n*(n-1)/2. Each edge has been counted twice, hence the division by 2. A complete graph has the maximum number of edges, which is given by n choose 2 = n*(n-1)/2.

share|improve this answer
This is only true if you disallow directed cycles in the graph. – István Zachar Feb 6 '12 at 11:14
3  
This is only true for undirected graphs – Bandicoot Jul 30 '12 at 0:44

There can be as many as n(n-1)/2 edges in the graph if not multi-edge is allowed.

And this is achievable if we label the vertices 1,2,...,n and there's an edge from i to j iff i>j.

See here.

share|improve this answer

Can also be thought of as the number of ways of choosing pairs of nodes n choose 2 = n(n-1)/2. True if only any pair can have only one edge. Multiply by 2 otherwise

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.