Java Question: What is the order of growth \"O\" of the following algorithms: 1.
ID: 3670694 • Letter: J
Question
Java Question:
What is the order of growth "O" of the following algorithms:
1.display all integers in an array of integers
2.display all integers in a chain of linked nodes
3.display the nth integer in an array of integers(For example, display the 3rd element in the array, display the 10th element in the array, etc.)
4.display the nth node in a chain of linked nodes (For example, display the 3rd node in the chain, display the 10th node in the chain, etc.)
5. compute the sum of the first n even integers in an array of integers
Explanation / Answer
Answers:)
1. O(n)
2. O(n)
3. O(1)
4. O(n)
5. O(n)