Data Structures and Algorithm Complexity Concepts

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/29

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

30 Terms

1
New cards

Stack

An ADT useful for processing nested structures.

2
New cards

Dominant Term

When describing the O-notation of an algorithm we focus on this.

3
New cards

Binary Tree

Either the empty tree or a node that has left and right subtrees that are binary trees.

4
New cards

Internal Path Length

In a tree, the sum of the lengths of the paths from the root to all nodes.

5
New cards

In-order

A traversal order in which the nodes in a binary search tree are visited in sorted order.

6
New cards

Coalescing

A method to counteract the tendency toward fragmentation.

7
New cards

Heap

A zone of memory organized to support dynamic memory allocation of blocks of storage of differing sizes.

8
New cards

Trie

A tree that is insensitive to the order of insertion of the keys, but is sensitive to clustering in the spelling of the prefixes of the keys.

9
New cards

Extended

A binary tree that has its empty binary subtrees explicitly represented.

10
New cards

Complexity Class

A characterization of running times for different algorithms that share the same family of curves.

11
New cards

Benefit of best-fit search policy

Can reduce fragmentation.

12
New cards

O(n) algorithm

Will always finish before an O(n^2) algorithm only for n > n0 for some n0. For small n the lesser terms may be significant.

13
New cards

External Path Length

For an extended binary tree with n nodes, if the internal path length is I, then E = I + 2n.

14
New cards

Number of levels in a complete binary tree

For a complete binary tree with n nodes the number of levels in the tree equals floor(log2 n) + 1.

15
New cards

Big-O notation for organizing items in a complete binary tree

O(n).

16
New cards

Equation for circular queue representation

Rear = (Count + Front) % N.

17
New cards

Right child index in array implementation

Right child at 2i + 1 if 2i + 1 <= n.

18
New cards

Inorder traversal of binary search tree

Always visits the elements in the same order, regardless of the order in which the elements were inserted.

19
New cards

Leaves in a complete binary tree

2^(n-1) where level l is completely filled with leaves in all possible positions.

20
New cards

Parent index in array implementation

A[i/2] if i>1.

21
New cards

Arrangement of two stacks in array

S1 starts at A[0] and grows toward A[N-1]. S2 starts at A[N-1] and grows toward A[0].

22
New cards

Queue ADT problem solving

Useful for scenarios like shopping lines or class wait lists.

23
New cards

Advantages of using O() to compare algorithms

System independent, useful for algorithm comparison, constants don't matter (approximate).

24
New cards

Disadvantages of using O() to compare algorithms

Can't distinguish items in the same class, you throw away constants. Only true for large n; small problems might not be true.

25
New cards

Advantages of first-fit compared to best-fit

First-fit is faster, but may lead to larger amounts of waste.

26
New cards

Best situation for first-fit

Good when speed is key.

27
New cards

Best situation for best-fit

Best when memory is in short supply.

28
New cards

Ways to reduce fragmentation in free-list

Use roving pointer, use coalescing, compaction.

29
New cards

Usefulness of coalescing

Helps ensure that there are blocks large enough for future allocations.

30
New cards

Complications of coalescing

You must know memory is adjacent. The process will take some time to keep the free list sorted.