Я знаю, что простой линейный Big O выглядит так (все это в C):
#include <stdio.h>
int main()
{
int array[10]={1,2,3,4,5,6,7,8,9,10}; //elements of the array
int a; //creating the new variables
for (a=0;a<10;a++){
printf("%d\n", array[a]); //print elements of the array
}
}
И я знаю, что N ^ 2 Big O выглядит так:
#include <stdio.h>
int main()
{
int array[10]={1,2,3,4,5,6,7,8,9,10}; //elements of the array
int a,b; //creating the two variables
for (a=0;a<10;a++){ //do stuff
for (b=0;b<10;b++){ //do stuff
printf("%d = %d\n", array[a],array[b]); //print elements of the array
}
}
}
Меня интересует, как выглядит n * log (n) Big O.