1
vote
2answers
34 views
Relationships between complexity theory and software engineering?
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 …
1
vote
7answers
93 views
Algorithm complexity
Hi i am trying to calculate the complexity of the following algorithm
private static List<int> GetIndexes(string strippedText, string searchText)
{
List<int> count = new …
1
vote
2answers
57 views
upper bound, lower bound
What does it mean to prove an upper bound or lower bound to an algorithm?
0
votes
6answers
83 views
Worst case time complexity
Hi,
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 …
2
votes
3answers
119 views
Complexity in Prolog programs?
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 …
1
vote
6answers
97 views
What is the meaning of O( polylog(n) )? In particular, how is polylog(n) defined?
Brief:
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). …
5
votes
7answers
149 views
Determining the best k for a k nearest neighbour
I have need to do some cluster analysis on a set of 2 dimensional data (I may add extra dimensions along the way).
The analysis itself will form part of the data being fed into a visualisation, …
4
votes
2answers
91 views
Best-case Running-time to solve an NP-Complete problem?
What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of travelling salesman is O(n!), but with dynamic programming it can be …
-4
votes
1answer
201 views
What is the run-time complexity of this function? [closed]
Hello:
Can you tell me the answer to this question?
Determine the time complexity of the following algorithm as a step count and
express it in Big-O notation.
function Algo(n) {
for(int i = 0; i …
4
votes
8answers
294 views
A Regex that will never be matched by anything
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.
So; what's your thought - what does a Regex look like, …
8
votes
8answers
609 views
Are there public key cryptography algorithms that are provably NP-hard to defeat?
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 …
1
vote
2answers
81 views
What is the complexity of inserting into sorted link list in big-O notation?
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.
Thank you very much
3
votes
8answers
225 views
Complexity of this function ??
void compute(int n) {
int h = n;
while (h > 1) {
for (int i = 0; i < n; i++) {
// do some operation
}
h = h / 2;
}
}
…
1
vote
1answer
64 views
What would be the complexity of this color-quantization algorithm?
I started toying with this idea some years ago when I wrote my university papers. The idea is this - the perfect color quantization algorithm would take an arbitrary true-color picture and reduce the …
4
votes
3answers
153 views
Why is the complexity of A* exponential in memory?
Wikipedia says on A* complexity the following (link here):
More problematic than its time
complexity is A*’s memory usage. In
the worst case, it must also remember
an exponential number of …
