Tagged Questions

0
votes
0answers
13 views

deep copy Linkedlist without destroying original list and extra storage space (using ANSI C)

this linkedlist is different than normal linkedlists is that besides the next pointer, it also has a other pointer that points to another node except itself in the linkedlist. so what's the best way …
3
votes
3answers
62 views

Finding Common Sets within noisy data

Context: Consider each set within G to be a collection of the files (contents or MD5 hashes, not names) that are found on a particular computer. Suppose I have a giant list of giant sets G and an …
7
votes
4answers
86 views

Tree traversal algorithm for directory structures with a lot of files

When recursively traversing through a directory structure, what is the most efficient algorithm to use if you have more files than directories? I notice that when using depth-first traversal, it seems …
4
votes
5answers
132 views

Data structure for storing thousands of vectors

I have upto 10,000 randomly positioned points in a space and i need to be able to tell which the cursor is closest to at any given time. To add some context, the points are in the form of a vector …
4
votes
3answers
87 views

Strassen’s algorithm for matrix multiplication

Can someone please explain strassen's algorithm for matrix multiplication in an intuitive way? I've gone through (well, tried to go through) the explanation in the book and wiki but it's not clicking …
3
votes
2answers
152 views

What kind of cool graphics algorithms can I implement?

I'm going to program a fancy (animated) about-box for an app I'm working on. Since this is where programmers are often allowed to shine and play with code, I'm eager to find out what kind of cool …
2
votes
2answers
77 views

Point on a line closest to all other Points [closed]

There are N Points in a 2D plane. There is also a line the equation of which is given. Find a point on the line such that the sum of distances from each point to the point on the line is minimal. Do …
13
votes
10answers
288 views

How to fill a square with smaller squares/rectangles?

This is not a homework or interview question. In my office at work, we are not allowed to paint the walls, so I have decided to frame out squares and rectangles, attach some nice fabric to them, and …
0
votes
3answers
78 views

Minimum price selection

Situation looks like this: We have product 'A123' and we have to remember lowest price for it. Prices for one product comes from random number of shops and there is no way to tell when shop x will …
0
votes
8answers
122 views

How can I fairly choose an item from a list?

Let's say that I have a list of prizes: PrizeA PrizeB PrizeC And, for each of them, I want to draw a winner from a list of my attendees. Give that my attendee list is as follows: user1, user2, …
1
vote
1answer
39 views

Reversing Part of a List in Prolog

My goal for this Prolog function is as follows: Given two lists, x and y, return true if y can be formed from x by reversing a contiguous part of list x. For example, if the input is x = [1, 3, 2, …
2
votes
3answers
216 views

Checking for unique item in a list (C#)

Hello I have a list of items. Item is a object with two fields. One field is of type Dictionary<string, List<string> and second filed is of type int. Now I want to check if there is an item …
1
vote
6answers
162 views

How do I generate a tournament schedule in Ruby?

I have been searching everywhere, including the Stack Overflow archives, for an answer of how to do this, I tried rolling my own, but have come up short, so I decided I would post my request here. I …
0
votes
5answers
80 views

Map strings to numbers maintaining the lexicograhic ordering

I'm looking for an algorithm or function that is able to map a string to a number in such way, that the resulting values correspond the lexicographic ordering of strings. Example: "book" -> 50000 …
1
vote
7answers
82 views

Why having both str_replace() and preg_replace()?

I came to know PHP after Perl, so when I first found preg_* function I basically just used those. Later I read that str_replace() is faster when dealing with literal text. So my question is, can't …

1 2 3 4 5 222 next
15 30 50 per page