Showing content from http://reference.wolfram.com/language/ref/datastructure/BitVector.html below:
BitVector—Wolfram Language Documentation
WOLFRAM Consulting & Solutions
We deliver solutions for the AI eraâcombining symbolic computation, data-driven insights and deep technology expertise.
- Data & Computational Intelligence
- Model-Based Design
- Algorithm Development
- Wolfram|Alpha for Business
- Blockchain Technology
- Education Technology
- Quantum Computation
WolframConsulting.com
DATA STRUCTURE
"BitVector" (Data Structure)
"BitVector"
represents a vector of Boolean values or members of a set built from an array of bits.
Details
- A "BitVector" is a very compact representation of data that can only take on two values, such as Boolean data, and can also be an efficient representation of sets.
- The numbering of bits is consistent with other bit operations such as BitSet, so that 0 refers to the first bit.
- For a data structure of type "BitVector", the following operations can be used:
- ds["BitAnd",dsi] combine the bits in ds and dsi using bitwise And time: O(n/8) ds["BitClear",k] set the kth bit in ds to 0 time: O(1) ds["BitClearAll"] set all the bits in ds to 0 time: O(n) ds["BitCount"] return the number of bits in ds that are set to 1 time: O(n) ds["BitGet",k] get the kth bit in ds time: O(1) ds["BitInvert",k] invert the value of the kth bit of ds time: O(1) ds["BitList"] return a list of bits that are set to 1 in ds time: O(n) ds["BitNand",dsi] combine the bits in ds and dsi using bitwise Nand time: O(n/8) ds["BitNor",dsi] combine the bits in ds and dsi using bitwise Nor time: O(n/8) ds["BitNot",dsi] toggle the bits in ds time: O(n/8) ds["BitOr",dsi] combine the bits in ds and dsi using bitwise Or time: O(n/8) ds["BitSet",k] set the kth bit in ds to 1 time: O(1) ds["BitTest",k] return True if the kth bit of ds is set to 1 and False otherwise time: O(1) ds["BitXnor",dsi] combine the bits in ds and dsi using bitwise Xnor time: O(n/8) ds["BitXor",dsi] combine the bits in ds and dsi using bitwise Xor time: O(n/8) ds["Boole"] return a numeric array with ones for the set bits in ds and zeroes elsewhere. time: O(n) ds["Capacity"] return the number of bits that can be stored in ds time: O(1) ds["Copy"] return a copy of ds time: O(n) ds["Length"] return the number of bits that can be stored in ds time: O(1) ds["OffBitList"] return a list of the bits that are off in ds time: O(n/8) ds["OffBitList",dsi] return a list of the bits that are off in both ds and dsi time: O(n/8) ds["OnBitList",dsi] return a list of the bits that are on in both ds and dsi time: O(n/8) ds["Visualization"] return a visualization of ds time: O(n)
- The following functions are also supported:
Examplesopen allclose all Basic Examples (3)
A new "BitVector" can be created with CreateDataStructure:
Set the 20th bit to 1:
It is possible to test if a bit is set:
Extract a bit:
Invert a bit:
Get a list of the bits that are set:
Return an expression version of ds:
The normal list can be used to create a new "BitVector" :
Verify that they are equal:
A visualization of the data structure can be generated:
Testing for common bits:
The bits that are on in both:
The bits that are off in both:
Combining:
The "BitVector" only contains bits that were on in both:
Scope (1) Information (1)
A new "BitVector" can be created with CreateDataStructure:
Information about the data structure ds:
Properties & Relations (3)
The numbering for bits in a "BitVector" is consistent with Power and bit operations such as BitSet.
Create two bit vectors:
Both bit vectors are initialized with zeros:
Equality can be tested with SameQ:
Change one of the bit vectors by setting a bit:
The bit vectors are no longer the same:
Inequality can be tested with UnsameQ:
Create a bit vector:
Get an array of zero/one values corresponding to the bits:
When the bit is set, the array value is one, otherwise zero:
This is equivalent to Boole applied to the Boolean list:
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4