Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to write an example of O(n^2) time complexity in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
   
#define N 3

// The O(n^2) time complexity = running time of an algorithm 
// grows quadratically with n (the size of the input)

// The total number of print operations = N * N
// N = size of the matrix (N rows and N columns)
// time complexity = square of the input size = O(N^2)

void print_matrix(int matrix[][N]);
   
int main(void)
{
    int matrix[N][N] = { {0}, {0} };
      
    srand(time(NULL));
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            matrix[i][j] = rand() % 100 + 1;
        }
    }
       
    print_matrix(matrix);
       
    return 0;
}
   
void print_matrix(int matrix[][N]) {
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            printf("%5i", matrix[i][j]);
        }
            
        printf("\n");
    }
}
  
  
   
/* 
run:
   
    3   27   78
   99   89    5
   76   50   43
   
*/

 



answered Dec 12, 2024 by avibootz
...