Remember
Register
Algorithms Q&A
Nobel Prize in Economics
Algorithms Textbook
Q&A
Questions
Unanswered
Ask a Question
AI Teams
Lecture Notes
Categories
All categories
Math Basics
(5)
Asymptotic Analysis
(38)
Divide & Conquer
(18)
Greedy Algorithms
(10)
Dynamic Programming
(19)
Backtracking/DFS/BFS
(2)
Branch & Bound
(6)
Graph Theory
(11)
NP-Completeness
(8)
Artificial Intelligence
(28)
Randomized Algorithms
(1)
Most popular tags
asymptotic-analysis
recurrence-relations
time-complexity
loops
asymptotic-notation
graph
dynamic-programming
greedy
substitution-method
analysis
a-star
np-completeness
nested-loops
vertex-coloring
mdp
log
probability
stochastic
heuristic
master-theorem
markov-model
n-puzzle
csp
graph-coloring
exam
mvcs
small-oh
exponent
proof
viterbi
bayes-rule
hmm
tree-search
grid-world
admissible
n-queens
conflict
ai
clique
coins
reduction
dfs
prime-numbers
sqrt
count
easy
sorted-lists
logn
example
recursive
gcd
independent-set
unsolvable
pcp
counter-example
not-master-theorem
modulus
algebra
most-likely-estimate
reinforcement-learning
direct-evaluation
meu
articulation-point
hotel-room
small-omega
limit-method
mle
graph-search
while-loop
greedy-suboptimal
job-assignment
maximize-value
gold
constraint-satisfaction-problem
8-puzzle
task-environments
min-max
peak
randomized
satisfiability
random-graph-generation
proxy
network
sudoku
branchandbound
d&c
degree-constrained
spanning-tree
vertex-cover
branch
subtree
series
pmi
bound
contradiction
math
backtracking
tree
minimize
floors
Analyze Double Loop - j starts from i*i
0
votes
for (int i = 1 to n) {
for (int j = i*i to n) {
sum += a[i]*b[j]
}
}
loops
asymptotic-notation
analysis
asymptotic-analysis
asked
Nov 22
in
Asymptotic Analysis
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1
Answer
0
votes
This is explained here:
https://www.youtube.com/watch?v=tngRU1Mp8M0
answered
Nov 22
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
Please
log in
or
register
to add a comment.
Related questions
0
votes
5
answers
Asymptotic Analysis - Triple Loop - k starts from j^2
asked
Jul 2, 2016
in
Asymptotic Analysis
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
asymptotic-notation
loops
analysis
0
votes
0
answers
Analyze Triple Loop - j and k start with i^2 and j^2 respectively
asked
Nov 4
in
Asymptotic Analysis
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
loops
asymptotic-notation
analysis
exam
0
votes
2
answers
Time Complexity Analysis - Double Loop - Second increments by 0.01
asked
Aug 20, 2016
in
Asymptotic Analysis
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
time-complexity
asymptotic-notation
loops
analysis
0
votes
3
answers
Time Complexity Analysis - Inner loop var gets squared
asked
Jan 15, 2016
in
Asymptotic Analysis
by
Amrinder Arora
AlgoMeister
(
1.6k
points)
analysis
loops
asymptotic-notation
time-complexity
+1
vote
1
answer
Time Complexity Analysis - 2 (2nd by log n)
asked
Jan 19, 2016
in
Asymptotic Analysis
by
anonymous
analysis
loops
asymptotic-notation
The Book: Analysis and Design of Algorithms
|
Presentations on Slideshare
|
Lecture Notes, etc
...