Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need help on an algorithm. I have randomly generated numbers with 6 digits. Like;

123654 109431

There are approximately 1 million of them saved in a file line by line. I have to filter them according to the rule I try to describe below.

Take a number, compare it to all others digit by digit. If a number comes up with a digit with a value of bigger by one to the compared number, then delete it. Let me show it by using numbers.

Our number is: 123456 Increase the first digit with 1, so the number becomes: 223456. Delete all the 223456s from the file. Increase the second digit by 1, the number becomes: 133456. Delete all 133456s from the file, and so on...

I can do it just as I describe but I need it to be "FAST".

So can anyone help me on this?

Thanks.

share|improve this question
Is this homework? – Scott Chamberlain Nov 11 '10 at 17:23
6  
What happens when one of the digits is 9? – cdhowie Nov 11 '10 at 17:24
watching for an answer without just looping all numbers. – Ahmet Kakıcı Nov 11 '10 at 17:27
No this is not a homework. – Élodie Petit Nov 11 '10 at 17:29
1  
If number x causes y to be deleted, and y causes z to be deleted, you need to clarify what's supposed to happen. – Josephine Nov 11 '10 at 20:13
show 5 more comments

10 Answers

up vote 1 down vote accepted

This algorithm will keep a lot of numbers around in memory, but it will process the file one number at a time so you don't actually need to read it all in at once. You only need to supply an IEnumerable<int> for it to operate on.

    public static IEnumerable<int> FilterInts(IEnumerable<int> ints)
    {
        var removed = new HashSet<int>();

        foreach (var i in ints)
        {
            var iStr = i.ToString("000000").ToCharArray();

            for (int j = 0; j < iStr.Length; j++)
            {
                var c = iStr[j];

                if (c == '9')
                    iStr[j] = '0';
                else
                    iStr[j] = (char)(c + 1);

                removed.Add(int.Parse(new string(iStr)));

                iStr[j] = c;
            }

            if (!removed.Contains(i))
                yield return i;
        }
    }

You can use this method to create an IEnumerable<int> from the file:

    public static IEnumerable<int> ReadIntsFrom(string path)
    {
        using (var reader = File.OpenText(path))
        {
            string line;
            while ((line = reader.ReadLine()) != null)
                yield return int.Parse(line);
        }
    }
share|improve this answer
This works fine. Just a minor issue. int.Parse swallows the leading zeroes, but converting the filtered ints to strings and padding them with zeroes to 6 characters does the trick. Thanks for the answer cdhowie. – Élodie Petit Nov 11 '10 at 21:19
Oh, good catch. Glad it worked for you. I'll update the code for the benefit of others. – cdhowie Nov 11 '10 at 21:25

First of all, since it is around 1Million you had better perform the algorithm in RAM, not on Disk, that is, first load the contents into an array, then modify the array, then paste the results back into the file.

I would suggest the following algorithm - a straightforward one. Precalculate all the target numbers, in this case 223456, 133456, 124456, 123556, 123466, 123457. Now pass the array and if the number is NOT any of these, write it to another array. Alternatively if it is one of these numbers delete it(recommended if your data structure has O(1) remove)

share|improve this answer
I've posted a variation on this approach which doesn't need to do six comparisons for each input... – egrunin Nov 11 '10 at 17:39

Take all the numbers from the file to an arrayList, then:

take the number of threads as the number of digits

increment the first digit on the number in first thread, second in the second thread and then compare it with the rest of the numbers,

It would be fast as it will undergo by parallel processing...

share|improve this answer
Assuming a multi-core CPU, that is. – cdhowie Nov 11 '10 at 17:25
it works on any – Genius Nov 11 '10 at 17:26
This may also find target numbers multiple times in multiple threads. If the input number is 123456, the first digit and the third digit threads would hit on 224456. – Bill Carey Nov 11 '10 at 17:27
No, read it carefully, it would be done in one go, store the actual number in in int and change it in all the threads with diffrent increments to make the appropriate number. – Genius Nov 11 '10 at 17:31
@Genius: It will work on any, yes, but it will not be any faster on a single-core CPU than a non-threaded approach. (Unless the CPU also supports hyperthreading.) – cdhowie Nov 11 '10 at 17:34
show 1 more comment

All the suggestions (so far) require six comparisons per input line, which is not necessary. The numbers are coming in as strings, so use string comparisons.

Start with @Armen Tsirunyan's idea:

Precalculate all the target numbers, in this case 223456, 133456, 124456, 123556, 123466, 123457.

But instead of single comparisons, make that into a string:

 string arg = "223456 133456 124456 123556 123466 123457";

Then read through the input (either from file or in memory). Pseudocode:

 foreach (string s in theBigListOfNumbers)
     if (arg.indexOf(s) == -1)
         print s;

This is just one comparison per input line, no dictionaries, maps, iterators, etc.

Edited to add:

In x86 instruction set processors (not just the Intel brand), substring searches like this are very fast. To search for a character within a string, for example, is just one machine instruction.

I'll have to ask others to weigh in on alternate architectures.

