In mathematical numeral systems, the radix or base is the number of unique digits, including zero, that a positional numeral system uses to represent numbers. For example, for the decimal system (the most common system in use today) the radix is ten, because it uses the ten digits from 0 through 9.

learn more… | top users | synonyms

-3
votes
6answers
75 views

Failed to parse int 3 in base 3

Strangest thing. I have this line int i = Integer.parseInt("3",3); But everytime i run it, i get a NumberFormatException.forInputString. Why? this is a simple base conversion. What is so special ...
-1
votes
1answer
47 views

How to parse any valid string to an integer using a specific radix?

Background Using Integer.parseInt(someIntString, radix) doesn't always work and might return NumberFormatException on some cases. I've checked the API and it says that such an exception will be ...
5
votes
1answer
63 views

inet_aton normalization of a IPv4 address

doesn't inet_aton suppose to normalize the dot version of the internet address? why do I get different output values for the example below? int main(){ char USER_IP[16] = "192.168.002.025"; ...
0
votes
1answer
74 views

Radix sorting (with Queue) help Python

Im trying to make a radix sorting metod with queues, but it doesn't sort properlly. For example it get this : [13, 18, 48, 50, 70, 94, 94, 95, 97, 3] (which isnt sorted) Help is appreciated! Thanks ...
0
votes
1answer
180 views

How to Radix Sort using Queues?

How do you properly radix sort a list using queues? I'm using Python 3x. This is my attempt using queues as bins since queues are a first-in-first-out data structure. from my_queue import Queue def ...
0
votes
0answers
52 views

Java ScriptEngine adds decimal point to numeric output regardless of numeric input type

I'm working with javax.script.ScriptEngine (and ScriptEngineManager, ScriptException, etc.). I've built an application, part of which must be able to evaluate mathematical (and sometimes other) ...
2
votes
1answer
211 views

(C) Radix Sort array from text file

I am attempting to get this queue-based radix sort to work, but I can't seem to figure out what's wrong with it. It uses a text file as the input medium and throws tons of errors when I try to compile ...
0
votes
1answer
127 views

Explanation of radix sort n x (k/d)

I have looked at the best, average and worst case time for the radix sort algorithm. The average is N X K / D I understand that N is the number of elements in the algorithm I understand that K is ...
-4
votes
1answer
76 views

Given number system, how to list all the numbers given base of a number (radix) and number of digits [closed]

