In the field of linear algebra, the dot product of two vectors with elements each, and , can be calculated as follows:
- Write the pseudocode for a program that takes two arrays of numbers as inputs and returns their dot product. You can assume that the arrays have equal length.
- What is the time complexity of your dot product algorithm?
- What is the space complexity of your dot product algorithm?
Consider an matrix that is represented as a two-dimensional array of integers. In the field of linear algebra, the transpose of a matrix flips a matrix over its diagonal. In other words, it switches the row and column indices of the matrix. For example:
- Write the pseudocode for an algorithm that takes a square matrix and replaces it with its transpose.
- What is the time complexity of your transpose algorithm?
- What is the space complexity of your transpose algorithm?
Hint!
Suppose I have a 2D array called
arr
which represents a square matrix. The transpose ofarr
will take elementarr[i][j]
and move it toarr[j][i]
. For example,arr[2][1]
becomesarr[1][2]
. For another example,arr[3][3]
stays asarr[3][3]
.
Consider This!
There are many ways to approach this problem, especially if you are not looking to create an especially efficient algorithm. However, for those of you who are interested, there is an algorithm called an “in-place matrix transposition” that can take the transpose with O(1) space. Feel free to look it up for this problem!
Arrays have a fixed size in memory, so we cannot append a new element onto the end of an array. However, a dynamic array is a data structure that gives you all of the benefits of an array plus the ability to append items to the end. Under the hood, when you try to add an element to a dynamic array that is full, the program creates a new dynamic array (usually twice the size of the old one), copies in the existing array data to the new one, and then appends the new element to the end of the array.
- Write the pseudocode that will append an element to the end of a dynamic array. Make sure that your algorithm handles the cases of when the array is full of elements and when the array is not completely full.
- What is the time complexity of your algorithm when the array is not yet full?
- What is the time complexity of your algorithm when the array is full?
Extra Credit Opportunity!
The coupon collector’s problem is a probabilistic experiment in which a person repeatedly draws a random number between and (with replacement) until each number in the collection has been selected at least once. If you get really lucky, you will only need draws to get all numbers. However, it is more likely that you will need more than draws to see all numbers.
- Write the pseudocode for a function that performs this simulation for some input and returns the number of draws needed to get all of the numbers.
- Suppose I asked you to calculate the time complexity of your coupon collector’s problem algorithm. This is a complicated problem because you have to take into account the probabilities of selecting a given combination of elements after some number of draws (welcome to the field of combinatorics!). Use this site as a reference and make a prediction as to what is the time complexity of the algorithm (justify your answer).