Tagged Questions
This tag is for questions that deal with numbers that are integers [..., -2, -1, 0, 1, 2, ...] The tag "integer" is more commonly used
437
votes
100answers
26k views
Interview question: f(f(n)) == -n [closed]
A question I got on my last interview:
Design a function f, such that:
f(f(n)) == -n
Where n is a 32 bit signed integer; you can't use complex numbers arithmetic.
If you can't design ...
64
votes
10answers
14k views
Why doesn't Java support unsigned ints?
Why doesn't Java include support for unsigned integers? It seems to me to be an odd omission, given that they allow one to write code that is less likely to produce overflows on unexpectedly large ...
8
votes
5answers
3k views
How does Python manage int and long?
Does anybody know how Python manage internally int and long types?
Does it choose the right type dynamically?
What is the limit for an int?
I am using Python 2.6, Is is different with previous ...
7
votes
5answers
339 views
Setting ints to negative values using hexadecimal literals in C#
Is there any way to set an int to a negative value using a hexadecimal literal in C#? I checked the specification on Integer literals but it didn't mention anything.
For example:
int a = -1; ...
7
votes
4answers
1k views
Multiples of 10,100,1000,… C#
I want an integer to be multiples of 10,100,1000 and so on...
For eg double val = 35 then I want int 40
val = 357 then I want int val = 400
val = 245,567 then I want int val = 300,000
val = ...
7
votes
8answers
1k views
Convert String containing several numbers into integers
I realize that this question may have been asked several times in the past, but I am going to continue regardless.
I have a program that is going to get a string of numbers from keyboard input. The ...
6
votes
4answers
1k views
multiplication of large numbers, how to catch overflow
I am looking for an efficient (optionally standard, elegant and easy to implement) solution to multiply relatively large numbers,and store the result into one or several integers :
Let say I have two ...
6
votes
8answers
1k views
Clean, efficient algorithm for wrapping integers in C++
/**
* Returns a number between kLowerBound and kUpperBound
* e.g.: Wrap(-1, 0, 4); // Returns 4
* e.g.: Wrap(5, 0, 4); // Returns 0
*/
int Wrap(int const kX, int const kLowerBound, int ...
5
votes
4answers
946 views
Lua Integer type
i really need to have an integer type in Lua.
What i mean by integer type is a type defining the usual operators (/ * + etc) and behaving like an integer, the internal representation doesn't matter.
...
5
votes
4answers
2k views
What is the difference between “int” and “uint” / “long” and “ulong”?
I know about int and long (32-bit and 64-bit numbers), but what are uint and ulong?
5
votes
5answers
270 views
Which is faster in memory, ints or chars? And file-mapping or chunk reading?
Okay, so I've written a (rather unoptimized) program before to encode images to JPEGs, however, now I am working with MPEG-2 transport streams and the H.264 encoded video within them. Before I dive ...
5
votes
8answers
764 views
'long long int' is interpreted as 'long int'. How do I get round this?
I'm working on project involving c programming for my mathematics course at university.
I need to be able to handle large integers, larger than those that can be stored in a 'long int' datatype. So I ...
5
votes
2answers
438 views
How can I use arbitrary length integers in Perl?
Is there any standard way to use integers of arbitrary length in Perl? I am working on code that generates x64 assembly for tests, and I'm tired of manipulating 32 bits at a time.
I'm using Perl ...
5
votes
16answers
11k views
C++ handling very large integers
I am using the RSA Algorithm for encryption/decryption, and in order to decrypt the files you have to deal with some pretty big values. More specifically, things like
P = C^d % n
= 62^65 % 133
...
4
votes
2answers
71 views
String Formatting for Integers c#
I have a class that contains two strings, one that reflects the current year and one that represents some value. These fields are combined based on a format (uses string.format) that is specified by ...
4
votes
2answers
365 views
Is this Java program legitimate? /newbie
i'm doing some exercises in my Java book. I'm very new to programming. Therefore, notice (in the code) that i'm still on Chapter one. Now I already did everything, I just want a confirmation if this ...
4
votes
1answer
424 views
What is the difference between “18” and “0x18”? [closed]
Possible Duplicate:
What is 0x10 in decimal?
I notice that
Console.WriteLine(18);
writes 18, but
Console.WriteLine(0x18);
writes 24. What does this mean?
4
votes
3answers
2k views
Safest way to convert float to integer in python?
Python's math module contain handy functions like floor & ceil. These functions take a floating point number and return the nearest integer bellow or above it. However these functions return the ...
4
votes
7answers
182 views
4
votes
8answers
4k views
How to use a bitwise operator to pass multiple Integer values into a function for Java?
In application frameworks I keep seeing frameworks that allow you to pass in multiple Int values (generally used in place of an enum) into a function.
For example:
public class Example
{
...
4
votes
4answers
873 views
formatting long numbers as strings in python
What is an easy way in Python to format integers into strings representing thousands with K, and millions with M, and leaving just couple digits after comma?
I'd like to show 7436313 as 7.44M, and ...
4
votes
6answers
12k views
Converting to int16, int32, int64 - how do you know which one to choose?
I often have to convert a retreived value (usually as a string) - and then convert it to an int. But in C# (.Net) you have to choose either int16, int32 or int64 - how do you know which one to choose ...
3
votes
6answers
189 views
How to convert 8 17-bit integers into 17 8-bit integers efficiently
Okay, I have the following problem: I have a set of 8 (unsigned) numbers that are all 17bit (a.k.a. none of them are any bigger than 131071). Since 17bit numbers are annoying work work with (keeping ...
3
votes
2answers
231 views
JavaScript pack integers and calculate arbitrary precision float:
I need to do the following in JavaScript and so far been unable to find solutions to do it seamlessly:
Grab two integers in a specific order and pack them like Python's struct module.
This packed ...
3
votes
4answers
248 views
Integers greater than 4294967295 on 32-bit Windows
I'm trying to get to grips with C++ basics by building a simple arithmetic calculator application. Right now I'm trying to figure out how to make it capable of dealing with integers greater than ...
3
votes
5answers
321 views
how to calculate (a times b) divided by c only using 32-bit integer types even if a times b would not fit such a type
Consider the following as a reference implementation:
/* calculates (a * b) / c */
uint32_t muldiv(uint32_t a, uint32_t b, uint32_t c)
{
uint64_t x = a;
x = x * b;
x = x / c;
return ...
3
votes
8answers
239 views
C++ what does >> do
What does >> do in this situation?
int n = 500;
unsigned int max = n>>4;
cout << max;
It prints out 31.
What did it do to 500 to get it to 31?
3
votes
4answers
306 views
How do I convert a padded string to an integer while preserving padding?
I followed the great example at Python: Nicest way to pad zeroes to string (4)
but now I need to turn that padded string to a padded integer.
I tried:
list_padded=['0001101', '1100101', ...
3
votes
5answers
244 views
How to convert a number to a range of prices
I want to calculate the amount to charge my customers, when they buy licenses of my product.
I sell it in ranges of licenses:
1-10 : $50/user
11-20 : $40/user
21-30 : $30/user
31-50 : $20/user
So ...
3
votes
4answers
2k views
Fast multiplication of very large integers
How to multiply two very large numbers greater than 32 characters for example multiplication of 100! with 122! or 22^122 with 11^200 by the help of divide and conquer, do any body have java code or ...
3
votes
3answers
291 views
Calculations of ranges of numbers in PHP
and first of all, thank you for taking the time to read my question.
I am trying to write a script, and I've come across an issue which I am finding hard to solve. I am working with a pair of numbers ...
3
votes
3answers
522 views
Performance comparisons betweeen enum evaluations and ints
Would there be difference in speed between
if (myInt == CONST_STATE1)
and
if (myEnum == myENUM.State1)
in c#?
2
votes
6answers
47 views
Extracting Multiple Integers from a string in Javascript
I'm trying to set up my page so a user is able to type in a string like "25a89ss15s9 8 63" and it alerts the user "25, 89, 15, 9, 8, 63" and then further alerts the user "8, 9, 15, 25, 63, 89". So I'm ...
2
votes
1answer
55 views
Prevent NUMBER_GROUPING of integers in Django Template
Django has a nice feature to add thousands separators to integers in templates automatically, by setting NUMBER_GROUPING=True. The problem is that for some integers (for instance 'year') you do not ...
2
votes
4answers
545 views
Simple calculator program in Java. No. of integers read and Average
I have a task that requires me to print out the following quantities:
I need to write a java program that can calculate:
1. the number of integers read in
2. the average value—which need not be an ...
2
votes
3answers
165 views
Comparing Integers Using “And” in If Statements
This may sound dumb but I am stuck and I am having no luck searching on the internet what would be causing this to happen. I have a method that I want to check to make sure that both integers entered ...
2
votes
3answers
112 views
How much slower are strings containing numbers compared to numbers?
Say I want to take a number and return its digits as an array in Ruby.
For this specific purpose or for string functions and number functions in general, which is faster?
These are the algorithms I ...
2
votes
4answers
58 views
negative integers in binary
5 (decimal) in binary 00000101
-5 (two's complement) in binary 11111011
but 11111011 is also 251 (decimal)!
How does computer discern one from another??
How does it know whether it's -5 or ...
2
votes
5answers
173 views
C# check which integer is higher
I have two integers, int1 and int2. I want to check which one is the higher one. How can I do this the best? Is there an C#.NET function for this or do I have to write it myself?
Ofcource I can do ...
2
votes
3answers
3k views
Very Large Numbers in Java Without using java.math.BigInteger
How would I go about doing arithmetic, + - / * % !, with arbitrarily large integers without using java.math.BigInteger?
For instance, the factorial of 90 returns 0 in Java.
I would like to be able ...
2
votes
6answers
390 views
converting a list of integers into range in python
Is there something existing in python that can convert an increasing list of integers into a range list
E.g. given the set {0, 1, 2, 3, 4, 7, 8, 9, 11} I want to get { {0,4}, {7,9}, {11,11} }.
I ...
2
votes
1answer
125 views
Do I use integer or float?
This is the model in Google App Engine:
class Rep(db.Model):
mAUTHOR = db.UserProperty(auto_current_user=True)
mUNIQUE = db.StringProperty()
mCOUNT = db.IntegerProperty()
mDATE = ...
2
votes
2answers
134 views
unlimited (or very high) length integer storage
as a side project I am working on some home-baked prime generation problems, trying to write some different implementations as a means of teaching myself C and C++. Of course, the quickest way to ...
2
votes
3answers
838 views
A textbox class only accept integers in Java
I just want to do a textbox class only accepts integers..
I have done something, but ı think it's not enough.
Can anyone help me, please?
Thanks...
import java.awt.TextField
public class textbox ...
2
votes
3answers
157 views
How to use an int as an array of ints/bools?
I noticed while making a program that a lot of my int type variables never went above ten. I figure that because an int is 2 bytes at the shortest (1 if you count char), so I should be able to store ...
2
votes
4answers
7k views
convert an integer to a string as3
How do I convert an integer to a string value?
This must be easy. "Ya guys in SO are da best at explaining." I'm still working on these dumb counters.
NEED TO JOIN THIS TOGETHER
//My counter project ...
2
votes
4answers
1k views
How to handle Facebooks new UID sizes?
I've been working a little bit on a Facebook application, but when I registered a new user to test the friend interaction the new user got a uid (100000XXXXXXXXX) that seems to big for php to handle.
...
2
votes
5answers
1k views
How do languages such as Python overcome C's Integral data limits?
While doing some random experimentation with a factorial program in C, Python and Scheme. I came across this fact:
In C, using 'unsigned long long' data type, the largest factorial I can print is of ...
1
vote
5answers
93 views
Combining a pointer and an integer in a union
I have defined a union as follows:
union {
uintptr_t refcount;
struct slab_header *page;
} u;
The page pointer is guaranteed to be aligned on a page boundary (most probably 4096), and is never ...
1
vote
5answers
114 views
unused memory using 32 bit integer in C
I have the folowing struct of integers (32 bit environment):
struct rgb {
int r;
int g;
int b;
};
Am I correct in saying that, since rgb component values (0-255) only require 8-bits(1 ...