DEV Community

Cover image for A Perfect Algorithm!
D\sTro
D\sTro

Posted on • Updated on

 

A Perfect Algorithm!

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)

Collapse
 
mccurcio profile image
Matt Curcio

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)?

Collapse
 
slimdestro profile image
D\sTro • Edited

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

Collapse
 
soniarpit profile image
Arpit

great

Collapse
 
thomascoder48 profile image
Thomas-coder48

Nice article

Collapse
 
slimdestro profile image
D\sTro

Thanks a lot Thomas 🤝

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!