Tagged Questions
The radix tag has no wiki summary.
13
votes
7answers
3k views
convert integer to a string in a given numeric base in python
Python allows easy creation of an integer from a string of a given base via
int(str,base).
I want to perform the inverse: creation of a string from an integer.
i.e. I want some function ...
8
votes
1answer
2k views
Implementing a Patricia Trie for use as a dictionary
I'm attempting to implement a Patricia Trie with the methods addWord(), isWord(), and isPrefix() as a means to store a large dictionary of words for quick retrieval (including prefix search). I've ...
3
votes
2answers
126 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
1answer
185 views
Javascript parseInt with radix 16 issue
The alert statement alert(parseInt("0x00C02700010004E9",16)); incorrectly displays 54086076498707690 instead of the correct value 54086076498707689. Please notice the last two digits!!
Could anyone ...
3
votes
3answers
511 views
radix sort on binary strings with arbitrary length
i googled around and see lots of discussion about radix sort on binary string, but they are all with same lenght, how aobut binary string with arbitrary lenght?
say i have {"001", "10101", "011010", ...
3
votes
5answers
1k views
How do you calculate floating point in a radix other than 10?
Given Wikipedia's article on Radix Point, how would one calculate the binary equivalent of 10.1 or the hex equivalent of 17.17? For the former, what is the binary equivalent of a tenth? For the ...
2
votes
8answers
111 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 ...
2
votes
2answers
382 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
61 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 ...
2
votes
1answer
61 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?
1
vote
2answers
72 views
Is it feasible to stream hexadecimal digits and output the stream in decimal without waiting for all the data to appear
Say you have a file containing gigabytes worth of
deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef
and you want to convert it to decimal, in the same way as you would 0xdeadbeef to 3,735,928,559.
...
1
vote
3answers
145 views
snprintf : simple way to force . as radix?
My program was not behaving correctly on one machine so I started to hunt for the bug, and I discovered that on that machine, snprintf uses a comma (,), not a . (dot) as 99% of other computers (at ...
0
votes
1answer
48 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
2answers
238 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
78 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 ...
0
votes
1answer
51 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
42 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 ...
0
votes
1answer
282 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 :: ...
0
votes
1answer
155 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
823 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 ...
0
votes
3answers
201 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 ...
0
votes
1answer
921 views
LSD Radix Sort code in java, question
A am studding for an Exam that I will have about sorting algorithms. And a Friend of mine gave me this code about LSD Radix Sort.
And I don't why he is using the numbers 96,97 and 64? I've read a few ...
-2
votes
3answers
385 views
How does one decode Base64?
As seen here, they have the line ZG9udGJlYWhhdGVyc3RhcnR1cCtoYWNrZXJuZXdzQGdtYWlsLmNvbQ==.
How would one go about decoding this line of Base64?