Tagged Questions
An integer is a whole number negative, positive, or zero. i.e ... -2, -1, 0, 1, 2 ... Use this tag for questions about using, storing or manipulating integers.
89
votes
20answers
60k 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?
60
votes
21answers
69k views
56
votes
8answers
10k views
Workarounds for JavaScript parseInt octal bug
Try executing the following in JavaScript:
parseInt('01'); //equals 1
parseInt('02'); //equals 2
parseInt('03'); //equals 3
parseInt('04'); //equals 4
parseInt('05'); //equals 5
parseInt('06'); ...
44
votes
13answers
80k 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 ...
39
votes
5answers
2k views
C++ performance challenge: integer to std::string conversion
Can anyone beat the performance of my integer to std::string code, linked below?
There are already several questions that explain how to convert an integer into a std::string in C++, such as this ...
39
votes
20answers
34k 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.
33
votes
8answers
147k views
33
votes
11answers
24k views
Signed versus UnSigned Integers
Am I correct to say the difference between a signed and unsigned integer is:
UnSigned can hold a larger positive value, and no negative value.
Unsigned uses the leading bit, while the signed version ...
32
votes
8answers
1k views
Should I use uint in C# for values that can't be negative?
I have just tried implementing a class where numerous length/count properties, etc. are uint instead of int. However, while doing so I noticed that it's actually painful to do so, like as if no one ...
30
votes
9answers
7k 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? ...
25
votes
11answers
18k views
How to convert an IPv4 address into a integer in C#?
I was going to attempt to write this function myself but I thought that someone on SO might know the answer :)
I'm basically looking for a function that will convert a standard IPv4 address into an ...
24
votes
5answers
10k views
how can I force division to be floating point in Python?
I have two integer values a and b, but I need their ratio in floating point. I know that a<b and I want to calculate a/b, so if I use integer division I'll always get 0 with a remainder of a.
How ...
24
votes
15answers
52k 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 ...
22
votes
7answers
1k views
Integer.parseInt(“1”) ++ - why doesn't this work in java?
I've got the following line of code:
suffix = suffix.isEmpty() ? "1" : Integer.toString(Integer.parseInt(suffix)+1);
in a block where suffix has already been declared as an empty String (""). The ...
21
votes
3answers
262 views
What happens behind the scenes when python adds small ints?
I was fiddling around with id recently and realized that (c?)Python does something quite sensible: it ensures that small ints always have the same id.
>>> a, b, c, d, e = 1, 2, 3, 4, 5
...
20
votes
9answers
656 views
Does a range of integers contain at least one perfect square?
Given two integers a and b, is there an efficient way to test whether there is another integer n such that a ≤ n2 < b?
I do not need to know n, only whether at least one such n ...
20
votes
5answers
8k views
How do I Convert a String into an Integer in JavaScript?
How do I convert a string into an integer in JavaScript?
Is it possible to do this automatically, or do I have to write a subroutine to do it manually?
20
votes
6answers
41k views
C++ convert hex string to signed integer
I want to convert a hex string to a 32 bit signed integer in C++.
So, for example, I have the hex string "fffefffe". The binary representation of this is 11111111111111101111111111111110. The ...
19
votes
5answers
516 views
why this would result in long integer overflow
I checked the document that long= int64 has range more than 900,000,000,000,000
Here is my code:
int r = 99;
long test1 = r*r*r*r*r;
at runtime it gives me 919,965,907 instead of the ...
18
votes
9answers
2k views
Why is abs(0x80000000) == 0x80000000?
I just started reading Hacker's Delight and it defines abs(-231) as -231. Why is that?
I tried printf("%x", abs(0x80000000)) on a few different systems and I get back 0x80000000 on all of them.
18
votes
8answers
3k 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 ...
18
votes
7answers
4k 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 ...
17
votes
6answers
6k views
Parse v. TryParse
What is the difference between parse and TryParse?
int number = int.Parse(textBoxNumber.Text);
// The Try-Parse Method
int.TryParse(textBoxNumber.Text, out number);
Is there some form of ...
16
votes
3answers
536 views
Why is an int in OCaml only 31 bits?
Haven't seen this "feature" anywhere else. I know that the 32nd bit is used for garbage collection. But why is it that way only for ints and not for the other basic types?
16
votes
4answers
1k views
Overuse of fromIntegral in Haskell
Whenever I write a function using doubles and integers, I find this problem where I am constantly having to use 'fromIntegral' everywhere in my function. For example:
import Data.List
roundDouble
...
16
votes
8answers
1k 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 ...
15
votes
4answers
517 views
Why is == true for some Integer objects? [closed]
Possible Duplicate:
Integer wrapper objects share the same instances only within the value 127?
I have copied the following program snippet from the Khalid Mughal SCJP, but I am unable to
...
15
votes
5answers
11k views
How do you round UP a number in Python?
This problem is killing me. How does one roundup a number UP in Python?
I tried round(number) but it round the number down. Example:
round(2.3) = 2.0 and not 3, what I would like
The I tried ...
15
votes
5answers
15k views
Java integer to byte array
I got an integer: 1695609641
when I use method:
String hex = Integer.toHexString(1695609641);
system.out.println(hex);
gives:
6510f329
but I want a byte array:
byte[] bytearray = new byte[] ...
15
votes
2answers
5k views
Is there a view for inputing integers in Android?
I'm looking for something like the individual parts of the date picker dialog. A view that allows you to input integers (and only integers) that you can limit (between 1 and 10 for example), where you ...
15
votes
3answers
19k views
c++ integer->std::string conversion. Simple function?
Problem: I have an integer; this integer needs to be converted to a stl::string type.
In the past, I've used stringstream to do a conversion, and that's just kind of cumbersome. I know the C way is ...
14
votes
1answer
229 views
`Integer` vs `Int64` vs `Word64`
I have some data which can be represented by an unsigned Integral type and its biggest value requires 52 bits. AFAIK only Integer, Int64 and Word64 satisfy these requirements.
All the information I ...
14
votes
3answers
368 views
Integer Overflow - Why not [closed]
Possible Duplicate:
Addition of two chars produces int
Given the following C++ code:
unsigned char a = 200;
unsigned char b = 100;
unsigned char c = (a + b) / 2;
The output is 150 as ...
14
votes
12answers
5k 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++?
14
votes
8answers
21k views
How to parse a month name (string) to an integer for comparison in C#?
I need to be able to compare some month names I have in an array.
It would be nice if there were some direct way like:
Month.toInt("January") > Month.toInt("May")
My Google searching seems to ...
13
votes
2answers
158 views
Why are the results of integer promotion different?
Please look at my test code:
#include <stdlib.h>
#include <stdio.h>
#define PRINT_COMPARE_RESULT(a, b) \
if (a > b) { \
printf( #a " > " #b "\n"); \
} \
else ...
13
votes
17answers
2k views
Why can't I inherit from int in C++?
I'd love to be able to do this:
class myInt : public int
{
};
Why can't I ?
Why would I want to? Stronger typing. For example, I could define two classes intA and intB, which let me do intA+intA ...
13
votes
4answers
12k views
Why don't I declare NSInteger with a *
I'm trying my hand at the iPhone course from Stanford on iTunes U and I'm a bit confused about pointers. In the first assignment, I tried doing something like this
NSString *processName = ...
13
votes
4answers
16k views
How can I convert a character to a integer in Python, and viceversa?
I want to get, given a character, its ascii value.
For example, for the character 'a', I want to get 97,
and viceversa.
Thanks,
Manuel
13
votes
4answers
3k views
Populating a list of integers in .NET
I need a list of integers from 1 to x where x is set by the user. I could build it with a for loop eg assuming x is an integer set previously:
List<int> iList = new List<int>();
for (int ...
12
votes
3answers
297 views
fastest integer sort implementation for 200-300 bit integers?
What is the fastest integer sort implementation for 200-300 bit sized integers? Exact int size is fixed; I have up to 2 gigabytes with such integers (all in RAM).
I hear that it is possible to sort ...
12
votes
3answers
384 views
Is there a practical way of using natural numbers in Haskell?
I'm learning Haskell and would like to impose the use of positive integers (1,2,3, ...) in some constructors, but I only seem to find the 'Int' and 'Integer' datatypes.
I could use the canonical
...
12
votes
2answers
351 views
Why does uint16_t make a difference here?
volatile uint16_t r;
unsigned char poly = 0x07;
unsigned char c = 0;
r = (c << 8) ^ poly;
When the code is compiled with gcc on Linux, r is 7.
When the same code is compiled by Microchip C18, ...
12
votes
9answers
709 views
What's a good way to check if a double is an integer in C#?
I have a variable of type double and am wanting to check whether it is an integer.
At the moment I have
public bool CheckIfInteger(double number)
{
return number.ToString().Contains(".") == ...
12
votes
6answers
1k views
C++ Thread Safe Integer
I have currently created a C++ class for a thread safe integer which simply stores an integer privately and has public get a set functions which use a boost::mutex to ensure that only one change at a ...
12
votes
2answers
34k views
Converting a string to an integer (Android)
I'm not 100% on how to do this so i'm asking...
May seem stupid but...
How do I convert a string into an integer?
Background info:
I have a textbox I have the user enter a number into...
it then:
...
12
votes
3answers
1k views
Why doesn't Java throw an Exception when dividing by 0.0?
I have code to calculate the percentage difference between 2 numbers - (oldNum - newNum) / oldNum * 100; - where both of the numbers are doubles. I expected to have to add some sort of checking / ...
12
votes
5answers
13k views
Python: Check if a string represents an int, Without using Try/Except?
Is there any way to tell whether a string represents an integer (e.g., '3', '-17' but not '3.14' or 'asfasfas') Without using a try/except mechanism?
is_int('3.14') = False
is_int('-7') = True
...
12
votes
10answers
2k 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, ...
11
votes
4answers
195 views
Find a single integer that occurs with even frequency in a given array of ints when all others occur odd with frequency
This is an interview question.
Given an array of integers, find the single integer value in the array which occurs with even frequency. All integers will be positive. All other numbers occur odd ...