+ 3
What is the relation between Algorithm and Coding???? Please explain this....
I have heard that professional programmers initially draft an Algorithm for their programming....I wanna know it’s Importance...
5 Antworten
+ 4
Algorithm is what you are going to do in order to solve a perticular problem.
Coding is just typing that stuff out using a specific programming language.
+ 1
Some rules or steps are must like start,end, initialization
Algorithm name any thing after all your creating your own algorithm
0
Algorithm is step by step execution
Ex: you want to add 2 no and save it some variable
a=1,b=2
Start
a=1,b=2
c=a+b;
print
End
This algorithm
0
Is there any strategy in algorithm? I mean rules,name of algorithm etc..
0
Selection Sort
Insertion Sort
Heap Sort
Merge Sort
Quick Sort
Bubble Sort
Shell Sort
Comb Sort
Google them and check how they work for specific language.