Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

oct(0b & really huge binary) ... "integer overflow in binary number&quo

Status
Not open for further replies.

SparceMatrix

Technical User
Mar 9, 2006
62
US
I am doing some scripts that work with huge matrices having only ones and zeros in them. As a way of tracking unique rows, I take a row and run it through "oct" and then fool with the array of numbers I get. It worked like a charm for some small matrices, but now that I'm getting row numbers past 100, I'm getting errors, "Integer overflow in binary number".

If this is an unavoidable limitation, is there maybe another way of crunching those rows to sort out the unique ones?

Here is some code I fooled around with to see what was going on.

Code:
#!/usr/bin/perl
print oct "0b11111111111111111111111111111";
print "\n";
$MyHugeString = "0b" . "1" x 100;
print oct $MyHugeString;
 
You can identify unique rows with a hash
Code:
my %uniq;

while (<>) {
   chomp;
   $uniq{$_}++;
}

print join("\n", keys %uniq);

Steve

[small]"Every program can be reduced by one instruction, and every program has at least one bug. Therefore, any program can be reduced to one instruction which doesn't work." (Object::perlDesignPatterns)[/small]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top