Data Structures Flashcards

1
Q

Define an interface

A

A set of procedures that operate on the data structure

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

Why is an abstract data type ‘abstract’?

A

Because we are not concerned with the implementation of the data structure but rather what operations we can perform using the data structure

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

Define strong encapsulation in terms of ADTs

A

Encapsulation is strong if details of how the data structure is stored is completely hidden from the user because it means the user has no conceptual idea of how the ADT is stored and implemented

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

Define a queue

A

An ordered collection of items which are added at the tail and removed from the head

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

Why are queues beneficial?

A

They provide FIFO functionality meaning that items can be easily reversed and traced back

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

How do you use a structure in C to define a queue?

A

You create a structure which has two properties, one being the data contained in that position in the queue and the second being a pointer to the next item in the queue

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

How do you add an item to a queue in C?

A
  1. Check whether the queue is full
  2. Check whether the head pointer is NULL
  3. If the head pointer is NULL then set the head pointer equal to the element you want to add
  4. If the head pointer is not NULL then determine the position of the tail of the queue and reassign that pointer so it points to the element you want to add
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define homogeneous

A

Consists of elements with all the same data type

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

Define heterogeneous

A

Consists of elements of different data types

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

Describe byte addressable memory

A

Memory can be represented as an array of bytes with each cell having a unique address written in hexadecimal

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

What is a word?

A

The smallest unit of addressable memory in a computer

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

What is the size of a word?

A

The size of a word varies from machine to machine but we assume a word is 32 bits long

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

How many bits are required to store an integer?

A

32

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

What are the 3 aspects of a variable?

A
  1. A symbolic name given by the programmer
  2. The value is contains
  3. An address where it resides in memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Define variable scope

A

The functions of a program in which a variable can be accessed

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

Why do we have to use pointers in C?

A

We can only return one variable from a function in C so, in order to change variables in other scopes in a function, we use pointers to the variables

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

What is indirection?

A

A method of referring to an item without referring to the item itself .e.g. referring to the memory address in which a variable is stored rather than referring to the variable itself

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

What does ‘*’ mean?

A

This is the dereferencing operator because it returns the value stored at the address contained within the operand

18
Q

What does ‘&’ mean?

A

This is the address-of operator and it returns the address of its operand

19
Q

What does it mean if an operator is unary?

A

It only takes one input

20
Q

What are the three stages to evaluating an operation?

A
  1. Fetch
  2. Evaluate
  3. Store
21
Q

Define record

A

A heterogeneous compound item

22
Q

What is the disadvantage of using arrays?

A

Arrays are homogeneous meaning that you cannot model any entities that consist of values of different data types using arrays

23
Q

What is a field?

A

An item which makes up a record

24
Q

Define a record

A

A heterogeneous compound item made up of fields

25
Q

What are the two ways of selecting a field in a record?

A
  1. Using a . if it is declared directly
  2. Using an -> if it declared indirectly as a pointer
26
Q

What does malloc stand for?

A

Memory allocation

27
Q

What does malloc do?

A

Dynamically assigns memory to an object

28
Q

What memory section does malloc access?

29
Q

What is the heap?

A

A section of memory which is assigned to a program and made available for use by the programmer

30
Q

How is malloc implemented?

A

Malloc assigns an address from the memory in the heap to a pointer in your program which then becomes the base address for the item you are creating in your program, you then access memory for that object using the pointer

31
Q

What is the difference between a table and a matrix?

A

A table has a single variable on one axis where as a matrix has two variables on two axis’

32
Q

How do you define a 2D array?

A

<data> <array>[<num_rows>][<num_columns>]
</num_columns></num_rows></array></data>

33
Q

What are the advantages of array?

A
  1. We can use a single name to represent multiple data items of the same data type
  2. They have very fast random access as opposed to sequential access
34
Q

What are the disadvantages of arrays?

A
  1. The size of an array is initialised at runtime and cannot be changed
  2. Insertions and deletions from an array are costly
35
Q

Define stack underflow

A

When you try and pop from an empty stack

36
Q

Define stack overflow

A

When you try and push to a full stack

37
Q

Define an unbounded stack

A

A stack that has an infinite size

38
Q

Define a bounded stack

A

A stack that has a limited size

39
Q

What are some common uses of stacks?

A
  1. Call stacks
  2. Checking syntax and semantics
  3. Searching
  4. Mathematics .e.g. determining the result of postfix equations
40
Q

What is a call stack?

A

When a new function is called a stack frame is pushed to the stack which includes information including the return address, arguments, and local variables. This allows the program to return to where it was once the program has been executed and in the same state as before

41
Q

Programming question: write a program that checks whether there are matching pairs of brackets and braces in a statement

A

Create a stack and each time you encounter an open parentheses push to the stack and when you encounter a close parentheses pop from the stack.
If you encounter a stack underflow error or the stack is not empty at the end of the statement then there is an unbalanced number of parentheses.

42
Q

How do you use stacks for searching?

A

If you’re doing a depth first search you need to retrace your steps and you do this by popping things from the stack