17
votes
20answers
6k views
How do I check if an integer is even or odd?
How best can I check if an integer is even or odd in C? I considered how I'd do this in Java, but I couldn't come up with an answer either. Thanks.
16
votes
12answers
2k views
What does “0 but true” mean in Perl?
Can someone explain what exactly the string "0 but true" means in Perl? As far as I understand, it equals zero in an integer comparison, but evaluates to true when used as a boolean. Is this correct? …
15
votes
13answers
6k views
Best algorithm to count the number of set bits in a 32-bit integer?
8 bits representing the number 7 look like this:
00000111
Three bits are set. What is the best algorithm to determine the number of set bits in a 32-bit integer?
13
votes
13answers
9k views
Java: Best way of converting List<Integer> to List<String>
I have a Java list of integers, List<Integer> and I'd like to convert all the integer objects into strings, thus finishing up with a new List<String>.
Naturally, I could create a new List …
11
votes
10answers
14k views
Alternative to itoa() for converting integer to string C++?
I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't …
11
votes
8answers
733 views
Why don’t languages raise errors on integer overflow by default?
In several modern programming languages (including C++, Java, and C#), the language allows integer overflow to occur at runtime without raising any kind of error condition.
For example, consider this …
11
votes
8answers
1k views
C# Convert Integers into Written Numbers
Is there an efficient method of converting an integer into the written numbers for example:
String Written = IntegerToWritten(21);
would return "Twenty One"
Is there any way of doing this that …
10
votes
8answers
481 views
Fastest way to calculate the decimal length of an integer? (.NET)
I have some code that does a lot of comparisons of 64-bit integers, however it must take into account the length of the number, as if it was formatted as a string. I can't change the calling code, …
8
votes
14answers
906 views
Efficient way to determine number of digits in an integer
What is a very efficient way of determining how many digits there are in an integer in C++?
8
votes
7answers
468 views
Why use !! when converting int to bool?
What can be a reason for converting an integer to a boolean in this way?
bool booleanValue = !!integerValue;
instead of just
bool booleanValue = integerValue;
All I know is that in VC++7 the …
8
votes
5answers
439 views
PHP: intval() equivalent for numbers >= 2147483647
Hello!
In PHP 5, I use intval() whenever I get numbers as an input. This way, I want to ensure that I get no strings or floating numbers. My input numbers should all be in whole numbers. But when I …
8
votes
11answers
678 views
Finding numerical substrings mathematically, without string comparison.
This originally was a problem I ran into at work, but is now something I'm just trying to solve for my own curiosity.
I want to find out if int 'a' contains the int 'b' in the most efficient way …
7
votes
5answers
236 views
.NET Optimized Int32
While reading through the 70-536 training kit, it states:
The runtime optimizes the performance
of 32-bit integer types (Int32), so
use those types for counters and other
frequently …
6
votes
6answers
203 views
Inconsistent behavior on java’s ==
Consider this code:
class test {
public static void main(String[] args) {
test inst_test = new test();
int i1 = 2000;
int i2 = 2000;
int i3 = 2;
int i4 = 2;
…
6
votes
9answers
455 views
Compress sorted integers
Hi!
I'm building a index which is just several sets of ordered 32 bit integers stored continuously in a binary file. The problem is that this file grows pretty large. I've been thinking of adding …
