-4
votes
0answers
85 views
Big-O complexity
Given a Markov chain I want to find the Hamiltonian circuit using DFS in any order of Markov chain. If its possible using DFS and if yes then what is the Big-o complexity of finding a Hamiltonian …
4
votes
4answers
80 views
What is the complexity of matrix addition?
I have found some mentions in another question of matrix addition being a quadratic operation. But I think it is linear.
If I double the size of a matrix, I need to calculate double the additions, …
1
vote
3answers
116 views
Does P equal NP? [closed]
Is P equal to NP?
7
votes
4answers
267 views
NP vs NP-Complete vs NP-Hard
What are the differences between NP vs NP-Complete vs NP-Hard ?
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 …
1
vote
4answers
90 views
What is the time complexity of java.util.HashMap class’ keySet() method?
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?
**Edit
I am …
1
vote
1answer
29 views
What’s the time complexity of getting an element in an array in PHP?
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 …
1
vote
7answers
107 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
67 views
upper bound, lower bound
What does it mean to prove an upper bound or lower bound to an algorithm?
0
votes
6answers
94 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 …
1
vote
6answers
108 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). …
2
votes
3answers
130 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
2answers
38 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 …
-4
votes
1answer
208 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
305 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, …
4
votes
2answers
105 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 …
