Mzzopublic / C

C语言
3.8k stars 1.64k forks source link

Better methods, lower time complexity or space complexity #54

Open Dylanmxh opened 1 week ago

Dylanmxh commented 1 week ago

Is there a relatively better method to answer certain questions, which results in lower time complexity or space complexity?

abheydhya commented 3 days ago

Yep, choosing the right algorithm improve time and space efficiency. Example:- merge sort can sort a list with much better time complexity than selection sort (though some compromise is done on space).