So I am learning algorithms recently, I have learned Sorting and searching ones but I am forgetting them constantly. How can I understand them so that I don't have to always look for the solutions. Any tips or resources appreciated.
In any algorithm, you see temporary data structures, ranging from string variables to abstract data types(say, arrays, queues, stacks, priority queues, etc). So you have to remember which to use in what kind of problem solving: in depth first search, the temp one is a stack; in breadth first search, the temp one is a queue.
Similarly, in some set of problems, you need to remember tricks wrt swapping members in a structure and start solving the problem again.
Wherever you have troubles, jot down and refocus on those problems after a month. It’s like spaced repetition. Spaced repetition is not necessary if you are involved with such projects all the time, like the way library writers do.
raincom|3 years ago
Similarly, in some set of problems, you need to remember tricks wrt swapping members in a structure and start solving the problem again.
Wherever you have troubles, jot down and refocus on those problems after a month. It’s like spaced repetition. Spaced repetition is not necessary if you are involved with such projects all the time, like the way library writers do.
AstixAndBelix|3 years ago
tsingy|3 years ago
jytechdevops|3 years ago
that being said, i had to do a little bit of leetcode instructions + books + algoexperts + youtube to really grasp all the gaps I had in my knowledge.
everyone has their own preferred way, i just wanted to share that it took various resources for me.
Rakib_7|3 years ago
sn9|3 years ago
swman|3 years ago