Returns True if some directed graph can realize the in- and out-degree sequences.
Parameters : | in_sequence : list or iterable container
out_sequence : list or iterable container
|
---|---|
Returns : | valid : bool
|
Notes
This algorithm is from Kleitman and Wang [R222]. The worst case runtime is O(s * log n) where s and n are the sum and length of the sequences respectively.
References
[R222] | (1, 2) D.J. Kleitman and D.L. Wang Algorithms for Constructing Graphs and Digraphs with Given Valences and Factors, Discrete Mathematics, 6(1), pp. 79-88 (1973) |