Click or drag to resize
ThreeSumFastPrintAll Method
Prints to standard output the (i, j, k) with i < j < k such that a[i] + a[j] + a[k] == 0.

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static void PrintAll(
	int[] a
)

Parameters

a
Type: SystemInt32
a the array of integers
Exceptions
ExceptionCondition
ArgumentExceptionif the array contains duplicate integers
See Also