spacer
Web Development Tutorials CGI-PERL Tutorials
 Developer Newsletter

Tutorials
AJAX
ASP
CGI & Perl
CSS
Flash
HTML
Illustrator
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML
Miscellaneous


Scripts Directory
AJAX Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Web Hosting Directory
ASP.NET
Budget
Dedicated Servers
Ecommerce
Linux
Resellers
Shared
Small Business
Windows

Developer Manuals
Learn HTML
Learn PHP
Learn CSS
Learn AJAX
Learn JavaScript
Learn Pear
Free White Papers

Developer Resources
Developer Tools
Developer Content
Survey Software
Dedicated Servers




Bit Vector, Using Perl Vec

By Tony Lawrence
2005-07-19


Bit Vector, Using Perl Vec

A bit vector is just an array of bits; subsets of bits within the bytes have some meaning. That allows more compact storage for certain types of data. For example, if you only needed boolean on-off values, you can store eight values in one byte. If your values require more than byte sized bits, the bits you require can still be packed more efficiently; if you need 10 bits, you can pack eight of those in an ten byte string (rather than the 16 or 32 bytes you might otherwise use).

The use of vector in this context probably came from jump tables: the bits represent a place for code to jump to, and therefor are at least vaguely related to the physics/engineering definition of a vector quantity (maginitude and direction). I still think of these as bit maps or bit fields, but apparently I'm out of touch.

Perl has the "vec" function for bit fields. Its granularity is a little bit limited: the number of bits you want to examine or set has to be a power of 2, so you can't (for example) conveniently work with three bit fields. You'd need to use four bits, a small waste, or handle all the nasty details yourself with substr and << >> operators. Using "vec" is a lot more pleasant. Here's an example that sets some individual bits, and reads them back from the string.

#!/usr/bin/perl

my $bitf;
vec($bitf,0,1)=1;
vec($bitf,1,4)=7;
for($x=0;$x < 8;$x++) {
print "$x ",vec($bitf,$x,1), "\n";
}
# another way to print out a bit field
print unpack("b*", $bitf), "\n";

That produces:

0 1

1 0
2 0
3 0
4 1
5 1
6 1
7 0
10001110

If you don't see why setting bits 4 to 7 as 7 produces "110", it's just simple banary, starting from bit 4: bit 4 has the value of 1 if set, bit 5 has 2, bit 6 has 4. See Javascript Bit Twiddler



Tutorial Pages:
» Bit Vector, Using Perl Vec


© Copyright 2005 A.P. Lawrence


 | Bookmark Print |   Write For Us
Related Tutorials:
» Random subroutines in Perl
» Log Script Use
» Creating Perl Modules for Web Sites
» Build a Perl/CGI Voting System
» Perl Range Operator
» Creating Perl Modules for Websites



About the NetVisits, Inc Network | Write For Us | Advertise
Copyright ©2007 NetVisits, Inc Network. All Rights Reserved. Privacy Policy.
Visit other NetVisits, Inc. sites: