In the field of linear algebra, the dot product of two vectors with elements each, and , can be calculated as follows:

  1. 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.
  2. What is the time complexity of your dot product algorithm?
  3. 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:

  1. Write the pseudocode for an algorithm that takes a square matrix and replaces it with its transpose.
  2. What is the time complexity of your transpose algorithm?
  3. What is the space complexity of your transpose algorithm?

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.

  1. 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.
  2. What is the time complexity of your algorithm when the array is not yet full?
  3. What is the time complexity of your algorithm when the array is full?