Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Compact and sparse bit vector

by diotalevi (Canon)
on Dec 27, 2008 at 21:37 UTC ( [id://732843]=CUFP: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use constant MEGABYTE => 2 ** 20;
    my $vector = '';
    # 5,000 bits. Set every 100th bit between 15 million and 20 million. 
    ...
        }
    }
    printf "%0.1fM\n", length( $vector ) / MEGABYTE;
    
  2. or download this
    use constant KILOBYTE => 2 ** 10;
    use Judy::1 qw( Set MemUsed );
    my $vec;
    ...
        }
    }
    printf "%0.1fK\n", MemUsed( $judy ) / KILOBYTE;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://732843]
Approved by Corion
Front-paged by Corion
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-26 08:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found