What is the most useful algorithm ever written?

  • Thread starter Thread starter verdigris
  • Start date Start date
  • Tags Tags
    Algorithm
Click For Summary
SUMMARY

The discussion centers around the subjective nature of determining the "most useful algorithm ever written." Participants highlight various algorithms, including basic arithmetic operations like addition (c=a+b) and memory manipulation (a=b). Tristan Jones emphasizes that usefulness is context-dependent, suggesting that no single algorithm can be deemed the most useful universally. The conversation also touches on the complexity of algorithms used in processor design, such as cascading adders and synchronous adders, illustrating the diversity of algorithm applications.

PREREQUISITES
  • Basic understanding of programming concepts, particularly in C++.
  • Familiarity with algorithmic operations such as addition and memory assignment.
  • Knowledge of processor architecture and optimization techniques.
  • Awareness of mathematical theorems and their applications in algorithms.
NEXT STEPS
  • Research C++ arithmetic operations and their underlying algorithms.
  • Explore optimization techniques for synchronous adders in processor design.
  • Study the applications of the Pythagorean theorem in algorithm development.
  • Investigate the role of algorithms in data manipulation and file output.
USEFUL FOR

This discussion is beneficial for programmers, computer scientists, and anyone interested in algorithm design and optimization, particularly in the context of programming and hardware efficiency.

verdigris
Messages
118
Reaction score
0
Which algorithm is the most useful and compact that anyone has written?
 
Technology news on Phys.org
Algorithm to add two numbers:

c=a+b;

:biggrin:

Tristan
 
nope it's binary negation.
 
Hmm, what about the algorithm to move an integer number from one memory location to another:

a=b;
 
Constructing data perhaps?: (cons a b)
 
I think the point here is that there is no "most usefule algorithm ever written" since usefulness is based, by definition, on the situation at hand, so the answer to your question would vary dramatically based on the situation that you need to use the algorithm for.

Regards,
Tristan Jones
 
TristanJ said:
... there is no "most usefule algorithm ever written" ...

As any fule kno, the most usefule algorithm ever written was wrote by Adrian Mole, aged 13 1/2 ... :biggrin:
 
It is like saying what is the most useflul theorem in Math? Hard to say since they are all darn important.
 
I did one to do permutations on any number of characters and output it to a text file. I'm talking of hours of data crunching and huge huge text files. It even used about 90% of processor power on my lower end machine. This is the best way I've found to use up space on someone's computer :-p
 
Last edited:
  • #10
easy answer is ...

verdigris said:
Which algorithm is the most useful and compact that anyone has written?

...The Pythagorean theorum is the most useful ever devised.
 
  • #11
Well, algorithm doesn't necessarily mean programming, so I'm saying the most useful algorithm ever written is:

How to Make a Baby

Virtually everyone alive has made use of it.
 
  • #12
how about:

(B^M)->(P)

Its a most satisfying algorithm, i found it most useful.
 
  • #13
TristanJ said:
Algorithm to add two numbers:

c=a+b;

:biggrin:

Tristan

The implementation of basic operations such as multiplication/division and even addition at the circuit level often use some interesting algorithms for optimization and speed. I'm not sure if you were being serious or not.
 
  • #14
This is true of course, since cascading adders are generally not used in today's high speed processors and optimizing synchronous adders can be very tricky, and fine tuned! However, since this is the programming forum, I assumed that the user meant a programming algorithm. In C++, the "algorithm" to add two integers is a=b+c;. And of course, this post wasn't at all serious! ;-)

Regards,
Tristan Jones
 

Similar threads

Replies
22
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 8 ·
Replies
8
Views
4K
Replies
9
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
Replies
14
Views
3K
Replies
9
Views
3K
  • · Replies 30 ·
2
Replies
30
Views
6K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 31 ·
2
Replies
31
Views
4K