Quicksort compare analysis

Quicksort user  2NlnN compares to sort
an array of N distinct keys on average
(one-sixth that many exchanges)

Proof

Let CN be the average number of compares need to sort N items
with distinct values.
We have C0=C1=0 for N>1

Express the average compare

CN=N+1+(C0+C1+...+CN2+CN1)/N+(CN1+CN2+...+C0)/N
  1. cost of partitioning
    N-1 compares two partition with flag
    1 more compare in each part breakpoint compare
  1. left subarray sort

    (C0+C1+...+CN2+CN1)/N
  2. right subarray sort

    (CN1+CN2+...+C1+C0)/N

Rearrange terms

  1. Multiplying by N
NCN=N(N+1)+2(C0+C1+...+CN2+CN1)
  1. Subtracting with same equation of N-1
NCN(N1)CN1=N(N+1)(N1)N+2(C0+C1+...+CN2+CN1)2(C0+C1+...+CN2)NCN(N1)CN1=2N+2CN1
  1. Each item dividing by N(N+1) leaves
CN/(N+1)=CN1/N+2/(N+1)
  1. Add same equation from 1
CN/(N+1)=CN1/N+2/(N+1)+CN1/(N)=CN2/(N1)+2/(N)C3/(4)=C2/3+2/4+C2/(3)=C1/2+2/3C23+C34+...+CN1N+CNN+1=C12+C23+...+CN2N1+CN1N+23+34+...+2N+2N+1CN(N+1)=C12+23+34+...+2N+1CN2(N+1)(13+14+...+1N+1)
  1. Further integration
13+14+...+1N+1ln(N)CN2NlnN1.39lgN

PS.

1+12+13+...+1N>ln(1+1)+ln(1+12)+...+ln(1+1N1)+ln(1+1N)1+12+13+...+1N>ln[2×32×43×...NN1×N+1N]ln(N)