Use this tag for questions about using, storing or manipulating integral values of all types and sizes, including concerns about overflow. Not for code that casually happens to use integers.
3
votes
1answer
45 views
Counting digits of numbers
Write a program that loops prompting for positive or zero integers of
data type long. Then the number of digits the integer consists of (in
decimal representation) should be printed to stdout. ...
1
vote
0answers
58 views
Forced and easy hton/ntoh conversion
Context:
When sending message across the network, the sender has to convert the message from host byte order to network byte order and the receiver has to do the the reverse - network order to host ...
1
vote
0answers
28 views
Wrapper for GMP in C++
I'm writing a C++ high precision library based on GMP, sample code(files which have to be added to project):
...
4
votes
1answer
49 views
Assembly 8086 program to input a 16-bit signed number (in string form) and output its binary equivalent
I'm working on an exercise using Assembly 8086 which inputs a number (in string form) then output the binary form. Here is what I did (tested on emu8086 by the way):
Convert the string to numeric ...
2
votes
0answers
23 views
Improved Van Emde Boas tree based map in Java
After working on Van Emde Boas tree -based map in Java, I came up with this code. I managed to fix the bugs and improve the performance by using internally primitive integers instead of wrapped ...
2
votes
3answers
71 views
Assembly x8086 (emu8086) - Display 32bits number on screen
this is my code (assembly x8086, not MIPS, and I'm using emu8086) to display a 32-bits number on screen. Of course the basic algorithm is as follows:
...
5
votes
2answers
119 views
Adding two Integers in an Array
I was wondering if I could get a second look at my program before I turn it in. The job was to code a program in java that adds two integers to an array gather the sum while displaying the integers ...
6
votes
2answers
85 views
Implementing String to int (atoi) in Java
The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus ...
4
votes
1answer
277 views
Integer to binary using an old-school way
I know I could achieve this using System.out.println(Integer.toBinaryString(num)); in Java. However, I wanted to do it this way.
...
11
votes
2answers
2k views
Create the English word for a number
I cobbled together a function from various sources that takes an integer and returns it as its respective English word formatted as a string. The function is as follows:
...
1
vote
0answers
34 views
Cookie Clicker esque game idea
I am making a cookie clicker type game as a small project, within Xcode, written in Swift. I have a been developing a function which will turn a Int64() into a 4 ...
3
votes
2answers
108 views
Hamming distance between numbers in JavaScript
In Leetcode it states that my runtime is only faster than 38% all of submitted JavaScript solutions. Is there anything I can change to make it more efficient?
...
0
votes
1answer
49 views
Scala implicit conversion to add methods to Int
I started learning Scala, and like most functional languages, things get messy pretty quickly for a beginner.
Here I have built a wrapper class for Ints so that I ...
5
votes
1answer
61 views
Format an Unsigned Byte to a Three ASCII Digits
I'm working on a game for the Atari VCS and have been dusting off my 30+ year old skills in writing MOS 6502 assembly language.
The VCS runs at 1.19 MHz and is based on a MOS 6507 chip with some ...
-5
votes
2answers
70 views
Finding the largest prime factor of a 12 digit number [closed]
I created this using C++ and this gives the largest prime factor of a number.But my problem is if I try to find the largest prime factor of a very large number (12 digit number) it gives an error or ...
11
votes
4answers
852 views
Convert a boxed integer to an nullable integer with potentially different type
Given a boxed integer (with a boxed short, int, ...) I want to convert it to an unboxed, nullable type instead. It should be ...
1
vote
0answers
45 views
Numeric parser for integers, big integers, and doubles
I have written the following numeric parser. It may not be as fast as Boost's lexical_cast, nor as convenient, but it does get the job done and it does look good. I'...
12
votes
3answers
870 views
Endianness conversion in C
I have written a simple C header for converting the endianness of short integers and long integers. It uses the GCC macro ...
4
votes
3answers
211 views
Convert a numeric string to number but without python's built in function
I'd like to get a code review and some insights of whether I chose a good way to do this. What would other, clever ways look like.
...
10
votes
3answers
1k views
Implementation of C Standard Library Function ntohl()
This is an implementation of ntohl() that I wrote as an exercise. ntohl() takes a uint32_t ...
4
votes
1answer
53 views
From a string of 3 numbers to 3 integers
I'm solving some puzzles to learn Rust. A problem I faced is to turn a string of 3 integers into 3 integers. I succeeded with the following example:
...
6
votes
1answer
45 views
Storing angles with overflow errors
Rather than checking if my angle is in the range of 0 to 2pi every time it gets set, I got the idea to store it as an unsigned short with 0xFFFF being +2pi, thus the standard overflow behavior for ...
4
votes
1answer
90 views
Enforcing correct input/output of integers
The problem:
Some types, like cstdint aliases or, at least purely theoretically, even std::size_t, may be (but don’t have to be)...
10
votes
3answers
512 views
Counting the number of “on” bits in an int
Here is some code I wrote as a solution to Programming Exercise 15.3 in Stephen Prata's C Primer Plus, 6th Edition. It is probably worth pointing out that the title of the chapter is Bit Fiddling. The ...
2
votes
1answer
68 views
Number representation for a calculator that works with very big numbers
I'm a beginner: I have learned concepts and features which I think I need in my project, but this is my first serious program and it is my internship project. I'm totally confused and need help to ...
3
votes
1answer
111 views
Maximum product of 3 integers in an int array using Python - follow up
This is a follow up to Maximum product of 3 integers in an int array using Python
Changes to the code include renamed variables for improved readability and I added more test cases.
...
3
votes
5answers
190 views
Maximum product of 3 integers in an int array using Python
This is an interview question from Interview Cake:
Given a list_of_ints, find the highest_product you can get from three of the integers.
The input list_of_ints will always have at least three ...
-2
votes
1answer
93 views
Construct: VarInt integer encoding
This code is part of the Construct library. Docstrings explain what the code is supposed to do.
...
1
vote
1answer
42 views
Using strtol() follow up
Link to original question: Successful use of strtol() in C
After getting excellent feedback from the code review community I attempted to redo my string to long conversion program! I believe I ...
3
votes
1answer
42 views
Program to determine ranges of char, short, int and long variables, both signed and unsigned
I wrote code to determinate ranges of char,short int and long variables,both signed and unsigned.Please help me to improve my code :) Here is the code:
...
10
votes
3answers
975 views
Successful use of strtol() in C
Attempted to use strtol() to parse a string into an integer and to output any appropriate error messages for failed conversions. How did I do? How could/should it ...
5
votes
1answer
631 views
Converting a bytearray into an integer
I am working on a program to decode MMS PDU files. They are binary files and I am reading them byte by byte and decoding each header value as I come to it.
One header value is the Date, and it's ...
5
votes
1answer
79 views
Integer-to-ASCII algorithm (x86 assembly)
This is my best effort at converting a 32 bit integer in EAX, to an 8 character ascii string (result in RDI). It will work ...
4
votes
3answers
106 views
Dividing Negative integer ranges
Context:
My project has a hand-rolled ORM (... yeah ... I know) ...
built around the MS DataSet objects that represent wrapped collections of rows of DBtables (... yeah ... I know) ...
and which ...
3
votes
2answers
97 views
Converting bits to decimal (integer) string is so slow
I am implementing myself a BigInteger class. It can natively handle very very big digits in very short time.
...
1
vote
2answers
52 views
Finding shortest sequences of integers whose product is larger than n
Here is the task:
For an integer n, return a list of the k length integers sequences whose product is larger than n but as close to n as possible (i.e. smallest larger than n number), and whose ...
1
vote
1answer
79 views
Translating binary data from a file into a very large base-ten integer
I'm making an experimental Java algorithm that translates binary data from a file into a (very large) base ten integer. I am using BigInteger since this number may ...
6
votes
2answers
71 views
Valid memory address in Python
I am looking for suggestions of improving this function to check whether a memory address is appropriate or not.
...
4
votes
2answers
61 views
Adding two binary-coded-decimal numbers
I want to make some VHDL code open source. But before I do, I want to make sure that it is as readable as possible. Things to improve upon could for example be naming and the use of comments.
The ...
4
votes
3answers
248 views
0
votes
0answers
42 views
Bit twiddling utils for Int and Long classes
I added some bit twiddling utils to Int and Long classes in Scala but I have highly duplicated code. Is there a way to DRY this?
...
7
votes
1answer
325 views
Variable length integer encoding in Java
I have coded up the variable length integer encoding aka VLQ in Java. It works with any base in (1, 128]. I've implemented the usual encode/decode methods and also ...
5
votes
2answers
66 views
Number class to add/compare different kinds of numbers
I am creating a Number class having Integer and Fraction derive class which add/compare different kinds of numbers. In addition, the caller need not needs to know ...
2
votes
2answers
42 views
Dividing a long (arbitrary-precision) number by an integer
As part of a (slightly) larger program, I needed to write a function that could take an arbitrarily large number and divide it by a small number. In this program, I will be dividing this number ...
0
votes
2answers
90 views
Convert NSInteger into NSString
This is my sample code to convert a integer into string.
Is it very costly to do the multiple loops of [NSMutableString stringWithFormat:..]?
I.e should I just use appendString and get the NSString ...
5
votes
2answers
519 views
itoa base function in C
This is a function that converts an integer value to a null-terminated string using the specified base and stores the result in a char array that I must allocate (...
2
votes
1answer
77 views
Avoiding “warning: Use of uninitialized value” when fetching an integer CGI parameter
I was using this code to fetch a CGI parameter:
$page = int(param('page'));
This sometimes results in:
...
4
votes
1answer
207 views
Normalize integer types to float range
I wrote two template functions to take an integer type and output a float in the given range. One function takes signed integers and the other takes unsigned ...
3
votes
2answers
77 views
Merge and sorting arrays of String and int in more efficient methods
Are there better methods for merge and sorting arrays of int and String in more efficient methods both time-complexity wise and ...
3
votes
1answer
189 views
Handling GetTickCount() overflow in timeouts
This is code which must run on XP, so no GetTickCount64, and which should correctly handle the value wrapping around after 49 days. Can it be improved?
...