Post #02
algorithm is not just an approach to solve a problem but to solve them "efficiently". Efficiency here means, your code must be acceptable for minimum outcome of time and space factor
We write some codes to solve some logical problem and start calling it an "Algorithm" that's incomplete ๐
Ask yourself:
would you call something an algorithm which obviously let's you achieve some feature but eats all system resources ?
Well! I got some tips โคต๏ธ
1๏ธโฃ paper pen all steps you can think which leads the final output
2๏ธโฃ always follow networking OSPF method(open shortest path first)
3๏ธโฃ examine all steps you created and start re-examining all of them keeping "performance" in mind
4๏ธโฃ calculate how much time and space those steps require to perform one transaction successfully
5๏ธโฃ filter out best case, average case and worst case based on step 4 and go with "best case" always
And happy coding then ๐
You dont need special programming. you can use any programming language which you feel comfortable with
Thanks for reading ๐
Top comments (5)
Hey Mukul,
I am new to webdev and have a question for you.
Why is it a rule (or important) to OSPF (open shortest path first)?
It's a common terminology of networking. LSR runs algorithm decides how many way it can be connected with nodes and what are the fastest route. A to c via b, b to d via a etc. Little confusing if you dont have prior experience with IP routing table
I mentioned this term to force approaching only the efficient path for building algorithm
great
Nice article
Thanks a lot Thomas ๐ค