thnkq so much sir i have watched too many videos but cant understand this logarithmic part u have clear explanation finally i understood
@sidd77_11 ай бұрын
Thank you for making these videos sir, very helpful!
@Tkklak10 ай бұрын
Excellent explanation, thank you
@ChaitanyaKumar-r7j6 ай бұрын
Respected Sir, in this video at around 12.48 point, you have said that the loop gets executed for (n+1) times and then again at 13.53 point you have taken similar loop but saying it gets executed n times. How can both be different sir?
@lhtcboss20027 ай бұрын
Excellent ,this is quite clear thank you so much Sir
@lachimolala3602 ай бұрын
great explanation sir!
@tejasreebole94275 ай бұрын
Sir in some examples you are taking n+1,and in others n for the same loop,how will it differ??? Are u just avoiding the constants????
@tejasreebole94275 ай бұрын
In the last example the print statement is inside the loop so it will be executed for n times ,even though the time complexity is 0(n) we get the equation as 2n+3
@myrealm71155 ай бұрын
hey could you explain what did he tell at 9:34 by showing other time complexities ?
@Rakshithaailla-f7h10 ай бұрын
Thank you sir🎉
@manishareddy627 Жыл бұрын
Hello sir I have watched all your videos on DBMS and SQL.. I really found it useful!! Would it be possible for you to share any PDF on SQL?
@carromplayer43574 ай бұрын
Thank you sir... ❤
@lokeshpallapu1018 ай бұрын
Good explanation sir
@sahanakgowda26847 ай бұрын
in the last example ,,why didn't u avoided constant in n+1 sir
@infuze66477 ай бұрын
Because when writing it in terms of big O, we get rid of any constants, so the +1 will be removed and we only write O(n)
@Srikanth11-bh2zx7 ай бұрын
Thank you 👍
@killerkisser91304 ай бұрын
Thanks you sir
@raistar72 Жыл бұрын
Deep learning technique subject playlist plz
@sampathm42535 ай бұрын
thank u sir
@faizanmaalik9715 Жыл бұрын
@patrickemerysevor7410 Жыл бұрын
Mr. Saradhi please can you me with this: perform a theoritical analysis on the algorithm below and state the complexity functionand asymtotic compleity #include void swap(int &a, int &b){ int temp = a; a = b: b = temp; } void Sort(int arr[], int n){ for (int i = 0; i < n - i - 1; ++j){ for (int j = 0; j < n - i - 1; ++j){ // compare adjacent elementa if (arr[j] > arr[j + 1]){ // Swap if they are in the wrong order swap(arr[j] > arr[j + 1]); } } } void printArray(int arr[], int size){ for (int i = 0; i < size; i ++){ std:: cout
@vlogwithvivek82077 ай бұрын
sir i run 0 to n then time complexity come O(n) if we want to run i 0 to 5 then what will be the time complexity