Research Article

Multiple Memory Structure Bit Reversal Algorithm Based on Recursive Patterns of Bit Reversal Permutation

Table 3

Common memory allocating methods that are used in Visual C++.

NumberNameSyntaxNature of memory layout

1Arrayint BRP 1000 Slot of continuous memory elements
2Arrayint* BRP = new int[ ]Slot of continuous memory elements
3Arrayarray BRP = gcnew array ( )Collection of noncontinuous memory elements
4ArrayListArrayList BRP = gcnew ArrayList()Collection of noncontinuous memory elements
5Vectorstd::vector BRP( )Collection of noncontinuous memory elements