Data Structures Flashcards

1
Q

What is a variable?

A

An identifier/address in memory for a value stored in RAM

Extra info:
- use direct addressing type
- used to manipulate data behind the scenes
- some languages need explicit variable declarations - define variable name + type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a constant?

A

Like a variable but you can’t change the value stored in it - immutable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is an array?

A
  • A set of data items of the same type grouped together using a single identifier
  • they are zero indexed - the first value is index zero
  • values are identified by variable name + subscript - Eg. Arr_name[4]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the features of an array?

A
  • they have a fixed size, defined at the start
  • they can’t expand or shrink
  • all data must be of the same data type
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a 2D array?

A
  • it’s an array inside an array - can be visualised as a table

Eg. [[a,b],[c,d]]
To choose b:
- pseudocode - arr[0,2]
- python - arr[0][2]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is a 3D array?

A
  • its an array with arrays inside it with arrays inside the sub-arrays
  • can be visualised as a multi page spreadsheet
  • eg. [[[a,b],[c,d]],[[e,f],[g,h]]]
    to select e:
  • pseudocode - arr[1,0,0]
  • python - arr[1][0][0]
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

why would you use arrays of multiple dimensions?

A

do this to avoid using multiple arrays - you are the programmer so won’t forget what each array stands for

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is a record?

A
  • its essentially a row in a table
  • data is organised via attributes/fields (columns) which hold one item of data - the primary key and/or secondary keys can be used to order multiple records
  • more user-friendly than a list/array because you can identify data by attribute
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how do you declare a record in pseudocode?
(eg define record studentType with fields ID, firstname, surname, dateOfBirth, class)

how do you identify a field in a record

A
studentType = record
    integer ID
    string firstname
    string surname
    date dateOfBirth
    string class
end record

variable must be declared first like this:
~~~

<variable> : <variableType>
<recordname>.<fieldname>
~~~
</fieldname></recordname></variableType></variable>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a tuple?

A
  • an ordered set of elements of any data type
  • elements do not have to be of the same data type
  • it is immutable - elements can’t be changed, added or deleted dynamically
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

how do you define a tuple in python and refer to a value in it?

A

use parenthesis
~~~
pupil = (“John”, 78, “a”)

name = pupil[0]
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is a list?

A
  • its a dynamic data type consisting of a number of ordered items where the same item may occur more than once
  • they are dynamic - items can be added, removed and edited
  • items can be of different data types
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what are some common operations on a list?

A
  • isEmpty() - test for empty list
  • append(item) - add an item to the end of the list
  • remove(item) - remove first occurence of an item from the list
  • search(item) - search for an item in the list
  • length() - return the number of items in the list
  • index(item) - return the position of
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly