0
votes
0answers
65 views

Optimize fill factor by move objects between areas [closed]

I have a optimization problem which is about several small rectangles inside one outer rectangle. We have, let say, three outer rectangles which are in following order (similiar to weeks). The inner ...
2
votes
3answers
112 views

Most efficient way to sort a circular buffer

I've implemented a circular buffer using a fixed-length array. In order to point to the start of valid data, I use an index (_startIndex). Similarly, in order to point to the end of valid data, I use ...
1
vote
1answer
62 views

How to sort a large list of (possibly partial) addresses by distance from lat/lon

I have a database with 10,000+ addresses that I want to sort by distance from a single lat/lon. The addresses are sometimes full street addresses, and other times just zipcode, and sometimes ...
0
votes
2answers
34 views

Which are some of best decimation algorithm to apply on large amount of data ? - .Net Component-one chart

We have got large amount of data points (more then 50,000) which needs to be rendered on componentone line chart (or may be telerik chart control) This chart is to show electrical channels i.e. ...
1
vote
1answer
103 views

Boyer-Moore-Horspool Algorithm for All Matches (Find Byte array inside Byte array)

Here is my implementation of BMH algorithm (it works like a charm): public static Int64 IndexOf(this Byte[] value, Byte[] pattern) { if (value == null) throw new ...
0
votes
0answers
13 views

DiffMathPatch do not work on Framework 4?

I've been using the component DiffMatchPatch available in https://code.google.com/p/google-diff-match-patch/source/browse/trunk/csharp/nunit.framework.dll?r=36 into a project with .NET and Framework ...
3
votes
1answer
100 views

How to get shortest representation of an enum flags value?

I want to produce the shortest (or one of the shortest) possible combination(s) of the enum fields that would result in a particular enum value. What would be the best algorithm to accomplish this? ...
3
votes
3answers
80 views

Finding Matching Strings Algorithm

I have very long 5 strings(the number of strings may change).There is no fixed format for these strings. I will provide a number which will indicate the length of the substring. I want to find the ...
1
vote
2answers
106 views

Highly parallelizable Levenstein Distance Algorithm

I actually have to implement a string comparaison where I get a matching percentage at the end (not just boolean result match/unmatch). So, to do that I've found the Levenstein Distance algorithm. But ...
-2
votes
1answer
46 views

Math model for determining more relevance set of rules

I have some string as input data, it's a GET request. There are also set of some rules that applying to that input string. So, for instance, rule can be "input parameter1 equals bla-bla-bla" or "input ...
0
votes
1answer
166 views

C4.5 Algorithm, continuous data

I am implementing the C4.5 algorithm in .net, however I don't have clear idea of how it deals "continuous data(numeric data)". Could someone give me a more detailed explanation?
1
vote
1answer
279 views

RC4 encryption not matching what's expected

I'm having some problems using a bank's web service to pass in credit card payments. They require RC4 encryption on the outbound data, which they expect to be in a hexadecimal format. Here is the ...
1
vote
1answer
106 views

How to create new list from existing collection based on some criteria

Lets say, I have collection of custom objects in List. Each object has duration property set to some minutes (10 mins or 15 mins or 45 mins etc.,) I have to group them in 3 hours of list. That is ...
1
vote
1answer
179 views

Efficient stable PriorityQueue implementation needed

I have an implementation of A-* for a board game that originally used Eric Lippert's PriorityQueue implementation using SortedDictionary, but the performance is unsatisfactory for my board size. ...
3
votes
1answer
171 views

Largest Empty Rectangle Within a Rectangle

I'm not really good in maths, so I'm having really hard times converting formulas into code, and I can't find anything ready-made googling around. I have a big rectangle containing a lot of small ...
3
votes
2answers
142 views

Should I compile C# at runtime in this scenario?

We have a MS SQL 2005 database. The data is uploaded in this database from Excel sheets. These Excel sheets come from various vendors and most of them never maintain a predefined structure so that we ...
3
votes
1answer
122 views

String likeness algorithms

I have two strings (they're going to be descriptions in a simple database eventually), let's say they're String A: "Apple orange coconut lime jimmy buffet" String B: "Car bicycle skateboard" What ...
6
votes
2answers
221 views

How does this naive recursive fibonacci implementation not stackoverflow?

As a joke a few months ago, a coworker of mine sought out to "speed up the heat death of the universe" by calculating fibonacci numbers using this exponential algorithm: int Fib(int n) { if (n ...
0
votes
5answers
145 views

Optimized Algorithm for matching between two (unsorted) data tables?

I am working on some functionality in my application that queries our database and pulls the data to one datatable, then opens an excel file and populates another datatable. Because the excel file ...
0
votes
1answer
44 views

Is there an Algorithm to index a collection on permutation of properties?

Given: IMatchCriteria { string PropA{get;} string PropB{get;} int? PropC {get;} int? PropD {get;} } IReportRecord : IMatchCriteria {...} IMatchCriteriaSet : IMatchCriteria { int ...
1
vote
4answers
123 views

Intelligent type conversion in .NET

I have been playing around with converting a string to a value type in .NET, where the resulting value type is unknown. The problem I have encountered in my code is that I need a method which accepts ...
0
votes
6answers
218 views

Which algorithm is used in List<T> to dynamically allocate memory?

Now I have an algorithm for dynamically allocating memory on an array: If array is full I create a new array of twice the size, and copy items. If array is one-quarter full I create a new array of ...
3
votes
1answer
175 views

Removing cells from a Sudoku solution to make it a puzzle

I am writing a Sudoku application and am currently working on the game generation algorithm. I managed to figure out how to quickly generate a solution (not solve). I am stumped on how to remove some ...
3
votes
2answers
177 views

Calculating algorithm time

I have an algorithm that works with extremely large numbers around the order of 2 raised to the power 4,500,000. I use the BigInteger class in .NET 4 to handle these numbers. The algorithm is very ...
0
votes
1answer
66 views

How to write a test for a solution of producer-consumer problem_?

As an excercise I want to implement a solution to the producer-consumer problem. Let's say I'll have an array int[] buffer and two methods Produce() and Consume() that will simulate the producer and ...
-1
votes
1answer
66 views

EXE comperession (for the .NET app) algorithm shows strange chars with the real human name in binary code

Have opened just for fun just compiled .net application and have found in binary structure of the file the next: I've just working with my HTTP parser tool, where I'm training with substring search ...
3
votes
5answers
321 views

How to weight a random number based on an array

I've been thinking about how to implement something that, frankly, is beyond my mathematical skills. So here goes, feel free to try and point me in the right direction rather than complete code ...
3
votes
1answer
50 views

What caching algorithm does ASP.Net use?

I'm writing a wrapper around ASP.Net's cache and I'm curious as to what caching algorithm they use. For instance, assuming everything in the cache has the same expiration date and priority, how does ...
-2
votes
5answers
92 views

the number with the greatest priority

Given an integer of number and their priority, return the number with the greatest priority Say int[] number={0,1,3,4} int[] priority={1,3,4,2} //All numbers are distinct I would want to have the ...
0
votes
1answer
61 views

Entity Framework - Accepting Object Changes in Win Form App (Algorithm)

All, I am trying to think of a way (algorithm) in which to pass a list of entity objects to a Form in my UI (Win Form Application) for editing (say in a Grid - which is irrelevant for this - it's the ...
3
votes
2answers
102 views

Name of Encryption

i was going through encryption today and my colleague told me a simpler/custom way to do it, what i did is listed down there, so can you please tell me what type of encryption or hashign is that? he ...
3
votes
3answers
138 views

Check quality of random numbers

I wrote a code which generates random numbers based on a private cryptography project ( for educational purposes ). Now i want to check how the quality of my random number generator is. Tests i ...
-1
votes
3answers
115 views

Select from list(of list(of object)) then split

I have groupped collection of Chars in VB.NET something like HashTable( "A", List(OF Char) [ A,A,A,A,A,A,A,A], "B", List(OF Char) [ B,B,B,B,B], "C", List(OF Char) [ ...
-1
votes
3answers
639 views

Vb .net Compare two text file [closed]

I have a program written in .net 2.0 and I need to compare two text files. I've tried the following code Dim fileA As String Dim fileB As String Dim fileypath As String = ...
1
vote
1answer
86 views

Best approach for distributing common data in server to desktop application spread globally

The Scenario: i have a common data used by desktop application spread globally. The common data will be changed in frequent manner which need to distributed to desktop application spread globally. ...
1
vote
3answers
586 views

Reverse words of a sentence without using String.Split in C#

Recently I have been asked in a discussion to write an algorithm to implement reverse of words of a sentence (Not reverse of whole sentence) without using string operations such as ...
0
votes
3answers
62 views

.NET 4, C++, how if…else and switch() affect on performance

Now in my app I am using this structure if (e->UserState->Equals(1)) {} //stuff 1 else if (e->UserState->Equals(2)) {} //stuff 2 ... // e - EventArgs of .NET 4 WebClient class Should I ...
2
votes
5answers
126 views

Recursion experimenting

I'm trying to experiment with recursion so as to grasp the concept. It is language agnostic, so the same concept applies to both C# and Java. I've got a TreeView which has a number of nodes. I ...
3
votes
2answers
160 views

How to traverse a tree with multiple branches

I'm working on an experimental TreeView where each TreeViewItem can either represent a condition, or a branch with an operator. This is to be parsed into SQL. For example, the tree could have a ...
0
votes
0answers
100 views

child trees from tree with possibilities [closed]

From a "template" tree I want to generate new trees. In the "template" I specify some nodes as "VARIANT", which contain nodes that represent a possibility. Template tree: node a node b (VARIANT) ...
-1
votes
3answers
202 views

Multi-tap/multi-press/triple-tap algorithm

One of our kiosk applications lacks a physical keyboard and we need to add text entry to it. Since it only has a numeric pad attached, we figured we might as well use the old cell phone entry method. ...
-2
votes
1answer
87 views

Get a pair of integers from an integer [duplicate]

Possible Duplicate: Get the seventh digit from an integer I have an integer and I want a pair number from it. var myDigit = 2345346792; I need the 5th and 6th number out from myDigit ...
2
votes
6answers
333 views

Get the seventh digit from an integer

I have a integer of 10 digits. I need to get the 7th digit of that integer. I have found a mathematical solution to get the first digit of an integer. var myDigit = 2345346792; var firstDigit = ...
0
votes
2answers
59 views

Creating a new random list from a source list

I am using VB.net 2012 and am wanting to do the following in code: I have a list of media items that is of length x. Each item in the list has a duration of y. I am wanting to create a new random ...
0
votes
0answers
135 views

Predictive Alogorithm [closed]

Have a large set of documents. Like 1+ million. These documents come from a single source and will have terms, locations, and project names used by that source. From any single document have an ...
0
votes
1answer
85 views

Variable Interval Timer

I'm writing a custom timer class that'll raise an event with a variable interval depending on the timer of day (and possibly day of week) to trigger a refresh of data. As for granularity, I'll ...
1
vote
1answer
280 views

Russia VAT Number validation

Does anyone have code to validate for validating Russian TAX Registration number (VAT). C# code will be great, but if someone have some other language it will be helpful also. Format (Russian VAT ...
2
votes
5answers
334 views

Algorithm to detect overlapping periods

I've to detect if two time periods are overlapping. Every period has a start date and an end date. I need to detect if my first time period (A) is overlapping with another one(B/C). In my case, if ...
0
votes
3answers
114 views

What is the fastest way of changing Dictionary<K,V>?

This is an algorithmic question. I have got Dictionary<object,Queue<object>>. Each queue contains one or more elements in it. I want to remove all queues with only one element from the ...
0
votes
3answers
77 views

Image format conversion is going abnormally slow

I am receiving an image from an external system in the form of a sequence of BGR values followed by an empty byte. The sequence looks sort of like... [B,G,R,0,B,G,R,0,...,B,G,R,0] where each BGR0 is ...

1 2 3 4 5 9