I'm pretty new to algorithms and I have some questions. Let's say I have a sorting algorithm that sorts data at O(n^2), running time complexity. This could be selection sort for example. Now, let's say that instead of using selection sort I use a HashTable which reduces the running time to O(n).
- Does the additional space complexity have an effect on the running time analysis?
- When stating the answer how do I define the relationship between these two?
- Or are they completely different altogether?
Any help would be appreciated.