0 votes
for (int i = 1 to n) {

  for (int j = i*i to n) {

    for (int k = j*j to n) {

      sum += a[i]*b[j]*c[k]

    }

  }

}
in Asymptotic Analysis by AlgoMeister (1.6k points)

Please log in or register to answer this question.

The Book: Analysis and Design of Algorithms | Presentations on Slideshare | Lecture Notes, etc
...