187
votes
79answers
11k 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.
I …
7
votes
4answers
307 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 …
1
vote
3answers
113 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 << …
0
votes
9answers
325 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 k …
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 u …
2
votes
5answers
457 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 factoria …
0
votes
6answers
356 views
How can I remove the leading zeroes from an integer generated by a loop and store it as an array?
I have a for loop generating integers.
For instance:
for (int i=300; i>200; i--)
{(somefunction)*i=n;
cout<<n;
}
This produces an output on the screen lik …
0
votes
7answers
372 views
Parsing a string in C++
Hi,
I'm trying to make a constructor for a graph class that accepts a string as a
parameter and uses it to build the graph.
The string is formatted as follows: |vertex list|Edges …
1
vote
15answers
2k views
C++ handling very large integers
Hey everyone,
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 lik …
3
votes
8answers
765 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 …
2
votes
8answers
559 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 cons …
1
vote
2answers
222 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 …
2
votes
4answers
319 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 7436 …
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 …
2
votes
3answers
168 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#?
