Pop/Push Array Test
Arr Len=4
a[0]=z,a[1]=a,a[2]=b,a[3]=c,
a[0]=1st,a[1]=z,a[2]=a,a[3]=b,
a[0]=2nd,a[1]=1st,a[2]=z,a[3]=a,
a[0]=3rd,a[1]=2nd,a[2]=1st,a[3]=z,
5 ticks. WOW! For loop, but still O(n).
a[0]=4th,a[1]=3rd,a[2]=2nd,a[3]=1st,
801 ticks. Array.Copy: I thought this would be better.
a[0]=5th,a[1]=4th,a[2]=3rd,a[3]=2nd,
5th
a[0]=4th,a[1]=3rd,a[2]=2nd,a[3]=#,
4th
a[0]=3rd,a[1]=2nd,a[2]=#,a[3]=#,
3rd
a[0]=2nd,a[1]=#,a[2]=#,a[3]=#,
2nd
a[0]=#,a[1]=#,a[2]=#,a[3]=#,
#
a[0]=#,a[1]=#,a[2]=#,a[3]=#,