4
votes
8answers
276 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 …
4
votes
3answers
143 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 exp …
1
vote
2answers
66 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
0
votes
7answers
158 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 se …
5
votes
6answers
127 views
Determining the best k for a k nearest neighbour
I have need to 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 vi …
0
votes
7answers
94 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 …
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 wi …
6
votes
3answers
175 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 …
1
vote
1answer
60 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 pic …
-1
votes
2answers
65 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.
1
vote
8answers
211 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,tem …
10
votes
6answers
475 views
Is Big O(logn) log base e?
For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described b …
5
votes
8answers
311 views
Can a program output a copy of itself
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?
I do not acce …
5
votes
8answers
166 views
Efficient way of calculating likeness scores of strings when sample size is large?
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 suspici …
1
vote
10answers
491 views
What’s the fastest algorithm for sorting a linked list?
I'm curious if n log n is the best a linked list can do.
Thanks
