active questions tagged complexity - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:50:30Zhttp://stackoverflow.com/feeds/tag/complexityhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1857244/np-vs-np-complete-vs-np-hard7NP vs NP-Complete vs NP-Hardunknown (google)2009-12-07T01:11:36Z2009-12-07T03:44:20Z
<p>What are the differences between NP vs NP-Complete vs NP-Hard ?</p>
<p>I am aware of many resources all over the web. I d like to read your explanations, and the reason is they might be different then what s out there, or it s out there and i m not aware.</p>
http://stackoverflow.com/questions/1850802/what-is-the-time-complexity-of-java-util-hashmap-class-keyset-method1What is the time complexity of java.util.HashMap class' keySet() method? Ankur Agrawal2009-12-05T01:44:04Z2009-12-05T02:13:40Z
<p>I am trying to implement a plane sweep algorithm and for this I need to know the complexity of
java.util.HashMap class' keyset() method. What i feel, it would be O(n log n). Am I correct?</p>
<p>**Edit
I am talking about the time complexity of the method keySet(), the walking over will take surely O(n) time. But I am not sure, how it retrieves all the keys in constant time (O(1)).
**</p>
<p>Please help me guys.</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1846222/whats-the-time-complexity-of-getting-an-element-in-an-array-in-php1What's the time complexity of getting an element in an array in PHP?-providershtole2009-12-04T10:53:54Z2009-12-04T11:09:13Z
<p>I've little idea of how arrays are implemented in PHP, and know that for most OOP languages the complexity is one of constant time, O(1), for an array of a predefined type. So what's the deal in PHP with it's dynamic typing, extending arrays, etc.?</p>
http://stackoverflow.com/questions/550571/complexity-calculation5Complexity calculationyyy2009-02-15T09:14:04Z2009-12-03T23:42:24Z
<p>What is the complexity of:</p>
<pre><code>int f4(int n)
{
int i, j, k=1, count = 0;
for(i = 0; i < n; i++)
{
k *= 3;
for(j = k; j; j /= 2)
count++;
}
return count;
}
</code></pre>
<p>I know it is O(n^2) but how do you calculate this? and why isn't it n*log n?</p>
http://stackoverflow.com/questions/1811147/relationships-between-complexity-theory-and-software-engineering1Relationships between complexity theory and software engineering?wsb33832009-11-28T00:39:45Z2009-12-01T23:52:03Z
<p>I'm interested to know if there is any literature out there on the relationship of complexity theory (emergence, complex systems, evolution) and software development processes. I read somewhere that SCRUM philosophy came out of the theory of punctuated equilibrium in evolution theory. Are there any additional studies/researches on this subject?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1826205/algorithm-complexity1Algorithm complexitygigapr2009-12-01T13:30:49Z2009-12-01T17:13:49Z
<p>Hi i am trying to calculate the complexity of the following algorithm</p>
<pre><code>private static List<int> GetIndexes(string strippedText, string searchText)
{
List<int> count = new List<int>();
int index = 0;
while (strippedText.Length >= index && index != -1)
{
index = strippedText.IndexOf(searchText.Trim(), index,
StringComparison.OrdinalIgnoreCase);
if (index != -1)
{
count.Add(index);
index++;
}
else continue;
}
return count;
}
</code></pre>
<p>I know that the loop has a complexity of <code>O(n)</code> if count increments by 1 on each iteration but, the increments depends from the indexes found. on each iteration it could increment 1 or <code>strippedText.lenght()</code>.</p>
<p>Any idea?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1817143/upper-bound-lower-bound1upper bound, lower boundunknown (google)2009-11-29T23:32:17Z2009-11-30T23:22:28Z
<p>What does it mean to prove an upper bound or lower bound to an algorithm?</p>
http://stackoverflow.com/questions/1816868/worst-case-time-complexity0Worst case time complexitygigapr2009-11-29T21:43:14Z2009-11-29T22:53:14Z
<p>Hi,</p>
<p>i have an algorithm that searches into a directory and search for all the text files in that directory and any sub-directory. Assuming i do not know how many sub-directories and sub-sub directories there are in the parent directory. how do i calculate the complexity?</p>
<p>this is the code i am using</p>
<pre><code> public List<string> GetFilesInDirectory(string directoryPath)
{
// Store results in the file results list.
List<string> files = new List<string>();
// Store a stack of our directories.
Stack<string> stack = new Stack<string>();
// Add initial directory.
stack.Push(Server.MapPath(directoryPath));
// Continue while there are directories to process
while (stack.Count > 0)
{
// Get top directory
string dir = stack.Pop();
try
{
// Add all files at this directory to the result List.
files.AddRange(Directory.GetFiles(dir, "*.txt"));
// Add all directories at this directory.
foreach (string dn in Directory.GetDirectories(dir))
{
stack.Push(dn);
}
}
catch(Exception ex)
{
}
}
return files;
}
</code></pre>
<p>thanks</p>
http://stackoverflow.com/questions/1777272/complexity-in-prolog-programs2Complexity in Prolog programs?Juanjo Conti2009-11-22T00:15:56Z2009-11-29T08:58:00Z
<p>In Prolog, problems are solved using backtracking. It's a declarative paradigm rather than an imperative one (like in C, PHP or Python). In this kind of languages is it worth to think in terms of complexity?</p>
<p>The natural way you think problems seems to be O(N^2) as someone pointed in <a href="http://stackoverflow.com/questions/1660152/prolog-find-the-longest-list-in-a-list-of-lists/1682907#1682907">this question</a>.</p>
http://stackoverflow.com/questions/1801135/what-is-the-meaning-of-o-polylogn-in-particular-how-is-polylogn-defined1What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined?Managu2009-11-26T01:45:59Z2009-11-26T02:02:05Z
<p><b>Brief:</b><br/>
When academic (computer science) papers say "O(polylog(n))", what do they mean? I'm not confused by the "Big-Oh" notation, which I'm very familiar with, but rather by the function polylog(n). They're not talking about the complex analysis function <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">Li<sub>s</sub>(Z)</a> I think. Or are they? Something totally different maybe?</p>
<p><b>More detail:</b><br/>
Mostly for personal interest, I've recently been looking over various papers on Compressed Suffix Arrays, e.g. <a href="http://www.springerlink.com/content/nacxj2hx2qvffk2e/" rel="nofollow">Advantages of Backward Searching -- Efficient Secondary Memory and Distributed Implementation of Compressed Suffix Arrays</a>. The computational complexity estimates stated sometimes involve polylog(n), which is a function I'm not familiar with.</p>
<p>Wikipedia gives a definition of <a href="http://en.wikipedia.org/wiki/Polylogarithm" rel="nofollow">polylog<sub>s</sub>(z)</a> which appears to mainly be about complex analysis and analytic number theory. My suspicion is that it's not related to the polylog(n) in the compression papers, though I'd love to hear otherwise from someone more knowledgeable. If this is the case, why exactly is it thought reasonable to omit the subscript?</p>
<p>My only other guess is that maybe O(polylog(n)) is supposed to mean "Asymptotic to a polynomial function of log(n)." But that's only a guess: I have no evidence of this, and it would be an abuse of notation to boot.</p>
<p>In any case, a link to a reasonably authoritative definition would be greatly appreciated!</p>
http://stackoverflow.com/questions/1701136/determining-the-best-k-for-a-k-nearest-neighbour5Determining the best k for a k nearest neighbourjamesh2009-11-09T14:00:53Z2009-11-24T10:30:33Z
<p>I have need to do some cluster analysis on a set of 2 dimensional data (I may add extra dimensions along the way). </p>
<p>The analysis itself will form part of the data being fed into a visualisation, rather than the inputs into another process (e.g. <a href="http://en.wikipedia.org/wiki/Radial%5Fbasis%5Fnetwork" rel="nofollow">Radial Basis Function Networks</a>). </p>
<p>To this end, I'd like to find a set of clusters which primarily "looks right", rather than elucidating some hidden patterns. </p>
<p>My intuition is that <a href="http://en.wikipedia.org/wiki/K-means%5Fclustering" rel="nofollow">k-means</a> would be a good starting place for this, but that finding the right number of clusters to run the algorithm with would be problematic.</p>
<p>The problem I'm coming to is this: </p>
<p><strong>How to determine the 'best' value for</strong> <em>k</em> <strong>such that the clusters formed are stable and visually verifiable</strong>?</p>
<p>Questions:</p>
<ul>
<li>Assuming that this isn't NP-complete, what is the time complexity for finding a good <em>k</em>. (probably reported in number of times to run the k-means algorithm).</li>
<li>is k-means a good starting point for this type of problem? If so, what other approaches would you recommend. A specific example, backed by an anecdote/experience would be maxi-bon.</li>
<li>what short cuts/approximations would you recommend to increase the performance.</li>
</ul>
http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem4Best-case Running-time to solve an NP-Complete problem?Claudiu2009-11-22T01:28:48Z2009-11-23T17:06:29Z
<p>What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">travelling salesman</a> is O(n!), but with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p>
<p>I'm curious about exact solutions, not approximations.</p>
http://stackoverflow.com/questions/1780315/what-is-the-run-time-complexity-of-this-function-4What is the run-time complexity of this function? [closed]SaRa2009-11-22T22:49:59Z2009-11-22T23:46:48Z
<p>Hello:</p>
<p>Can you tell me the answer to this question?</p>
<p>Determine the time complexity of the following algorithm as a step count and
express it in Big-O notation.</p>
<pre><code>function Algo(n) {
for(int i = 0; i < n; i++)
for(int j = 0; j< n; j++)
S1;
for(int j = 0; j< n; j++)
{
S2;
S3;
S4;
}
}
</code></pre>
http://stackoverflow.com/questions/1723182/a-regex-that-will-never-be-matched-by-anything4A Regex that will never be matched by anythingApoY2k2009-11-12T15:46:20Z2009-11-16T13:11:45Z
<p>This might sound like a stupid question, but I had a long talk with some of my fellow developers and it sounded like a fun thing to think of.</p>
<p>So; what's your thought - what does a Regex look like, that will never be matched by any string, ever!</p>
<p><strong>Edit</strong>: Why I want this? Well, firstly because I find it interesting to think of such an expression and secondly because I need it for a script.</p>
<p>In that script I define a dictionary as <code>Dictionary<string, Regex></code>. This contains, as you see, a string and an expression.</p>
<p>Based on that dictionary I create methods that all use this dictionary as only reference on how they should do their work, one of them matches the regexes against a parsed logfile.</p>
<p>If an expression is matched, another <code>Dictionary<string, long></code> is added a value that is returned by the expression. So, to catch any log-messages that are not matched by an expression in the dictionary I created a new group called "unknown".</p>
<p>To this group everything that didn't match anything other is added. But to prevent the "unknown"-expression to mismatch (by accident) a log-message, I had to create an expression that is most certainly never matched, no matter what string I give it.</p>
<p>Thus, there you have my reason for this "not a real question"...</p>
http://stackoverflow.com/questions/311064/are-there-public-key-cryptography-algorithms-that-are-provably-np-hard-to-defeat8Are there public key cryptography algorithms that are provably NP-hard to defeat?Steve Steiner2008-11-22T08:06:20Z2009-11-15T18:04:46Z
<p>Should practical quantum computing become a reality, I am wondering if there are any public key cryptographic algorithms that are based on NP-complete problems, rather than integer factorization or discrete logarithms.</p>
<p>Edit:</p>
<p>Please check out the "Quantum computing in computational complexity theory" section of
<a href="http://en.wikipedia.org/wiki/Quantum_computer" rel="nofollow">the wiki article on quantum computers.</a> It points out that the class of problems quantum computers can answer (BQP) is believed to be strictly easier than NP-complete. </p>
<p>Edit 2:</p>
<p>'Based on NP-complete' is a bad way of expressing what I'm interested in.</p>
<p>What I intended to ask is for a Public Key encryption algorithm with the property that any method for breaking the encryption can also be used to break the underlying NP-complete problem. This means breaking the encryption proves P=NP.</p>
http://stackoverflow.com/questions/1734740/what-is-the-complexity-of-inserting-into-sorted-link-list-in-big-o-notation1What is the complexity of inserting into sorted link list in big-O notation?Tron2009-11-14T16:32:00Z2009-11-14T16:43:22Z
<p>What is the complexity of inserting into sorted link list in big-O notation? Let say I have 5 elements and what is the complexity to insert all of them.</p>
<p>Thank you very much</p>
http://stackoverflow.com/questions/1356202/complexity-of-this-function3Complexity of this function ??unknown (google)2009-08-31T07:14:05Z2009-11-13T08:06:39Z
<pre><code>void compute(int n) {
int h = n;
while (h > 1) {
for (int i = 0; i < n; i++) {
// do some operation
}
h = h / 2;
}
}
</code></pre>
<p>Can anybody please tell me what is the complexity( Big O ) of this function of n ??</p>
<p>This is actually an argument between me and a friend of mine.
my stand: complexity is O(n*log(n))
friend's stand: log(n)</p>
<p>Thanks for your responses.</p>
http://stackoverflow.com/questions/1715251/what-would-be-the-complexity-of-this-color-quantization-algorithm1What would be the complexity of this color-quantization algorithm?Vilx-2009-11-11T13:44:03Z2009-11-12T18:07:39Z
<p>I started toying with this idea some years ago when I wrote my university papers. The idea is this - the <strong>perfect</strong> color quantization algorithm would take an arbitrary true-color picture and reduce the number of colors to the minimum possible, while maintaining that the new image is completely indistinguishable from the original with a naked eye.</p>
<p>Basically the setting is simple - you have a set of points in the RGB cube (from 0 to 255 integer values on each axis). You have to replace each of these points with another point in such a way that:</p>
<ul>
<li>The total number of points after the operation is as small as possible;</li>
<li>The distance from an original point to the replaced point is no larger than some predefined constants R, G and B on each of the red, green and blue axis (these are taken from the sensitivity of the human eye and are in general configurable by the user).</li>
</ul>
<p>I know that there are many color quantization algorithms out there that work with different efficiencies, but they are mostly targeted at reducing colors to a certain number, not "the minimum possible without violating these constraints".</p>
<p>Also, I would like the algorithm to produce really <strong>absolute minimum</strong> possible, not just something that is "pretty close to minimum".</p>
<p>Is this possible without a time consuming full search of all combinations (infeasible for any real picture)? My instincts tell me that this is a NP-complete problem or worse, but I cannot prove it.</p>
<p><strong>Bonus setting:</strong> Change the limit from constants R,G,B to a function F(R<sub>source</sub>, G<sub>source</sub>, B<sub>source</sub>, R<sub>target</sub>, G<sub>target</sub>, B<sub>target</sub>) which returns TRUE if the mapping would be OK, and FALSE if it was out of range.</p>
http://stackoverflow.com/questions/1715401/why-is-the-complexity-of-a-exponential-in-memory4Why is the complexity of A* exponential in memory?Paul2009-11-11T14:12:06Z2009-11-11T20:38:50Z
<p>Wikipedia says on A* complexity the following (<a href="http://en.wikipedia.org/wiki/A%2A%5Fsearch%5Falgorithm" rel="nofollow">link here</a>):</p>
<blockquote>
<p>More problematic than its time
complexity is A*’s memory usage. In
the worst case, it must also remember
an exponential number of nodes.</p>
</blockquote>
<p>I fail to see this is correct because:</p>
<p>Say we explore node A, with successors B, C, and D. Then we add B, C, and D to the list of open nodes, each accompanied by a reference to A, and we move A from the open nodes to the closed nodes.</p>
<p>If at some time we find another path to B (say, via Q), that is better than the path through A, then all that is needed is to change B's reference to A to point to Q and update its actual cost, g (and logically f).</p>
<p>Therefore, if we store in a node its name, its referring node name, and its g, h, and f scores, then the maximum amount of nodes stored is the actual amount of nodes in the graph, isn't it? I really cannot see why at any time the algorithm would need to store an amount of nodes in memory that is exponential to the length of the optimal (shortest) path.</p>
<p>Could someone please explain?</p>
<p><hr></p>
<p><strong>edit</strong> As I understand now reading your answers, I was reasoning from the wrong viewpoint of the problem. I took for granted a <em>given</em> graph, whereas the exponential complexity refers to a an <em>conceptual</em> graph that is defined solely by a "branching factor".</p>
http://stackoverflow.com/questions/1713540/what-is-the-complexity-of-this-algorithm-1What is the complexity of this algorithm? Ben Fossen2009-11-11T07:04:21Z2009-11-11T07:32:22Z
<pre><code>procedure max (a[1..n]: integers)
max := a[1]
for i := 2 to n
if max < a[i] then max := a[i]
</code></pre>
<p>Is the complexity <code>O(1)</code> or <code>O(n)</code> with the best case scenario? The sequence contains <code>n</code> elements. It is pseudocode.</p>
http://stackoverflow.com/questions/1704784/how-to-make-an-agile-methodology-work-when-developing-long-term-complex-systems0How to make an Agile methodology work when developing long-term complex systems?Josh Yeager2009-11-10T00:02:05Z2009-11-10T16:51:40Z
<p>My team is building a product that has a lot of components that rely on each other. For example, whenever we add a new type of data to the system, we also have to add logging code to track the changes that use that data type. Or, when we add a new UI screen, we have to make sure that its strings are externalized so they can be translated. These things slow down almost every task we do, and sometimes one of the the steps gets forgotten.</p>
<p>The traditional way to handle this problem is to add required checklists and documentation and things like that. How do Agile methodologies handle it?</p>
http://stackoverflow.com/questions/1663545/find-buy-sell-prices-in-array-of-stock-values-to-maximize-positive-difference6Find buy/sell prices in array of stock values to maximize positive differenceMagsol2009-11-02T20:38:30Z2009-11-09T18:10:21Z
<p>Got this question in an interview today, and its optimized solution stopped me cold (which blows, because I really wanted to work for this company...)</p>
<p><b>Given a single array of real values, each of which represents the stock value of a company after an arbitrary period of time, find the best buy price and its corresponding best sell price (buy low, sell high).</b></p>
<p>To illustrate with an example, let's take the stock ticker of Company Z:</p>
<pre><code>55.39 109.23 48.29 81.59 105.53 94.45 12.24
</code></pre>
<p>Important to note is the fact that the array is "sorted" temporally - i.e. as time passes, values are appended to the right end of the array. Thus, our buy value will be (has to be) to the left of our sell value.</p>
<p>(in the above example, the ideal solution is to buy at <code>48.29</code> and sell at <code>105.53</code>)</p>
<p>I came up with the naive solution easily enough with O(n<sup>2</sup>) complexity (implemented in java):</p>
<pre><code>// returns a 2-element array: first element is the index in the argument array
// of the best buying price, and the second element is the index of the best
// selling price which, collectively, maximize the trading return
//
// if there is no favorable trading (e.g. prices monotonically fall), null is returned
public int[] maximizeReturn(ArrayList<Double> prices) {
int [] retval = new int[2];
int BUY = 0, SELL = 1;
retval[BUY] = retval[SELL] = -1; // indices of buy and sell prices, respectively
for (int i = 0; i < prices.size(); i++) {
for (int j = i + 1; j < prices.size(); j++) {
double difference = prices.get(j).doubleValue() -
prices.get(i).doubleValue();
if (difference > 0.0) {
if (retval[BUY] < 0 || difference > prices.get(retval[SELL]).doubleValue() -
prices.get(retval[BUY]).doubleValue()) {
retval[BUY] = i;
retval[SELL] = j;
}
}
}
}
return (retval[BUY] > 0 ? retval : null);
}
</code></pre>
<p>Here's where I screwed up: there's a <b>linear time O(n) solution</b>, and I completely bombed in trying to figure it out (yeah, I know, FAIL). Does anyone know how to implement the linear time solution? (any language you're comfortable with) Thanks!</p>
<p><b>Edit</b></p>
<p>I suppose, for anyone interested, I just received word today that I didn't get the job for which I interviewed where they asked me this question. :(</p>
http://stackoverflow.com/questions/1700478/how-to-determine-the-tipping-point-especially-when-programming-regexs2How to determine the "tipping point" especially when programming regex's?Rob Wells2009-11-09T11:34:45Z2009-11-09T15:38:55Z
<p>G'day,</p>
<p><strong>Edit:</strong> While this question covers a situation that can arise in programming a lot, i have always noticed that there is a point when working with regex's, esp. in Perl and with shell-programming, where trying to capture those last few edge cases:</p>
<ul>
<li>requires much, much more time to expand your regex, which can mean</li>
<li>excessive complexity in the regex, which leads to</li>
<li>future maintenance headaches due to complex nature of regex, especially where it's not in Perl so that there's no nice /x option to allow you to document the regex fragments easily.</li>
</ul>
<p>I was answering this question "<a href="http://stackoverflow.com/questions/1693257/is-there-a-fairly-simple-way-for-a-script-to-tell-from-context-whether-her-is">Is there a fairly simple way for a script to tell (from context) whether “her” is a possessive pronoun?</a>" and part of my answer was that you get to a point where chasing the last few percent of edge cases is not worth the extra effort and time to extend your regex, shell script, etc. It becomes easier to just flag the edge cases and go through them manually.</p>
<p>It got me wondering do people have a simple way of realising that they're hitting this type of tipping point? Or is it something that only comes with experience?</p>
<p>BTW While <a href="http://stackoverflow.com/questions/11540/automation-whats-your-tipping-point">this other question is also about "tipping points"</a>, it concerns when to decide to start automating file manipulations and not when "enough is enough".</p>
http://stackoverflow.com/questions/1479489/can-a-program-output-a-copy-of-itself5Can a program output a copy of itselfragnarius2009-09-25T20:45:01Z2009-11-08T17:04:01Z
<p>I think this might be a classic question but I am not aware of an answer. Can a program output a copy of itself, and, if so, is there a short program that does this?</p>
<p>I do not accept the "empty program" as an answer, and I do not accept programs that have access to there own source code. Rather, I am thinking something like this:</p>
<p>int main(int argc, char** argv){ printf("int main(argc, char** argv){ printf...</p>
<p>but I do not know how to continue...</p>
http://stackoverflow.com/questions/1691458/sorted-array-big-o-notation-1Sorted array Big o notationRoxy2009-11-07T00:41:10Z2009-11-07T01:37:28Z
<p>Hello
I just have a simple question, why is the big O notation of a sorted array O(log N)? It will be a sorted array. </p>
http://stackoverflow.com/questions/1634995/complexity-help-on2-0nlog-etc1complexity help..O(n^2), 0(nlog) etcNewcomer2009-10-28T03:06:53Z2009-11-04T20:52:11Z
<p>hey there could someone please help me determine the complexity?. An example given in my class was </p>
<p><em>bubble sort</em></p>
<pre><code>int main() {
int a[10] = {10,9,8,7,6,5,4,3,2,1};
int i,j,temp;
for (j=0;j<10;j++) {
for (i=0;i<9;i++) {
if (a[i] > a[i+1]) {
temp = a[i];
a[i] = a[i+1];
a[i+1] = temp;
}
}
}
for (i=0;i<10;i++) {
printf("%d ",a[i]);
}
}
</code></pre>
<p>which had a complexity of O(n^2) because it had two loops of O(n) hence O(n) x O(n).</p>
<p><hr /></p>
<p>and they said quicksort has an complexity of O(nlog(n)) .. why is this?</p>
<p>is it because as it goes around a loop it divides a number?</p>
<p>-thanks</p>
http://stackoverflow.com/questions/1525117/whats-the-fastest-algorithm-for-sorting-a-linked-list1What's the fastest algorithm for sorting a linked list?Michael2009-10-06T11:51:18Z2009-11-01T06:00:40Z
<p>I'm curious if n log n is the best a linked list can do.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1609742/efficient-way-of-calculating-likeness-scores-of-strings-when-sample-size-is-large5Efficient way of calculating likeness scores of strings when sample size is large?matt b2009-10-22T20:24:19Z2009-10-23T23:58:36Z
<p>Let's say that you have a list of 10,000 email addresses, and you'd like to find what some of the closest "neighbors" in this list are - defined as email addresses that are suspiciously close to other email addresses in your list.</p>
<p>I'm aware of how to calculate the <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein distance</a> between two strings (thanks to <a href="http://stackoverflow.com/questions/797688/how-to-determine-a-strings-dna-for-likeness-to-another">this question</a>), which will give me a score of how many operations are needed to transform one string into another.</p>
<p>Let's say that I define "suspiciously close to another email address" as two strings having a Levenshtein score less than N.</p>
<p>Is there a more efficient way to find pairs of strings whose score is lower than this threshold besides comparing every possible string to every other possible string in the list? In other words, can this type of problem be solved quicker than <code>O(n^2)</code>? </p>
<p>Is Levenshtein score a poor choice of algorithms for this problem?</p>
http://stackoverflow.com/questions/480775/programmatically-obtaining-big-o-efficiency-of-code8Programmatically obtaining Big-O efficiency of codekronoz2009-01-26T18:09:55Z2009-10-23T05:58:40Z
<p>I wonder whether there is any automatic way of determining (at least roughly) the Big-O time complexity of a given function?</p>
<p>If I graphed an O(n) function vs. an O(n lg n) function I think I would be able to visually ascertain which is which; I'm thinking there must be some heuristic solution which enables this to be done automatically.</p>
<p>Any ideas?</p>
<p><strong>Edit:</strong> I am happy to find a semi-automated solution, just wondering whether there is some way of avoiding doing a fully manual analysis.</p>
http://stackoverflow.com/questions/1605002/are-there-any-online-algorithms-for-planarity-testing3Are there any online algorithms for planarity testing?Doug McClean2009-10-22T04:19:37Z2009-10-22T18:36:52Z
<p>I know that <a href="http://en.wikipedia.org/wiki/Planarity%5Ftesting" rel="nofollow">planarity testing</a> can be done in O(v) (equivalently O(e), since planar graphs have O(v) edges) time.</p>
<p>I wonder if it can be done online in O(1) amortized time as each edge is added (still O(e) time overall).</p>
<p>In other words, in a database table representing edges of a graph and subject to a constraint that the represented graph is planar, how much time must the DBMS responsible for managing the constraint take to validate each proposed insertion? (For simplification, assume that there are no deletions.) Must it re-run one of the O(v) planarity testing algorithms to test each proposed insertion or group of insertions?</p>