Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
273 views

A “killer adversary” for memory allocators?

After reading this question about seemingly degenerate behavior for the Windows memory allocator, and remembering back to this paper about constructing worst-case inputs to quicksort implementations, ...
4
votes
7answers
186 views

Efficient algorithm to find first available name

I have an array containing names of items. I want to give the user the option to create items without specifying their name, so my program will have to supply a unique default name, like "Item 1". ...
4
votes
3answers
235 views

How to determine the best case and worst case of an program(algorithm)?

Suppose I have this program, I want to compare 2 input lists. Assume array A and array B. How do I determine the best case and worst case of the function? Here is my code in [php]: foreach($array_1 ...
3
votes
5answers
581 views

How to calculate worst case analysis of this algorithm?

sum = 0; for(int i = 0; i < N; i++) for(int j = i; j >= 0; j--) sum++; From what I understand, the first line is 1 operation, 2nd line is (i+1) operations, 3rd line is (i-1) ...
3
votes
7answers
834 views

data structures and algorithms e-books [closed]

Where can I find e-books on Data Structures and Algorithms? I am currently reading "Computer Algorithms: Introduction to design and Analysis" by Sara Baase and Allen Van Gelder. I would like to have ...
2
votes
2answers
99 views

What is the worst case for KMP string search algorithm?

Can anyone suggest me a worst case "text string - pattern pair" for testing a KMP algorithm implementation?
2
votes
4answers
220 views

Worst-case O(n) algorithm for doing k-selection

Apart from the median-of-medians algorithm, is there any other way to do k-selection in worst-case O(n) time? Does implementing median-of-medians make sense; I mean, is the performance advantage good ...
1
vote
4answers
530 views

How to count the number of operations in a loop and give a theta characterization

I just want to make sure if I am doing this correct. I am trying to count the number of operations performed for the worst case scenario in java int sum = 0; for (int i = 0; i < n; i++ ) ...
0
votes
0answers
14 views

What is an example of the worst case for BM string search algorithm?

I have been trying to find an example of the worst case for BM string search using both good and bad suffix heuristics. I read that it has been proved that the worst-case to find all occurrences in an ...
0
votes
3answers
231 views

How to calculate big-theta

can some one provide me a real time example for how to calculate big theta is big theta some thing like average case, (min-max)/2 i mean (minimum time - big O)/2 Please correct me if Iam wrong, ...
0
votes
0answers
76 views

JPG byte size upperbound for any image, height by width

For a particular application, I must inline images in HTML using the <img src='data:image/gif;base64,...' /> technique. I can generate the base64 of the image of any dimensions in JPEG ...
0
votes
3answers
64 views

Question about efficient matching algorithm

I have a problem to determine whether a object contains subset of given properties. For instance, I want to look for a object has property of a,b,c,d.. M within N number of objects. for example ...
0
votes
2answers
182 views

Worst Case Analysis [closed]

Under what circumstances, if at all, is worst case analysis preferable over other analyses...? In other words -> Why use worst case analysis over best case, average case etc....
0
votes
5answers
940 views

Worst case running time (Big O)

I have this question, and I don't know how to solve it, because I don't understand it. :( The question is: Programs A and B are analyzed and are found to have worst case running times no ...