• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

how to-algorithms

68falcon

Senior member
is there an online page or something that i can get a basic understanding of algorithms. i was looking at the college i was planning on going to and under computer science and engineering that came up a lot.
 
An algorithm is simply a set of instructions that lead to a solution.
They are used a lot in computing, but can be used anywhere. Basically a computer program is one complex algorithm, usually made up of a bunch of smaller algorithms.

Not sure what you exactly want to know, but I'm sure google will give you all the info you'd ever want.
 
Yeah. Algorithm is just a word for computational strategy to solve a problem. I'm not sure what you want to study before going to school or if you just want to know what it means, because you'll learn everything in class 🙂. You might want a basic understanding of classes of problems (P, NP -- esp. what NP-complete means) and for putting boundaries on the running times of an algorithm (at least know what Big-O is).

But, really, you'll learn about all that in class. Good luck!
 
Back
Top