Computer Science, asked by fuzzy1711, 7 months ago

What is the overall running time of the following snippet? for(i=0;i

Answers

Answered by frozenPearl93
0

For example swap() function has O(1) time complexity.

A loop or recursion that runs a constant number of times is also considered as O(1). For example the following loop is O(1).

// Here c is a constant

for (int i = 1; i <= c; i++) {

// some O(1) expressions

Similar questions