what’s the difference between Algorithm and Framework?

227 views

what’s the difference between Algorithm and Framework?

In: 5

4 Answers

Anonymous 0 Comments

An algorithm is a repeatable process. Say you want to rank words in order, an algorithm may check the letters used to make the word, and order them based on first letter, then the second letter, third, etc. This might be configurable or the default, but the assumption is every time you want to order words it will be in the exact same way.

Frameworks are more a structural thing. How, say, objects work together. If my framework for a web page are the page, then the sections within it, then the words below that, images, videos, etc, then that shows how you will programmatically interact with it starting at the document level, the various sections, etc.

You are viewing 1 out of 4 answers, click here to view all answers.