Cons lst = null; for (int i = 0; i < n; i++ ) lst = cons( i, lst ); lst = nreverse(lst);
What is the Big O of this code?
Answer
Contents Page-10 Prev Next Page+10 Index