What's the best example of a "naive implementation"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T04:13:03Zhttp://stackoverflow.com/feeds/question/257331http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation16What's the best example of a "naive implementation"?Antaeus Feldspar2008-11-02T20:43:40Z2009-08-24T20:20:50Z
<p>What is the clearest explanation of what computer scientists mean by "the naive implementation"? I need a good clear example which will illustrate -- ideally, even to non-technical people -- that the naive implementation may <em>technically</em> be a functioning solution to the problem, but <em>practically</em> be utterly unusable.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257338#2573380Answer by Joshua for What's the best example of a "naive implementation"?Joshua2008-11-02T20:48:27Z2008-11-02T20:48:27Z<p>Bubble sort over 100,000 thousand entries.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257340#257340-4Answer by Quibblesome for What's the best example of a "naive implementation"?Quibblesome2008-11-02T20:48:53Z2008-11-02T20:48:53Z<p>A O(n!) algorithm.</p>
<pre><code>foreach(object o in set1)
{
foreach(object p in set1)
{
// codez
}
}
</code></pre>
<p>This will perform fine with small sets and then exponentially worse with larger ones.</p>
<p>Another might be a naive Singleton that doesn't account for threading.</p>
<pre><code>public static SomeObject Instance
{
get
{
if(obj == null)
{
obj = new SomeObject();
}
return obj;
}
}
</code></pre>
<p>If two threads access that at the same time it's possible for them to get two different versions. Leading to seriously weird bugs.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257344#2573442Answer by dmckee for What's the best example of a "naive implementation"?dmckee2008-11-02T20:49:24Z2008-11-02T20:58:05Z<p>Doing it the most straightforward, least tricky way available. One example is selection sort.</p>
<p>In this case naive does <em>not</em> mean bad or unusable. It just means not particularly good.</p>
<p><hr /></p>
<p>Taking Jon Skeet's advice to heart you can describe selection sort as:</p>
<ol>
<li>Find the highest value in the list and put it first</li>
<li>Find the next highest value and add it to the list</li>
<li>Repeat step 2 until you run out of list</li>
</ol>
<p>It is easy to do and easy to understand, but not necessarily the best.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257345#2573451Answer by DrJokepu for What's the best example of a "naive implementation"?DrJokepu2008-11-02T20:49:30Z2009-08-24T20:11:19Z<p>Determining if a number is prime or not (primality test) is an excellent example.</p>
<p>The naive method just check if n mod x where x = 2..square root(n) is zero for at least one x. This method can get really slow for very large prime numbers and it is not feasible to use in cryptography.</p>
<p>On the other hand there are a couple of probability or fast deterministic tests. These are too complicated to explain here but you might want to check the relevant Wikipedia article on the subject for more information: <a href="http://en.wikipedia.org/wiki/Primality%5Ftest" rel="nofollow">http://en.wikipedia.org/wiki/Primality_test</a></p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257348#2573481Answer by steveth45 for What's the best example of a "naive implementation"?steveth452008-11-02T20:51:16Z2008-11-02T20:51:16Z<p>Let's say that someone figures out how to extract a single field from a database and then proceeds to write a web page in PHP or any language that makes a separate query on the database for each field on the page. It works, but will be incredibly slow, inefficient, and difficult to maintain.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257349#25734950Answer by Jon Skeet for What's the best example of a "naive implementation"?Jon Skeet2008-11-02T20:52:13Z2008-11-02T20:52:13Z<p>I'd try to keep it away from computers altogether. Ask your audience how they find an entry in a dictionary. (A normal dictionary of word definitions.)</p>
<p>The naive implementation is to start at the very beginning, and look at the first word. Oh, that's not the word we're looking for - look at the next one, etc. It's worth pointing out to the audience that they probably didn't even <em>think</em> of that way of doing things - we're smart enough to discount it immediately! It is, however, about the simplest way you could think of. (It might be interesting to ask them whether they can think of anything simpler, and check that they do really understand why it's simpler than the way we actually do it.)</p>
<p>The next implementation (and a pretty good one) is to start in the middle of the dictionary. Does the word we're looking for come before or after that? If it's before, turn to the page half way between the start and where we are now - otherwise, turn to the page half way between where we are now and the end, etc - binary chop.</p>
<p>The actual human implementation is to use our knowledge of letters to get very rapidly to "nearly the right place" - if we see "elephant" then we'll know it'll be "somewhere near the start" maybe about 1/5th of the way through. Once we've got to E (which we can do with very, very simple comparisons) we find EL etc.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257362#2573625Answer by Gareth for What's the best example of a "naive implementation"?Gareth2008-11-02T20:59:03Z2008-11-02T20:59:03Z<p>StackOverflow's Jeff Atwood had a <a href="http://www.codinghorror.com/blog/archives/001015.html" rel="nofollow">great example</a> of a naive algorithm related to shuffling an array.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257363#2573630Answer by Justice for What's the best example of a "naive implementation"?Justice2008-11-02T20:59:30Z2008-11-02T20:59:30Z<p>Naive doesn't mean bad or unusable - it means having certain qualities which pose a problem <em>in a specific context</em> and <em>for a specific purpose</em>.</p>
<p>The classic example of course is sorting. In the context of sorting a list of ten numbers, any old algorithm (except pogo sort) would work pretty well. However, when we get to the scale of thousands of numbers or more, typically we say that selection sort is the naive algorithm because it has the quality of O(n^2) time which would be too slow for our purposes, and that the non-naive algorithm is quicksort because it has the quality of O(n lg n) time which is fast enough for our purposes.</p>
<p>In fact, the case could be made that in the context of sorting a list of ten numbers, quicksort is the naive algorithm, since it will take longer than selection sort.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257381#2573810Answer by Federico Ramponi for What's the best example of a "naive implementation"?Federico Ramponi2008-11-02T21:13:31Z2008-11-02T21:19:54Z<p>The intuitive algorithms you normally use to sort a deck of cards (<a href="http://en.wikipedia.org/wiki/Insertion_sort" rel="nofollow">insertion sort</a> or <a href="http://en.wikipedia.org/wiki/Selection_sort" rel="nofollow">selection sort</a>, both O(n^2)) can be considered naive, because they are easy to learn and implement, but would not scale well to a deck of, say, 100000 cards :D . In a general setting, there are faster (O(n log n)) ways to sort a list.</p>
<p>Note, however, that <em>naive</em> does not necessarily mean <em>bad</em>. There are situations where insertion sort is a good choice (say, when you have an already sorted big deck and few unsorted cards to add).</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/257446#2574460Answer by Ali A for What's the best example of a "naive implementation"?Ali A2008-11-02T21:59:52Z2008-11-02T22:06:11Z<p>(Haven't seen a truly naive implementation posted yet so...)</p>
<p>The following implementation is "naive", because it does not cover the edge cases, and will break in other cases. It is very simple to understand, and can convey a programming message.</p>
<pre><code> def naive_inverse(x):
return 1/x
</code></pre>
<p>It will:</p>
<ul>
<li>Break on x=0</li>
<li>Do a bad job when passed an integer</li>
</ul>
<p>You could make it more "mature" by adding these features.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/258129#2581290Answer by cruizer for What's the best example of a "naive implementation"?cruizer2008-11-03T08:28:24Z2008-11-03T08:28:24Z<p>another naive implementation would be the use of recursion in computing for an integer's factorial in an imperative language. a more efficient solution in that case is to just use a loop.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/259083#2590831Answer by ephemient for What's the best example of a "naive implementation"?ephemient2008-11-03T15:58:12Z2008-11-03T15:58:12Z<p>What's the most obvious, naive algorithm for exponentiation that you could think of?</p>
<p><code>base ** exp</code> is <code>base * base * ... * base</code>, <code>exp</code> times:</p>
<pre><code>double pow(double base, int exp) {
double result = 1;
for (int i = 0; i < exp; i++)
result *= base;
return result;
}
</code></pre>
<p>It doesn't handle negative exponents, though. Remembering that <code>base ** exp == 1 / base ** (-exp) == (1 / base) ** (-exp)</code>:</p>
<pre><code>double pow(double base, int exp) {
double result = 1;
if (exp < 0) {
base = 1 / base;
exp = -exp;
}
for (int i = 0; i < exp; i++)
result *= base;
return result;
}
</code></pre>
<p>It's actually possible to compute <code>base ** exp</code> with less than <code>exp</code> multiplications, though!</p>
<pre><code>double pow(double base, int exp) {
double result = 1;
if (exp < 0) {
base = 1 / base;
exp = -exp;
}
while (exp) {
if (exp % 2) {
result *= base;
exp--;
}
else {
base *= base;
exp /= 2;
}
}
return result * base;
}
</code></pre>
<p>This takes advantage of the fact that <code>base ** exp == (base * base) ** (exp / 2)</code> if <code>exp</code> is even, and will only require about <code>log2(exp)</code> multiplications.</p>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/259169#2591691Answer by ephemient for What's the best example of a "naive implementation"?ephemient2008-11-03T16:28:23Z2008-11-03T16:28:23Z<p>I took the time to read your question a little closer, and I have the perfect example.</p>
<blockquote>
<p>a good clear example which will illustrate -- ideally, even to non-technical people -- that the naive implementation may <em>technically</em> be a functioning solution to the problem, but <em>practically</em> be utterly unusable.</p>
</blockquote>
<p>Try <a href="http://en.wikipedia.org/wiki/Bogosort" rel="nofollow">Bogosort</a>!</p>
<blockquote>
<p>If bogosort were used to sort a deck of cards, it would consist of checking if the deck were in order, and if it were not, one would throw the deck into the air, pick up the cards up at random, and repeat the process until the deck is sorted.</p>
</blockquote>
http://stackoverflow.com/questions/257331/whats-the-best-example-of-a-naive-implementation/1324523#13245230Answer by FogleBird for What's the best example of a "naive implementation"?FogleBird2009-08-24T20:20:50Z2009-08-24T20:20:50Z<p>"Naive implementation" is almost always synonymous with "brute-force implementation". Naive implementations are often intuitive and the first to come to mind, but are also often O(n^2) or worse, thus taking too long too be practical for large inputs.</p>
<p>Programming competitions are full of problems where the naive implementation will fail to run in an acceptable amount of time, and the heart of the problem is coming up with an improved algorithm that is generally much less obvious but runs much more quickly.</p>