196
votes
80answers
12k views
Interview question: f(f(n)) == -n
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 …
12
votes
8answers
1k 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 …
7
votes
4answers
329 views
Multiples of 10,100,1000,… C#
Hi..
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 = …
3
votes
3answers
74 views
Calculations of ranges of numbers in PHP
Hi, 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 …
3
votes
4answers
172 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 …
3
votes
8answers
885 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
{
…
3
votes
6answers
3k 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 …
2
votes
5answers
489 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 …
2
votes
8answers
582 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 …
2
votes
4answers
341 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 …
2
votes
3answers
180 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#?
1
vote
4answers
137 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.
…
1
vote
3answers
159 views
Sending int through socket in Java
What is the best possible way to send an int through a socket in Java? Right now I'm looking at
sockout.write((byte)( length >> 24 ));
sockout.write((byte)( (length << 8) >> 24 ));
…
1
vote
2answers
224 views
How are compilers’ integers put to memory and processed in the CPU?
I got the question in the interview.
I had a difficulty in answering it.
I was not sure where I should start.
Finally, I discussed how the question is related to compilers and to their construction.
…
1
vote
6answers
327 views
Which libraries for handling very large integers in languages without native support?
Various questions (like this, and this) ask about how to handle integer values exceeding the native types of a particular language.
Please reply here, with one response per language, recommendations …
