EssaysForStudent.com - Free Essays, Term Papers & Book Notes
Search

Data Structures: Vb and Vba offer Two Options: Arrays and Collections

By:   •  Essay  •  826 Words  •  January 3, 2010  •  951 Views

Page 1 of 4

Join now to read essay Data Structures: Vb and Vba offer Two Options: Arrays and Collections

This month is devoted to data structures. This isn't a computer science course, so let's define a data structure as a data holder--something that holds whatever data we need while our program executes. Visual BASIC and VBA use two basic data structures: the array and the collection. This month when I say VB, I also mean VBA.

ARRAYS

Most VB programmers are familiar with the array (figure 1). An array can be single or multidimensional, which means it can have rows and columns. While the array is the most commonly used data structure, it's not the best choice for at least two reasons. The first is data access. To find something within the array, you have to know exactly what you want. If you knew that, you wouldn't have to look, would you? To search for an item, you must iterate through the array.

[FIGURE 1 OMITTED]

The second reason is that the array must be dimensioned to a known limit. Once set, it's not easy to add an item after that limit is reached. For example, if you have a list of four people, you can't add a fifth person until you resize the array using ReDim or ReDim Preserve. ReDim resizes the array and clears any existing values, while ReDim Preserve resizes and keeps any existing values. Also, the upper limit of the array can't be a dynamic variable. An exception to the dimensioning rule is using an array with a command such as Split (figure 2).

[FIGURE 2 OMITTED]

If the array isn't dimensioned, the Split command dimensions and fills the array on the fly. Arrays are zero-based in VBA (and in VB, although you can use the Option Base statement to change it). In most cases, the array is limited to a single data type.

COLLECTIONS

A collection (figure 3) is usually a better choice for a data structure. All AutoCAD programmers have used collections whether they realize it or not, because AutoCAD uses them. Layers and blocks are two of the most commonly accessed collections within AutoCAD. A collection differs from an array in that it isn't dimensioned, it is one-based, and it can hold multiple data types.

[FIGURE 3 OMITTED]

Once the collection variable is declared, it must be set using the New command. Though sometimes the New command is used within the declaration, it's best to avoid doing it that way. Each new item should be specifically added using the collection object's Add method. Then when an item is needed, it's accessed using the collection object's Item method.

There are two main reasons to choose a collection over an array. The first is that you can add as many items as you need without worrying about a limit. The second is data access speed. When finding an item in the collection, the program doesn't have to iterate through each item. If you use the optional keyword when adding items, the program can go directly to the desired item.

In addition to the keyword, two more optional parameters--Before and After--let you add items to the collection in specific places. You can also use Count to return the number of items that the collection currently holds and Delete to remove items from the collection. If you start Delete, all items located

Continue for 3 more pages »  •  Join now to read essay Data Structures: Vb and Vba offer Two Options: Arrays and Collections and other term papers or research documents
Download as (for upgraded members)
txt
pdf