Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are sublinear algorithms?

Tags:

I have been asked the following question by one of my fellow mates.

Which of the following expressions is not sublinear? O(log log n) O(n) O(logn) O(root(n)) 

I have gone through https://en.wikipedia.org/wiki/Time_complexity#Sub-linear_time but couldn't but I am not sure that I have understood it completely. Could someone point me in the right direction.

like image 829
station Avatar asked Aug 31 '15 13:08

station


People also ask

What are Sublinear time algorithms?

Definition: A algorithm whose execution time, f(n), grows slower than the size of the problem, n, but only gives an approximate or probably correct answer.

Is binary search a Sublinear?

For example, you've learned that if a list is sorted you can search it in sublinear time using binary search. So when you're writing a program that needs to search through a list repeatedly, it's worthwhile to sort the list before searching.

What is Sublinear space?

In linear algebra, a sublinear function (or functional as is more often used in functional analysis), also called a quasi-seminorm or a Banach functional, on a vector space. is a real-valued function with only some of the properties of a seminorm.

What do you mean by constant time complexity?

An algorithm has constant time complexity if it takes the same time regardless of the number of inputs. ( Reading time: under 1 minute) If an algorithm's time complexity is constant, it means that it will always run in the same amount of time, no matter the input size.


2 Answers

A function, f(x), is said to grow faster than another function, g(x), if the limit of their ratios as x approaches infinity goes to some positive number (or infinity), as seen in the definition below.

enter image description here

In the case of sublinear, we want to prove that a function grows slower than c*n, where c is some positive number.

Thus, for each function, f(n), in your list, we want the ratio of f(n) to (c*n). If the limit is 0, this means the function, f(n), is sublinear. Otherwise it grows at the same (approximate) speed of n or faster.

lim n->inf (log log n)/(c*n) = 0 (via l'Hopital's) 

(sublinear)

lim n->inf (n)/(c*n) = 1/c != 0 

(linear)

lim n->inf (log n)/(c*n) = 0 (via l'Hopital's) 

(sublinear)

lim n->inf (sqrt(n))/(c*n) = 0   

(sublinear)

like image 130
erip Avatar answered Sep 21 '22 13:09

erip


I think I understood why you're confused: the wikipedia page you link uses Little-Oh notation:

Sub-linear time

An algorithm is said to run in sub-linear time (often spelled sublinear time) if T(n) = o(n)

Beware that T(n) = o(n) is a stronger requirement than saying T(n) = O(n).

In particular for a function in O(n) you can't always have the inequality

f(x) < k g(x) for all x > a 

satisfied for every k you choose. y=x and k=1 will prove you wrong and little-oh notation requires every k to satisfy that expression.

Any O(n) function is not also in o(n). Thus your non-sublinear expression is O(n).

I recommend reading this answer to continue your studies

like image 33
Marco A. Avatar answered Sep 22 '22 13:09

Marco A.