active questions tagged integers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T04:34:41Z http://stackoverflow.com/feeds/tag/integers http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839693/which-languages-have-integers-with-limit-and-which-without-limit 0 Which languages have integers with limit and which without limit? [closed] Juanjo Conti 2009-12-03T12:51:54Z 2009-12-03T13:08:55Z <p>I know that Python have integers without limit and C integers with limit. Which other languages fall in this two categories?</p> http://stackoverflow.com/questions/1817005/calculations-of-ranges-of-numbers-in-php 3 Calculations of ranges of numbers in PHP Bruno De Barros 2009-11-29T22:29:52Z 2009-11-30T13:50:05Z <p>Hi, and first of all, thank you for taking the time to read my question.</p> <p>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 (for example, 1000 and 2000), and I have an array of pairs of numbers:</p> <pre><code>$pairs = array( array(800, 1100), array(1500, 1600), array(1900, 2100) ) </code></pre> <p>What I am trying to find, is how to get the ranges not covered by the number pairs, between 1000 and 2000. In this example, 1000-1100 is covered by array(800, 1100), 1500-1600 is covered by array(1500, 1600) and 1900-2000 is covered by array(1900, 2100), which leaves me with 1101-1499 and 1599-1899 left to cover. I hope I am being clear enough.</p> <p>What I am wondering is how I would make PHP return to me an array of the ranges not covered by the $pairs variable. In this example it would return:</p> <pre><code>array( array(1101, 1499), array(1599, 1899) ) </code></pre> <p>Do you have any idea what would be the best way to do this?</p> <p>Thank you in advance.</p> http://stackoverflow.com/questions/1815367/multiplication-of-large-numbers-how-to-catch-overflow 3 multiplication of large numbers, how to catch overflow Ben 2009-11-29T12:14:59Z 2009-11-30T07:20:47Z <p>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 :</p> <p>Let say I have two 64 bits integers declared like this :</p> <pre><code>uint64_t a = xxx, b = yyy; </code></pre> <p>When I do <code>a*b</code>, how can I detect if the operation result in an overflow and in this case store the carry somewhere ?</p> <p>Please note that I don't what the use any large-number library since I have constraints on the way I store the numbers.</p> <p>Thanks</p> http://stackoverflow.com/questions/731832/interview-question-ffn-n 196 Interview question: f(f(n)) == -n Hrvoje Prgeša 2009-04-08T21:04:18Z 2009-11-26T14:25:49Z <p>A question I got on my last interview:</p> <blockquote> <p>Design a function <code>f</code>, such that:</p> <pre><code>f(f(n)) == -n </code></pre> <p>Where <code>n</code> is a 32 bit <strong>signed integer</strong>; you can't use complex numbers arithmetic.</p> <p>If you can't design such a function for the whole range of numbers, design it for the largest range possible.</p> </blockquote> <p>Any ideas?</p> http://stackoverflow.com/questions/1743023/how-to-handle-facebooks-new-uid-sizes 1 How to handle Facebooks new UID sizes? Marco 2009-11-16T15:47:13Z 2009-11-16T18:12:18Z <p>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 (<code>100000XXXXXXXXX</code>) that seems to big for php to handle. </p> <p>Saving the number in the database results in the same value (<code>2147483647</code>). I'm guessing this is also PHPs fault, as I would believe the uid would fit in an unsigned bigint?</p> <p>I'm not quite sure where to go from here, any suggestions?</p> http://stackoverflow.com/questions/1728392/negative-integers-to-percentage 0 Negative integers to percentage Bravo Charlie 2009-11-13T10:28:47Z 2009-11-13T14:00:01Z <p>I have a lot of files with data to convert to percentages using basic math functions:</p> <pre><code>&lt;param id="1" name="otb" value="0.160"/&gt; &lt;param id="2" name="blm" value="-0.210"/&gt; &lt;param id="3" name="mep" value="-0.010"/&gt; &lt;param id="4" name="plc" value="-0.100"/&gt; </code></pre> <p>Each id get's it's own equation:</p> <ol> <li>(n-(-.3))/2.3*100</li> <li>(n-(-.8))/3.3*100</li> <li>(n-(-.5))/1.5*100</li> <li>(n-(.1))/1.1*100</li> </ol> <p>So I get:</p> <p>otb=8 blm=20 mep=24 plc=0</p> <p>What would be a good way to run all these files through... regex and php? Any quick and dirty code out there? :D</p> http://stackoverflow.com/questions/1717304/the-right-way-in-sql-to-deal-with-a-difference-between-no-value-and-a-zero-value 0 The right way in SQL to deal with a difference between no value and a zero value in an INT datatype field jerrygarciuh 2009-11-11T18:52:44Z 2009-11-11T18:54:07Z <p>Hello,</p> <p>I was having issues with an INT field where there may be no value, a zero value, or an integer above zero and since</p> <pre><code>SELECT foo FROM bar where foo = '' </code></pre> <p>evaluates identically to </p> <pre><code>SELECT foo FROM bar where foo = 0 </code></pre> <p>I redefined foo like to foo INT(11) NULL so that rows where no value for foo is supplied do not get selected by either foo = 0 or foo = '' but only by foo IS NULL</p> <p>Is this a Good Way to deal with a difference between no value and a zero value?</p> <p>TIA</p> <p>JG</p> http://stackoverflow.com/questions/430346/why-doesnt-java-support-unsigned-ints 12 Why doesn't Java support unsigned ints? dsimcha 2009-01-10T01:35:33Z 2009-10-12T07:20:10Z <p>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 input. Furthermore, using unsigned integers can be a form of self-documentation, as they indicate that the value that the unsigned int was intended to hold is never supposed to be negative. Lastly, in some cases, unsigned integers can be more efficient for certain operations, such as division. What's the downside to including these?</p> http://stackoverflow.com/questions/1436942/sending-int-through-socket-in-java 1 Sending int through socket in Java unknown (google) 2009-09-17T06:01:37Z 2009-09-17T06:20:53Z <p>What is the best possible way to send an int through a socket in Java? Right now I'm looking at </p> <pre><code>sockout.write((byte)( length &gt;&gt; 24 )); sockout.write((byte)( (length &lt;&lt; 8) &gt;&gt; 24 )); sockout.write((byte)( (length &lt;&lt; 16) &gt;&gt; 24 )); sockout.write((byte)( (length &lt;&lt; 24) &gt;&gt; 24 )); </code></pre> <p>and then trying to rebuild the int from bytes on the other side, but it doesn't seem to work. Any ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1433190/multiples-of-10-100-1000-c 7 Multiples of 10,100,1000,... C# ssal 2009-09-16T14:05:58Z 2009-09-16T14:42:15Z <p>Hi.. </p> <p>I want an integer to be multiples of 10,100,1000 and so on... </p> <p>For eg double val = 35 then I want int 40<br /> val = 357 then I want int val = 400<br /> val = 245,567 then I want int val = 300,000<br /> val = 245,567.986 then also I want int = 300,000 </p> <p>Is there anything in C# that can help in generating these integer </p> <p>Basic logic that I can think is : Extract the first integer , add 1 to it. Count the total number of digits and add zeros (totalno -1 ). </p> <p>Is there any better way ? </p> <p>I want to assign these values to the chart axis. I am trying to dynamically create the axis label values based on datapoints of the charts. </p> http://stackoverflow.com/questions/1321137/convert-string-containing-several-numbers-into-integers 0 Convert String containing several numbers into integers rohanbk 2009-08-24T08:32:38Z 2009-08-26T09:28:13Z <p>I realize that this question may have been asked several times in the past, but I am going to continue regardless.</p> <p>I have a program that is going to get a string of numbers from keyboard input. The numbers will always be in the form "66 33 9" Essentially, every number is separated with a space, and the user input will always contain a different amount of numbers.</p> <p>I'm aware that using 'sscanf' would work if the amount of numbers in every user-entered string was constant, but this is not the case for me. Also, because I'm new to C++, I'd prefer dealing with 'string' variables rather than arrays of chars.</p> http://stackoverflow.com/questions/879375/how-can-i-remove-the-leading-zeroes-from-an-integer-generated-by-a-loop-and-store 0 How can I remove the leading zeroes from an integer generated by a loop and store it as an array? noob09 2009-05-18T19:32:17Z 2009-05-19T02:30:37Z <p>I have a <code>for</code> loop generating integers. </p> <p>For instance:</p> <pre><code>for (int i=300; i&gt;200; i--) {(somefunction)*i=n; cout&lt;&lt;n; } </code></pre> <p>This produces an output on the screen like this:</p> <pre><code>f=00000000000100023; </code></pre> <p>I want to store the 100023 part of this number (i.e just ignore all the zeros before the non zero numbers start but then keeping the zeros which follow) as an array.</p> <p>Like this:</p> <pre><code>array[0]=1; array[1]=0; array[2]=0; array[3]=0; array[4]=2; array[5]=3; </code></pre> <p>How would I go about achieving this?</p> http://stackoverflow.com/questions/124332/c-handling-very-large-integers 1 C++ handling very large integers Tomek 2008-09-23T22:32:27Z 2009-05-18T19:26:45Z <p>Hey everyone,</p> <p>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> <p>P = C^d % n = 62^65 % 133</p> <p>Now that is really the only calculations that ill be doing. I have tried using Matt McCutchen's BigInteger Library, but I am getting a lot of compiler errors during Linking.</p> <p>(stuff like: encryption.o(.text+0x187):encryption.cpp: undefined reference to `BigInteger::BigInteger(int)'</p> <p>encryption.o(.text+0x302):encryption.cpp: undefined reference to `operator&lt;&lt;(std::ostream&amp;, BigInteger const&amp;)'</p> <p>encryption.o(.text$<em>ZNK10BigIntegermlERKS</em>[BigInteger::operator*(BigInteger const&amp;) const]+0x63):encryption.cpp: undefined reference to `BigInteger::multiply(BigInteger const&amp;, BigInteger const&amp;)'</p> <p>So I was wondering what would be the best way to go about handling the really big integers that come out of the RSA Algorithm.</p> <p>I heard that a possibility would be to declare your variables as a double long?</p> <p>so...</p> <p>long long decryptedCharacter;</p> <p>but im not sure exactly how big of an integer that can store</p> <p>Thanks in advnace,</p> <p>Tomek</p> http://stackoverflow.com/questions/867393/how-do-languages-such-as-python-overcome-cs-integral-data-limits 2 How do languages such as Python overcome C's Integral data limits? Amit 2009-05-15T07:26:49Z 2009-05-18T06:43:19Z <p>While doing some random experimentation with a factorial program in C, Python and Scheme. I came across this fact:</p> <p>In C, using 'unsigned long long' data type, the largest factorial I can print is of 65. which is '9223372036854775808' that is 19 digits as specified <a href="http://en.wikipedia.org/wiki/Integer%5F%28computer%5Fscience%29#Common%5Fintegral%5Fdata%5Ftypes" rel="nofollow">here</a>.</p> <p>In Python, I can find the factorial of a number as large as 999 which consists of a large number of digits, much more than 19. </p> <p>How does CPython achieve this? Does it use a data type like '<a href="http://en.wikipedia.org/wiki/Integer%5F%28computer%5Fscience%29#Common%5Fintegral%5Fdata%5Ftypes" rel="nofollow">octaword</a>' ? </p> <p>I might be missing some fundamental facts here. So, I would appreciate some insights and/or references to read. Thanks!</p> <p>UPDATE: Thank you all for the explanation. Does that means, CPython is using the GNU Multi-precision library (or some other similar library)? </p> <p>UPDATE 2: I am looking for Python's 'bignum' implementation in the sources. Where exactly it is? Its here at <a href="http://svn.python.org/view/python/trunk/Objects/longobject.c?view=markup" rel="nofollow">http://svn.python.org/view/python/trunk/Objects/longobject.c?view=markup</a>. Thanks Baishampayan.</p> http://stackoverflow.com/questions/831111/parsing-a-string-in-c 0 Parsing a string in C++ Meir Davis 2009-05-06T18:49:04Z 2009-05-07T04:16:55Z <p>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.</p> <p>The string is formatted as follows: |vertex list|Edges list|<br /> e.g. |1,2,3,4,15|(1->2),(3->2),(4->15)|</p> <p>The idea is that the constructor will take the values from the string and then know to perform the following actions (inserting the vertexes into the vertex list and then inserting the edges into the edges list):</p> <p>addVertex(1)<br /> addVertex(2)<br /> addVertex(3)<br /> addVertex(4)<br /> addVertex(15)<br /> addEdge(1,2)<br /> addEdge(3,2)<br /> addEdge(4,15) </p> <p>I would have just made a couple of "for" loops to scan the string, but I don't know what to do about double(or more) digit numbers. I'm starting to imagine all sorts of seriously complicated for loops and I'm wondering if anyone here could share with me any more intelligent ways to extract and use this data.</p> http://stackoverflow.com/questions/744743/how-are-compilers-integers-put-to-memory-and-processed-in-the-cpu 1 How are compilers' integers put to memory and processed in the CPU? Masi 2009-04-13T17:43:21Z 2009-04-13T17:55:56Z <p>I got the question in the interview.</p> <p>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.</p> <p>I was not sure what "compilers' integers" mean exactly. It seems to me now that the word compiler was to confuse candidates. </p> <p><strong>How would you answer to the question in 5 minutes?</strong></p> http://stackoverflow.com/questions/707370/clean-efficient-algorithm-for-wrapping-integers-in-c 2 Clean, efficient algorithm for wrapping integers in C++ Eddie Parker 2009-04-01T21:18:35Z 2009-04-07T06:19:15Z <pre><code>/** * 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 const kUpperBound) { // Suggest an implementation? } </code></pre> http://stackoverflow.com/questions/648021/how-to-use-a-bitwise-operator-to-pass-multiple-integer-values-into-a-function-for 3 How to use a bitwise operator to pass multiple Integer values into a function for Java? AtariPete 2009-03-15T15:52:20Z 2009-03-16T01:31:01Z <p>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. </p> <p>For example:</p> <pre><code>public class Example { public class Values { public static final int ONE = 0x7f020000; public static final int TWO = 0x7f020001; public static final int THREE = 0x7f020002; public static final int FOUR = 0x7f020003; public static final int FIVE = 0x7f020004; } public static void main(String [] args) { // should evaluate just Values.ONE Example.multiValueExample(Values.ONE); // should evalueate just values Values.ONE, Values.THREE, Values.FIVE Example.multiValueExample(Values.ONE | Values.THREE | Values.FIVE); // should evalueate just values Values.TWO , Values.FIVE Example.multiValueExample(Values.TWO | Values.FIVE); } public static void multiValueExample(int values){ // Logic that properly evaluates bitwise values ... } } </code></pre> <p>So what logic should exist in multiValueExample for me to properly evaluate multiple int values being passed in using the bitwise operator? </p> http://stackoverflow.com/questions/579310/formatting-long-numbers-as-strings-in-python 2 formatting long numbers as strings in python photographer 2009-02-23T20:55:58Z 2009-02-23T21:12:37Z <p>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?</p> <p>I'd like to show 7436313 as 7.44M, and 2345 as 2,34K.</p> <p>Is there some % string formatting operator available for that? Or that could be done only by actually dividing by 1000 in a loop and constructing result string step by step?</p> http://stackoverflow.com/questions/406700/performance-comparisons-betweeen-enum-evaluations-and-ints 2 Performance comparisons betweeen enum evaluations and ints Adam Naylor 2009-01-02T12:45:54Z 2009-01-03T11:04:47Z <p>Would there be difference in speed between<br/></p> <pre><code>if (myInt == CONST_STATE1) </code></pre> <p>and</p> <pre><code>if (myEnum == myENUM.State1) </code></pre> <p>in c#?</p> http://stackoverflow.com/questions/377977/which-libraries-for-handling-very-large-integers-in-languages-without-native-supp 1 Which libraries for handling very large integers in languages without native support? Alnitak 2008-12-18T14:22:35Z 2008-12-23T22:37:16Z <p>Various questions (like <a href="http://stackoverflow.com/questions/377361/sum-of-the-digits-of-the-number-21000">this</a>, and <a href="http://stackoverflow.com/questions/310276/how-to-handle-arbitrarily-large-integers">this</a>) ask about how to handle integer values exceeding the native types of a particular language.</p> <p>Please reply here, with one response per language, recommendations for libraries designed for handling very large numbers in various languages.</p> <p>Where languages have built-in support for large numbers that's also noteworthy.</p> <p><strong>EDIT</strong>: for each language (or library) please show a code example of</p> <ol> <li>how the library is imported / loaded</li> <li>how such integer values declared</li> <li>a sample operation on a pair of such values (i.e. builtin operator vs method call, etc)</li> </ol> http://stackoverflow.com/questions/276909/how-do-test-i-if-an-array-contains-a-pair-of-numbers-whose-product-is-odd 1 How do test I if an array contains a pair of numbers whose product is odd? John 2008-11-10T02:26:14Z 2008-11-17T03:14:42Z <p>Yes, this is a function out of a textbook. No, this is not homework--I'm just trying to learn, so please no "do your own homework comments."</p> <p>The question: write a function that takes an array of integers and returns true if their exists a pair of numbers whose product is odd.</p> <p>What I want to know is:</p> <p>What are the properties of odd integers? And of course, how do you write this function in Java? Also, maybe a short explanation of how you went about formulating an algorithm for the actual implementation. </p> http://stackoverflow.com/questions/270263/converting-to-int16-int32-int64-how-do-you-know-which-one-to-choose 3 Converting to int16, int32, int64 - how do you know which one to choose? Vidar 2008-11-06T21:02:07Z 2008-11-07T19:04:38Z <p>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 when you don't know how big your retrieved number will be? </p>