Given the number system in mathematics and computing. How can I write a program in Java to list all the numbers with bases/radix of {2,3,4,5,6,7,8,9,10} and a given number of digits (it can be any ...
1
vote
2answers
75 views

Radix Sort for Negative Integers

I am trying to implement radix sort for integers, including negative integers. For non-negative ints, I was planning to create a queue of 10 queues correspondingly for the digits 0-9 and implement the ...
0
votes
0answers
64 views

Radix Sort: what does “groups” means in radix sort?

I have sorting algorithm assignment for my cs class. I need to convert pseudocode of Radix Sort into c++. Here's my pseudocode: radixSort( int theArray[], in n:integer, in d:integer) // sort n ...
1
vote
2answers
105 views

Calculating the length needed to represent an integer in an arbitrary base

I have the length of a representation of an integer in an arbitrary base. Say the length is 15, and the base is 36. I'd then like to work out how long a representation of said integer would be in ...
1
vote
2answers
108 views

Algorithm to find most efficient base to store large integer

Very large integers are often stored as variable-length arrays of digits in memory, as opposed to a straightforward binary representation as is the case with most primitive 'int' or 'long' types, as ...
2
votes
3answers
216 views

Java - Threaded Radix Sort

I have been working on different variations of the Radix Sort. At first I used chaining, which was really slow. Then I moved onto using a count sort while using val % (10 * pass), and most recently ...
2
votes
0answers
59 views

How do I calculate PI in another base?

There are plenty of resources to calculate PI in decimal. I found this one to do it pretty fast: http://en.literateprograms.org/Pi_with_Machin's_formula_(Python) But how do I calculate it in another ...
0
votes
1answer
115 views

implementation of a basic radix trie in C

I'm currently implementing the algorithm described here (wikipedia). The article describes 2 main structures : A node, containing an array of edges An edge, containing a pointer to a target node ...
0
votes
1answer
226 views

h(k) = k mod m, where k is a character string interpreted in radix 2^p and m = 2^p – 1. Show that h(x) = h(y)

The full question is: Consider the hash function: h(k) = k mod m, where k is a character string interpreted in radix 2p and m = 2p – 1. Show that by permuting characters in string y we can ...
0
votes
5answers
520 views

Can you store multiple integers at one array index?

I'm trying to do a radix sort and some algorithms I've seen have a buckets[ ] array that's supposed to hold multiple integers into one index of the bucket array, here is the algorithm I'm referring ...
3
votes
1answer
176 views

Javascript: toString(36) for large integers

15955067621307336078.toString(36); returns '3d7vzfy5k2as8' in Javascript because the large integer cannot be represented (the correct answer is '3d7vzfy5k29ou'). Does someone have a clever function ...
0
votes
1answer
100 views

Radix Tree, how many children maximum?

http://en.wikipedia.org/wiki/Radix_tree So instead of a function i used an integer value instead for isLeaf. But how many elements should an array of edges have? How many children max for each node?
2
votes
2answers
184 views

implementing a patricia trie in java

I'm trying to rewrite a c++ patricia trie in java. The c++ code is from here full source code I'm a bit stuck. So here's my understanding: #define ZEROTAB_SIZE 256 head->key = ...
2
votes
1answer
41 views

binary numbers in gawk

How can one specify a number as binary in gawk? According to the manual, gawk interprets all numbers as decimal unless they are preceded by a 0 (octal) or by a 0x (hexadecimal). Unlike in certain ...
1
vote
3answers
84 views

Is there a way to change the internal radix of Java code?

If I want to write a program that deals almost exclusively with, say, base 8 math, is there a way to change the source code or JVM to perform all calculations with this radix without having to ...
0
votes
0answers
58 views

What does base -2 mean?

Can anyone help me understand what is base -2? I understand base in positive integers and know how to convert a decimal number to those bases, but really do not have any idea with negative base.
1
vote
2answers
48 views

Is there a way to preserve or modify in-code radix information?

Let's say I have the following code: int two = 2; String twoInBinary = Integer.toString(two, 2); The twoInBinary String will now hold the value 10. But it seems like the radix information is ...
0
votes
1answer
71 views

Mixed Radix real world usage

I am working my way through an algorithm book, and there was a brief mention of using Mixed Radix to store a date. There was only one article in stackoverflow, and I could find little else about it on ...
0
votes
1answer
121 views

Equivalent to Ruby's to_i(36) in Javascript

"y851sq2vh4pf".to_i(36) #4504900070017571091 but parseInt("y851sq2vh4pf",36) //4504900070017571300 How can I implement the Ruby to_i(36) function in Javascript? Why are the behaviors different?
1
vote
4answers
366 views

Direct way of converting BASE-14 to BASE-7

Given (3AC) in base-14. Convert it into BASE-7. A simple approach is to convert first 3AC into BASE-10 & then to BASE-7 which results in 2105. I was just wondering that does there exist any ...
0
votes
0answers
611 views

Parallel In-Place Radix Sort in OpenCL

I was looking for a well optimized opencl implementation of an in-place radix sort. I found one here: http://code.google.com/p/back40computing/ But i think that it is not in-place.
2
votes
1answer
553 views

FFT using C++ fixed-point for optimizing performance for ARM devices

I am using OpenCV DFT in mobiles and tablets, let's say ARM devices. The codes are in C++. I was expecting to be able to optimize FFT performance by using ARM registers and fixed point arithmetics, ...
0
votes
3answers
93 views

Is there a way to encode unicode into a human readable variant of base64 (in python)

I would like to encode user input values coming from a web interface in such a way that I can pass the data into my system in a safe way. In other words, I want to strip out what I consider bad ...
-1
votes
1answer
1k views

Using Javascript parseInt() and a Radix Parameter

Can anyone explain how the parseInt() functions works and what the Radix Parameter is? As a case study, I am trying to get to grips with this code snippet: var maxChars = parseInt( ...
1
vote
2answers
2k views

How to convert a Binary String to a base 10 integer in Java

I have an array of Strings that represent Binary numbers (without leading zeroes) that I want to convert to their corresponding base 10 numbers. Consider: binary 1011 becomes integer 11 binary 1001 ...
1
vote
3answers
185 views

Why does the FixNum#to_s method in in Ruby only accept radixes from 2 to 36?

I looked at the documentation and even peeked at the C source, and I can't see why they limited the accepted radixes to 2..36. Anybody know?
0
votes
1answer
265 views

Radix sort for two's complement binary numbers

I have a question about Radix Sort implementations. For 16-bit two's complement numbers in binary how would a Radix Sort work? I'm not entirely sure how an implementation would be constructed ...
0
votes
4answers
2k views

Radix sort implemented in c++ for string

i just need radix sort implementation in c++ language which works for strings i already have the one which works for normal integers vector < vector < int> > blocks[7]; void ...
0
votes
1answer
313 views

Assist with implementing Radix Sort in JavaScript

I need some help implementing the Radix sort algorthim in JavaScript. I found this example online, with the following code, but I don't understand how I call the function since it appears to be ...
2
votes
8answers
494 views

How do I reverse the output of a program?

I have to convert decimal numbers like 43.62 to binary. So i first wrote a basic program that converts 43 into binary. But I notice that my program prints out the binary number in reverse, so it ...
30
votes
2answers
8k views

JSLint says “missing radix parameter”; what should I do?

I ran JSLint on this JavaScript code and it said: Problem at line 32 character 30: Missing radix parameter. This is the code in question: imageIndex = parseInt(id.substring(id.length - 1))-1; ...
0
votes
1answer
113 views

Whats going on behind the scenes with method - public static long parseLong(String s,int radix)

I need to generate a consistent unique Long based on the name of the package. Instead of using "Convert string to long" in Eclipse I think I can achieve the same task at run time by using method ...
0
votes
2answers
89 views

Standard radix for decimal base?

If I need to identify hex, octal, or binary numbers, I can just use prefixes 0x, 0, 0b. They aren't necessarily universal but are pretty recognizable in the programming world. Is there an identifier ...
1
vote
1answer
913 views

CUDA Programming with Thrust Library Radix Sort

Newbie on Thrust - in my VS2010 C++ program, I have working fine: #include <thrust/sort.h> thrust :: stable_sort_by_key (sortkey , sortkey + nmu, indexes ); But now I want to use thrust :: ...
-6
votes
4answers
1k views

How does one decode Base64? [closed]

As seen here, they have the line ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ==. How would one go about decoding this line of Base64?
3
votes
2answers
641 views

Is radix sort the only non-comparison sorting algorithm?

As the title says, is radix sort the only non-comparison sorting algorithm? My guess is yes.
3
votes
2answers
2k views

Java numbers with radix > Character.MAX_RADIX

I have a five-character String and I want to use those five characters as an ASCII-encoded (printable) number. The simplest way to achieve this is to use Long.toString(number, Character.MAX_RADIX); ...
2
votes
2answers
147 views

string representation of numeric literals in radices other than 2, 10, 16?

C has the convention where 0x____ means a hexadecimal literal number, and I've seen 0b____ for binary literal number (most notably in Java 7 Project Coin). Is there anything out there for ...
0
votes
1answer
235 views

method to convert a int into a binary format in C without itoa?

how can i convert a integer with radix 10 to a binary string with C without having the itoa function?
0
votes
3answers
3k views

Radix sort in java help

Hi i need some help to improve my code. I am trying to use Radixsort to sort array of 10 numbers (for example) in increasing order. When i run the program with array of size 10 and put 10 random int ...
2
votes
1answer
120 views

What possible enhancements can be made in the Basic Radix Sort Algorithm?

What possible enhancements can be made in the Basic Radix Sort Algorithm?
0
votes
3answers
599 views

Radix Sort Floating Data

How does radix sorts float data? for example 12.4, 45.13 etc. would it read the right side of the decimal point first?or the left side of the decimal point first?And then if it read the right side of ...

1 2