Tagged Questions
124
votes
13answers
27k views
How to check if a number is a power of 2
Today I needed a simple algorithm for checking if a number is a power of 2.
The algorithm needs to be:
Simple
Correct for any ulong value.
I came up with this simple algorithm:
private bool ...
51
votes
17answers
4k views
What is the fastest way to compute sin and cos together?
I would like to compute both the sine and co-sine of a value together (for example to create a rotation matrix). Of course I could compute them separately one after another like a = cos(x); b = ...
40
votes
7answers
6k views
C#: Is using Random and OrderBy a good shuffle algorithm?
I have read an article about various shuffle algorithms over at Coding Horror. I have seen that somewhere people have done this to shuffle a list:
var r = new Random();
var shuffled = ...
38
votes
18answers
36k views
Best way to reverse a string in C# 2.0
I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:
public string Reverse(string text)
{
char[] cArray = text.ToCharArray();
string ...
29
votes
12answers
27k views
Select a random N elements from List<T> in C#
I need a quick algorithm to select a random 5 elements from a generic list. For example, I'd like to get a random 5 elements from a List.
25
votes
6answers
785 views
Bad implementation of Enumerable.Single?
I came across this implementation in Enumerable.cs by reflector.
public static TSource Single<TSource>(this IEnumerable<TSource> source, Func<TSource, bool> predicate)
{
//check ...
25
votes
13answers
1k views
What is the fastest way to count the unique elements in a list of billion elements?
My problem is not usual. Let's imagine few billions of strings. Strings are usually less then 15 characters. In this list I need to find out the number of the unique elements.
First of all, what ...
24
votes
3answers
4k views
C# rounding DateTime objects
I want to round dates/times to the nearest interval for a charting application. I'd like an extension method signature like follows so that the rounding can be acheived for any level of accuracy:
...
24
votes
24answers
8k views
Most elegant way to generate prime numbers
What is the most elegant way to implement this function:
ArrayList generatePrimes(int n)
This function generates the first n primes (edit: where n>1), so generatePrimes(5) will return an ...
24
votes
3answers
2k views
Algorithm for implementing C# yield statement
I'd love to figure it out myself but I was wondering roughly what's the algorithm for converting a function with yield statements into a state machine for an enumerator? For example how does C# turn ...
23
votes
16answers
3k views
Removing Duplicate Images
We have a collection of photo images sizing a few hundred gigs. A large number of the photos are visually duplicates, but with differing filesizes, resolution, compression etc.
Is it possible to use ...
23
votes
14answers
15k views
Best way to randomize a string array in C#
What is the best way to randomize an array of strings in C#? My array contains about 500 strings and I'd like to create a new Array with the same strings but in a random order.
22
votes
3answers
316 views
Is there an efficient algorithm for segmentation of handwritten text?
I want to automatically divide an image of ancient handwritten text by lines (and by words in future).
The first obvious part is preprocessing the image...
I'm just using a simple digitization ...
22
votes
3answers
634 views
Digital camera algorithms
I'm working on a simple video device and I'd like to introduce some standard cool camera features. Amongst all I'd like to introduce
Focus indicator
Auto focus
Auto exposure (ideal exposure time ...
22
votes
4answers
665 views
What guarantees are there on the run-time complexity (Big-O) of LINQ methods?
I've recently started using LINQ quite a bit, and I haven't really seen any mention of run-time complexity for any of the LINQ methods. Obviously, there are many factors at play here, so let's ...
21
votes
7answers
5k views
Kinect pattern recognition
I bought a Kinect to play around with on my PC in C#. (And what fun it is to program!)
I'm using CLNUIDevice.dll to get the depth image from Kinect. This works fine and I'm able to read the depth ...
20
votes
8answers
2k views
What's a good, generic algorithm for collapsing a set of potentially-overlapping ranges?
I have a method that gets a number of objects of this class
class Range<T>
{
public T Start;
public T End;
}
In my case T is DateTime, but lets use int for simplicity. I would like a ...
19
votes
11answers
802 views
How TDD works when there can be millions of test cases for a production functionality?
In TDD, you pick a test case and implement that test case then you write enough production code so that the test passes, refactor the codes and again you pick a new test case and the cycle continues.
...
19
votes
10answers
2k 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 ...
19
votes
8answers
4k views
Pluralize - Singularize
Is there any algorithm in c# to singularize - pluralize a word (in english) or does exist a .net library to do this (may be also in different languages)?
19
votes
6answers
5k views
Random weighted choice
Consider the class below that represents a Broker:
public class Broker
{
public string Name = string.Empty;
public int Weight = 0;
public Broker(string n, int w)
{
this.Name ...
18
votes
10answers
3k views
Split String into smaller Strings by length variable
I'd like to break apart a String by a certain length variable.
It needs to bounds check so as not explode when the last section of string is not as long as or longer than the length. Looking for the ...
18
votes
8answers
13k views
Best hashing algorithm in terms of hash collisions and performance
What would be the best hashing algorithm if we had the following priorities (in that order):
Minimal hash collisions
Performance
It doesn't have to be secure. Basically I'm trying to create an ...
18
votes
6answers
13k views
Shape recognition algorithm(s)
Can anyone point me to a shape recognition algorithm, preferably in C#/Java but other languages are fine too.
17
votes
3answers
195 views
What is an efficient algorithm for counting the number of triangles in a graph?
What is an efficient algorithm for counting the number of triangles in an undirected graph )(where a graph is a set of vertices and edges)? I've been searching Google and reading through my shelf of ...
16
votes
2answers
456 views
Camera Module Focus Adjust using Contrast Transfer Function
Currently I'm designing a test program for mobile phone camera module. I'm trying to control a precision motor that adjust the focus barrel of the camera to get optimum focus point. I've been looking ...
16
votes
13answers
1k views
How do you create an english like word?
How do you create words which are not part of the english language, but sound english? For example: janertice, bellagom
16
votes
12answers
10k views
Beats per minute from real-time audio input
I'd like to write a simple C# application to monitor the line-in audio and give me the current (well, the rolling average) beats per minute.
I've seen this gamedev article, and that was absolutely no ...
16
votes
5answers
7k views
C# compare algorithms
Are there any open source algorithms in c# that solve the problem of creating a difference between two text files?
It would be super cool if it had some way of highlighting what exact areas where ...
15
votes
2answers
231 views
How to manage large set of data on a mobile device
I am currently implementing a Japanese dictionary and would like some ideas on how to find entries in a fast and efficient manner. The dictionary entries themselves are loaded and stored in a class ...
15
votes
5answers
626 views
Creating a “spell check” that checks against a database with a reasonable runtime
I'm not asking about implementing the spell check algorithm itself. I have a database that contains hundreds of thousands of records. What I am looking to do is checking a user input against a certain ...
15
votes
8answers
2k views
How can I calculate what date Good Friday falls on given a year?
Does anyone have a good algorithm to calculate what date Good Friday falls on given the year as an input? Preferably in C#.
15
votes
4answers
2k views
C# equivalent of python slice operation
In python, I can take a list my_list and rotate the contents:
>>> my_list = list(range(10))
>>> my_list
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> new_list = my_list[1:] + ...
15
votes
14answers
4k views
What is the quickest way to find the shortest cartesian distance between two polygons
I have 1 red polygon say and 50 randomly placed blue polygons - they are situated in geographical 2D space. What is the quickest/speediest algorithim to find the the shortest distance between a red ...
14
votes
4answers
164 views
Find smallest irregular polygon from combination of vertices (Performance Critical)
I need to find an irregular polygon with the smallest surface area out of several vertices on a 2D plane.
No this isn't homework. Although I wish I was back in school right now.
There are some ...
14
votes
4answers
562 views
.NET library for text algorithms?
Do you know any .NET library for text algorithms??
Especially I'm interested in strings match, and full-text-search algorithms like
Bitap algorithm
Levenshtein distance
Damerau–Levenshtein distance
...
14
votes
5answers
486 views
Recommended Open Source C# algorithms & data structures libraries
What algorithms libraries can you recommend? The basic criteria are:
Capabilities
Object Oriented Design
Performance
Algorithms libraries I have used and can recommend:
QuickGraph - for graph ...
14
votes
9answers
860 views
Most efficient algorithm for merging sorted IEnumerable<T>
I have several huge sorted enumerable sequences that I want to merge. Theses lists are manipulated as IEnumerable but are already sorted. Since input lists are sorted, it should be possible to merge ...
13
votes
3answers
319 views
Best way to track maximal distance in a set of points?
Assume that I have a collection of 2 dimensional points, and a way to determine the distance between them. This collection is frequently modified, with additional points being added and existing ...
13
votes
4answers
1k views
Remove Kinect depth shadow
I've recently started hacking on my Kinect and I want to remove the depth shadow. The shadow is caused by the IR emitter being positioned slightly to the side of the camera, so any close object will ...
13
votes
2answers
323 views
Looking for ideas how to refactor my (complex) algorithm
I am trying to write my own Game of Life, with my own set of rules. First 'concept', which I would like to apply, is socialization (which basicaly means if the cell wants to be alone or in a group ...
13
votes
10answers
7k views
Calculate Time Remaining
What's a good algorithm for determining the remaining time for something to complete? I know how many total lines there are, and how many have completed already, how should I estimate the time ...
13
votes
7answers
7k views
Facial recognition/merging software
Can anyone point me in the right direction of some facial recognition libraries & algorithms ? I've tried searching/googling but i mostly find thesises and very little real software.
12
votes
5answers
507 views
What is the best way to find the digit at n position in a decimal number?
Background
I'm working on a symmetric rounding class and I find that I'm stuck with regards to how to best find the number at position x that I will be rounding. I'm sure there is an efficient ...
12
votes
13answers
933 views
Average function without overflow exception
.NET Framework 3.5.
I'm trying to calculate the average of some pretty large numbers.
For instance:
using System;
using System.Linq;
class Program
{
static void Main(string[] args)
{
...
12
votes
12answers
2k views
Fastest algorithm to check if a number is pandigital?
Pandigital number is a number that contains the digits 1..number length.
For example 123, 4312 and 967412385.
I have solved many Project Euler problems, but the Pandigital problems always exceed the ...
12
votes
7answers
2k views
How do I figure out the least number of characters to create a palindrome?
Given a string, figure out how many characters minimum are needed to make the word a palindrome. Examples:
ABBA : 0 (already a palindrome)
ABB: 1
FAE: 2
FOO: 1
12
votes
3answers
2k views
Best algorithm for evaluating a mathematical expression?
What's the best algorithm for evaluating a mathematical expression? I'd like to be able to optimize this a little in the sense that I may have one formula with various variables, which I may need to ...
12
votes
3answers
9k views
Fuzzy text (sentences/titles) matching in C#
Hey, I'm using Levenshteins algorithm to get distance between source and target string.
also I have method which returns value from 0 to 1:
/// <summary>
/// Gets the similarity between two ...
11
votes
15answers
3k views
How to get every possibile pattern of an array of letters [closed]
Possible Duplicate:
Are there any better methods to do permutation of string?
Lets say I have the letters
a b c d
and I want to get every single possible pattern/combination of these ...