Analysis of Typical Loops
for( int j = 0; j < n; j++ )
for( int k = 0; k < j; k++ )
{
O(1)
}