I want algorithm and pseudocode website.?

Aladin

New Member
Hello.
please anyone tell me a website from where I can get different algorithms and pseudocodes written in general way not in a language.For example:algorithm of finding prime numbers i.e a given number is a prime or not and a program take 100 and print even numbers from 2 to 100.
and such a program by which I can learn more about algorithms and pseudocode writting with examples and tutorials such as mentioned above.
thanks
 
First you gotta know the name of the algorithm you're looking for, Then simply go and search in Wikipedia.
 
Algorithm LargestNumber
Input: A non-empty list of numbers L.
Output: The largest number in the list L.

largest ← L0
for each item in the list L≥1, do
if the item > largest, then
largest ← the item
return largest
but I want such a codes called pseudocode written above
 
Back
Top