SLL implementation: >>> Reverse printing of N = 1000 elements toook 1003000 steps; N*(N + 3) = 1003000 DLL implementation: >>> Reverse printing of N = 1000 elements toook 2001 steps; 2*N + 1 = 2001 The ratio between the former and the latter id approx. 500.