In comments to this answer an idea is brought up that inverting a simply linked list could only be done in O(nlog(n)), not O(n) time.
This is definitely wrong – an O(n) inversion is not a problem - just traverse the list and change pointers as you go. Three temporary pointers are required - that's constant extra memory.
I understand completely that O(nlog(n)) is worse (slower) than O(n).
But out of curiosity - what could be a O(nlog(n)) algorithm for inverting a simply linked list? An algorithm with constant extra memory is preferable.

i`th node, do `log(i)nops. – Mehrdad Afshari Jul 21 at 9:33O(n)algorithm is anO(n logN)algorithm, so one answer to your question is the unmodified O(n) algorithm.O(n log n)is the set of algorithms growing no faster than n log n and includes those that areO(n)and evenO(1). To limit to ones in the same asymptotic bounds in both directions, you'd need to sayϴ(n). (In practice, most people really meanϴ(n)when they sayO(n)) – Brian Jul 21 at 10:03