share|improve this answer
2  
It's only one comparison, but it has to compare every substring of length 6. Since your "arg" string is 41 characters, it has to run the string comparison (at most) 41-6 = 35 times per number. This is assuming the worst implementation. I'm not sure what the runtime of the indexOf function is. – thattolleyguy Nov 11 '10 at 17:50
Isn't it dependent on the implementation of indexOf? Intel processors may be very fast, but you're not guaranteed to be on an intel operator. Do you have any documentation on that? Sorry if that sounds hostile, just a relative newbie, trying to learn. – thattolleyguy Nov 11 '10 at 18:19
Even using x86 opcodes those string comparisions are most likely still slower then simply doing 6 comparisons (which could be written to use only one conditional jump for all comparisions so it would be pretty fast) – Grizzly Nov 11 '10 at 19:07

For starters, I would just read all the numbers into an array.

When you are finally done, rewrite the file.

share|improve this answer

It seems like the rule you're describing is for the target number abdcef you want to find all numbers that contain a+1, b+1, c+1, d+1, e+1, or f+1 in the appropriate place. You can do this in O(n) by looping over the lines in the file and comparing each of the six digits to the digit in the target number if no digits match, write the number to an output file.

share|improve this answer

This sounds like a potential case for a multidimensional array, and possibly also unsafe c# code so that you can use pointer math to iterate through such a large quantity of numbers.

I would have to dig into it further, but I would also probably use a Dictionary for non-linear lookups, if you are comparing numbers that aren't in sequence.

share|improve this answer

How about this. You process numbers one by one. Numbers will be stored in hash tables NumbersOK and NumbersNotOK.

  1. Take one number
  2. If it's not in NumbersNotOK place it in a Hash of NumbersOK
  3. Get it's variances of single number increments in hash - NumbersNotOK.
  4. Remove all of the NumbersOK members if they match any of the variances.
  5. Repeat from 1, untill end of file
  6. Save the NumbersOK to the file.

This way you'll pass the list just once. The hash table is made just for this kind of purposes and it'll be very fast (no expensive comparison methods).

This algorithm is not in full, as it doesn't handle when there are some numbers repeating, but it can be handled with some tweaking...

share|improve this answer

Read all your numbers from the file and store them in a map where the number is the key and a boolean is the value signifying that the value hasn't been deleted. (True means exists, false means deleted).

Then iterate through your keys. For each key, set the map to false for the values you would be deleting from the list.

Iterate through your list one more time and get all the keys where the value is true. This is the list of remaining numbers.

public List<int> FilterNumbers(string fileName)
{
    StreamReader sr = File.OpenTest(fileName);
    string s = "";
    Dictionary<int, bool> numbers = new Dictionary<int, bool>();
    while((s = sr.ReadLine()) != null)
    {
        int number = Int32.Parse(s);
        numbers.Add(number,true);
    }
    foreach(int number in numbers.Keys)
    {
        if(numbers[number])
        {
            if(numbers.ContainsKey(100000+number))
                numbers[100000+number]=false;
            if(numbers.ContainsKey(10000+number))
                numbers[10000+number]=false;
            if(numbers.ContainsKey(1000+number))
                numbers[1000+number]=false;
            if(numbers.ContainsKey(100+number))
                numbers[100+number]=false;
            if(numbers.ContainsKey(10+number))
                numbers[10+number]=false;
            if(numbers.ContainsKey(1+number))
                numbers[1+number]=false;
        }
    }

    List<int> validNumbers = new List<int>();
    foreach(int number in numbers.Keys)
    {
        validNumbers.Add(number);
    }
    return validNumbers;
}

This may need to be tested as I don't have a C# compiler on this computer and I'm a bit rusty. The algorithm will take a bit of memory bit it runs in linear time.

** EDIT ** This runs into problems whenever one of the numbers is 9. I'll update the code later.

share|improve this answer
I think I may have misunderstood the problem. Are we searching for multiple variations of multiple numbers or just multiple variations of a single number? Example, after we're done with 123456, do we move on to filter the remaining numbers on the next number in the file, or are we done? – thattolleyguy Nov 11 '10 at 17:55

Still sounds like a homework question... the fastest sort on a million numbers will be n log(n) that is 1000000log(1000000) that is 6*1000000 which is the same as comparing 6 numbers to each of the million numbers. So a direct comparison will be faster than sort and remove, because after sorting you still have to compare to remove. Unless, ofcourse, my calculations have entirely missed the target.

Something else comes to mind. When you pick up the number, read it as hex and not base 10. then maybe some bitwise operators may help somehow. Still thinking on what can be done using this. Will update if it works

EDIT: currently thinking on the lines of gray code. 123456 (our original number) and 223456 or 133456 will be off only by one digit and a gray code convertor will catch it fast. It's late night here, so if someone else finds this useful and can give a solution...

share|improve this answer
Sort all of the generated numbers... [123457,123466,123556,124456,133456,223456] then compare each number with first. If not equal, check if it is less than first. If yes, dont compare with the next. The reason I say sort is because a 9 will roll over to 0. I think this is the fastest you can get with a straight forward compare, assuming standard distribution of numbers. Are you expecting the numbers to be distributed any other way? that might help speed up the calculations. – Ravindra Sane Nov 11 '10 at 19:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.