Get Instant Help From 5000+ Experts For
question

Writing: Get your essay and assignment written from scratch by PhD expert

Rewriting: Paraphrase or rewrite your friend's essay with similar meaning at reduced cost

Editing:Proofread your work by experts and improve grade at Lowest cost

And Improve Your Grades
myassignmenthelp.com
loader
Phone no. Missing!

Enter phone no. to receive critical updates and urgent messages !

Attach file

Error goes here

Files Missing!

Please upload all relevant files for quick & complete assistance.

Guaranteed Higher Grade!
Free Quote
wave
Practice Questions on Big-O, Search Algorithms, Hash Tables, and Sorting Algorithms

Big-O Questions

All Big-O answers must be expressed in terms of simplified Big-O. To receive full credit on each question, you’ll need to provide the correct  answer and a detailed explanation of your reasoning in your own words. For example, you should explain not only the lines of code that result  in your Big-O answer, but also the Big-O terms you were able to ignore when simplifying the expression. You can use the examples of Big-O  analysis we went through in class as a reference for your how explanations should look .

What is the Big-O time complexity for the following method in terms of n?

public int process (int n) {

int  result =0;

for(int i=0; i < n; i++) {

result += n;

}

for(int i = 0; i < n / 2; i++) {

result -= n;

}

return n;

}

What is the Big-O time complexity for the following method in terms of N, if N is the size of words?

public int tally(ArrayList words) {

int maxLength = 0;

for (int i = 0; i < words.size(); i++) {

String word = words.get(i);

if (word.length() > maxLength()) {

maxLength = word.length();

}

}

return maxLength;

}

What is the Big-O time complexity for the following method in terms of N, if N is the size of numbers?

public int maths (ArrayList numbers) {

int index = numbers.size();

int total = 0;

while (index >= 1) {

total += numbers.get(index - 1);

index /= 3; // same as index = index / 3

}

return total;

}

What is the Big-O time complexity for the following method in terms of N, if N is the size of names?

public ArrayList getPairs(ArrayList names) {

ArrayList pairs = new ArrayList<>();

for (int a =0; a < names.size(); a++) {

for (int b = 0; b < names.size(); b++) {

String personA = names.get(a);

String personB = names.get(b);

if (personA.equals(personB)) {

continue;

}

pairs.add (personA + " & " + personB);

}

}

return pairs;

}

Explain, in your own words, what the tradeoffs are between using linear search and binary search. What are the pros and cons of each?

Suppose you have a hash table with 5 buckets, indexed 0, 1, 2, 3, and 4. We insert the following Strings, which have these hash codes:

  • "Dasher" (hash code: 23)
  • "Prancer" (hash code: 967)
  • "Vixen" (hash code: 551)
  • "Comet" (hash code: 9)
  • "Cupid" (hash code: 1001)
  • "Donner" (hash code: 77)
  • "Blitzen" (hash code: 418)
  • "Rudolph" (hash code: 90)

Assume we use the same techniques we described in lecture 17 for adding elements to a hash table. This hash table will be referenced in questions 6 and 7.

What Strings do each of the five buckets contain? Please explain how you determined your answers.

Suppose we increase the number of buckets in the hash table to 10, shuffling the same Strings into the buckets indexed 0, 1, 2, 3, 4, 5, 6, 7, 8,  and 9. Which Strings will end up in the same bucket they were in before? Please explain your reasoning.

Describe what kind of input would cause insertion sort to experience its worst case scenario. Please explain why it causes the worst case  scenario.

Suppose you apply selection sort to the following list of numbers:

9, 3, 11, 8, 14, 2, 7

After three steps of the algorithm, where each step involves passing through the list a single time, what would the list look like? Please explain your reasoning.

support
Whatsapp
callback
sales
sales chat
Whatsapp
callback
sales chat
close