Is there an inexpensive way to concatenate integers in csharp?
Example: 1039 & 7056 = 10397056
|
1
|
Is there an inexpensive way to concatenate integers in csharp? Example: 1039 & 7056 = 10397056
|
||||||||||||||
|
|
|
If you can find a situation where this is expensive enough to cause any concern, I'll be very impressed:
Or, if you want it to be a little more ".NET-ish":
int.Parse is not an expensive operation. Spend your time worrying about network I/O and O^N regexes. Other notes: the overhead of instantiating StringBuilder means there's no point if you're only doing a few concatenations. And very importantly - if you are planning to turn this back into an integer, keep in mind it's limited to ~2,000,000,000. Concatenating numbers gets very large very quickly, and possibly well beyond the capacity of a 32-bit int. (signed of course). |
||||||||||||||
|
|
|
how about this?
|
||
|
|
|
|
I don't think you can get any simpler than this:
which has no memory allocations, string conversions or multiplies; or maybe:
If you want to concatenate two binary numbers:
Skizz |
||||||||
|
|
|
Edit: Guess I wasn't the first with this solution! |
||
|
|
|
|
Not really inpexpensive, but:
or
If you use this in a loop, I think I would use Option 1, which uses a StringBuilder internally. |
||
|
|
|
|
If you want to concatenate many ints to a String
|
||
|
|
|
|
inexpensive? String concatenation or formatted string is probably going to be considerably faster. Otherwise you can do something like:
provided first and second are integers. This is about the only way you'll do it not involving converting to a string and back, but I am extremely doubtful that it will be faster. |
||||
|
|
|
The "Mathy" and "No String" method follows:
Note that it may still be slow because of the Log10 call. |
|||
|
|
To output an integer or a string? Are we trying to optimize this?:
or this?:
|
|||
|
|
|
|
Edit Note: Fixes some mistypes. There are more type issues left. I'm just giving an outline of the answer The second method should actually be:
|
||||
|