how to-algorithms

68falcon

Senior member
May 8, 2005
274
0
0
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.
 

Ike0069

Diamond Member
Apr 28, 2003
4,276
2
76
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.
 

interchange

Diamond Member
Oct 10, 1999
8,031
2,886
136
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!