1
vote
6answers
91 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). …
-4
votes
1answer
197 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
2answers
87 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 …
1
vote
3answers
107 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
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
4
votes
8answers
292 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
3answers
151 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 …
1
vote
1answer
62 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 …
0
votes
7answers
161 views
What is the complexity of this algorithm?
procedure max (a[1..n]: integers)
max := a[1]
for i := 2 to n
if max < a[i] then max := a[i]
Is the complexity O(1) or O(n) with the best case scenario? The sequence contains n …
0
votes
7answers
100 views
How to make an Agile methodology work when developing long-term complex systems?
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 …
5
votes
7answers
148 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, …
2
votes
2answers
86 views
How to determine the “tipping point” especially when programming regex’s?
G'day,
Edit: 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 …
-1
votes
2answers
68 views
Sorted array Big o notation
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.
6
votes
3answers
181 views
Find buy/sell prices in array of stock values to maximize positive difference
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...)
Given a single array of real values, each of …
1
vote
8answers
218 views
complexity help..O(n^2), 0(nlog) etc
hey there could someone please help me determine the complexity?. An example given in my class was
bubble sort
int main() {
int a[10] = {10,9,8,7,6,5,4,3,2,1};
int i,j,temp;
for …
