I want to separate the digits of an integer, say 12345, into an array of bytes {1,2,3,4,5}, but I want the most performance effective way to do that, because my program does that millions of times.
Any suggestions? Thanks.
|
6
|
I want to separate the digits of an integer, say 12345, into an array of bytes {1,2,3,4,5}, but I want the most performance effective way to do that, because my program does that millions of times. Any suggestions? Thanks.
|
||||||||||||||||||||
|
|
|
How about:
Note that this won't cope with negative numbers... do you need it to? EDIT: Here's a version which memoizes the results for under 10000, as suggested by Eric. If you can absolutely guarantee that you won't change the contents of the returned array, you could remove the
Note that this doesn't try to be thread-safe at the moment. You may need to add a memory barrier to make sure that the write to the memoized results isn't visible until the writes within the individual result are visible. I've given up trying to reason about these things unless I absolutely have to. I'm sure you can make it lock-free with effort, but you should really get someone very smart to do so if you really need to. EDIT: I've just realised that the "large" case can make use of the "small" case - split the large number into two small ones and use the memoised results. I'll give that a go after dinner and write a benchmark... EDIT: Okay, ready for a giant amount of code? I realised that for uniformly random numbers at least, you'll get "big" numbers much more often than small ones - so you need to optimise for that. Of course, that might not be the case for real data, but anyway... it means I now do my size tests in the opposite order, hoping for big numbers first. I've got a benchmark for the original code, the simple memoization, and then the extremely-unrolled code. Results (in ms):
Code:
|
||||||||||||||||||||
|
|
|
'Will' vs 'Does'? I'm a huge fan of optimizing code after it's wrote, profiled, and it's been determined to be the bottleneck. |
||||||||||||||
|
|
|
Millions of times isn't that much.
Note that this could be changed to cope with negative numbers if you change byte to sbyte and test for |
||||||||
|
|
|
convert integer to string and then use String.Chars[] |
||||||||||
|
|
|
If you can get by with leading zeros it is much easier.
EDIT: Here is a faster version. On my computer it tested faster than two of Jon Skeet's algorithms, except for his memoized version:
|
||||
|
|
|
1 + Math.Log10(num) will give the number of digits without any searching/looping:
Edit: Possibly prettier:
|
|||
|
|
|
|
A little loop unrolling perhaps?
Thanks above for the Log10 thingy.. ;) There's been some talk of benchmarking... I've fully unrolled the loops, and compared with the accepted memoized variant of Jons, and I get a consistently quicker time with this:-
It may be I've messed up somewhere - I don't have much time for fun and games, but I was timing this as 20% quicker. |
||||||||||||||
|
|
|
divide and mod tend to be slow operations. I wanted to find out if a solution using multiply and subtraction would be faster and it seems to be (on my computer):
I am passing in an array instead of allocating it every time to take the memory allocator and length out of the equation. This version will produce leading zeros if the array is longer than the number. Compared to a similarly converted version of Jon's example:
the no divide/mod version took about 50 more time to generate all the arrays up to a given number. I also tried using floats and it was only about 5-10% slower (the double version was quicker than the float version). Just because it was bothering me, here is an unrolled version which is just slightly faster again:
|
|||
|
|
|
|
Just for fun, here's a way to separate all the digits using just one C# statement. It works this way: the regular expression uses the string version of the number, splits apart its digits into a string array, and finally the outer ConvertAll method creates an int array from the string array.
Efficiency-wise?... I'm unsure compared to some of the other fast answers I see here. Somebody would have to test it. |
||||
|
|
|
I was going to suggest a similar approach to jdk's one, but without the regex split:
Or, simply the one below, if you don't really need the resulting array to be made of int's:
EDIT: see comments. |
||||
|
|
|
I haven't benchmarked this or anything, but I think this would be the simplest answer. Correct me if I'm wrong.
** EDIT ** Revised the function because exponents seem to be very expensive.
This benchmarks to around 775k/sec (for numbers 9 digits or less). Drop the maximum digits to 7 and it benches at 885k/s. 5 digits at 1.1m/s. |
|||
|
|
|
The allocation of a new int[] every time takes up a significant amount of the time according to my testing. If you know these values will be used once and thrown away before the next call, you could instead reuse a static array for a significant speed improvement:
to keep the code small, I am returning trailing zero's for smaller numbers, but this could easily be changed by using 9 different static arrays instead (or an array of arrays). Alternatively, 2 seperate ConvertToArrayOfDigits methods could be provided, one taking a precreated int array as an extra parameter, and one without that which creates the resulting buffer prior to calling the first method.
This way, it would be up to the caller to potentially create a static reusable buffer if their usecase allows for it. |
||
|
|