I just came back from google chrome i saw the same hands and same piece of paper in that website also. Your voice is clear and explanation is also good. Thank you lady.
@nw94099 ай бұрын
Thank you very much , this is the most clear explanation I watched. Thanks
@ValentinRad2 жыл бұрын
Thanks for the video, I was looking for a recap on how to calculate time complexity and this helped a lot 👍
@Varun-iq7uw10 ай бұрын
Your video really helped a lot. Thank You
@omnione27192 жыл бұрын
Great video, short and brief to the point!
@tastytreat01335 жыл бұрын
you saved my grade... thank you very much
@ownyounext3 жыл бұрын
Thank you for this simple explanation!!
@Rohaansingh81 Жыл бұрын
fan ho gaye hum aapki awaaz ke
@technicalexpertise Жыл бұрын
Yaar, your voice really awesome
@santiagoperez67692 жыл бұрын
Wonderful and succinct explanation... thank you!
@anmjubaer3 жыл бұрын
Nicely explained. Thanks.
@akshayvakharia75522 жыл бұрын
Thank you for very good explanation :)
@beautyofnews17715 жыл бұрын
really love your explanation style and subscribed
@cemtopkaya34225 жыл бұрын
Wonderful explanation, thank you so much.
@ervinboljo4153 жыл бұрын
thank you i love your explanation
@Daniel-wt9bh4 жыл бұрын
Why arr[j] = arr[j+1] is 2x, when there are 2 indexing operations and 1 assignment. I think it should be 3x only in that case. Any explanations please.
@birenmer42183 жыл бұрын
I do have the same que N i guess there will be 3 pos as 2 indexing and one assignment
@laujimmy92822 жыл бұрын
I have a question : Wouldn't the first loop go n times instead of n - 1 times ? Because it will need to run once more after i = 1 and change it to i = 0 before exiting the loop ? [edit] ok, I think I got it, since it skipped i = 0, it will only run n-1 times. thx
@arturmarchi73483 жыл бұрын
very clear, perfect, thank you
@aryasarkar35142 жыл бұрын
Mam arr[j]=arr[j+1] ,i think it will take time 3x because there are three primitive operation . Mam requesting you to solve my doubt.
@supperytube2 жыл бұрын
excellent keep it up!
@cocoarecords5 жыл бұрын
Thanks a ton mam veri clear and straightforward
@rahulvarma72574 жыл бұрын
wonderful explanation
@spbirhade2 жыл бұрын
Very nice
@AZ-gm9ol Жыл бұрын
first of all, I should thank you for your great presentation. the thing I could not understand is that how I can interpret the relationship between the worst case and big oh generated from the time function I would be grateful if you could help me understand it
@AZ-gm9ol Жыл бұрын
I realized my misunderstanding. we write the worst and best case for our algorithm while I was thinking 2 different algorithms were assigned to both the worst and best case respectively
@victordarius14425 жыл бұрын
Thank you subscribed and liked.
@allarinani34764 жыл бұрын
Mam ur voice is sweet❣ and well explained.
@easyconcept56772 ай бұрын
Great❤
@skbelalsaheb44375 жыл бұрын
you made a mistake with the second for loop mean you have write :- for(j=0;j
@LalithaNatraj5 жыл бұрын
To clear your doubt, in the code shown in the video, the greatest element is being shifted to the last index each time thereby sorting it. This is an alternate approach to bubble sort. I recommend you to watch the video explaining this pseudo code, named "Bubble Sort - Pseudo Code". This code, once implemented in C++ or java will work.
@aagaming.19985 жыл бұрын
Thank you
@surajkeshari99913 жыл бұрын
Thank you Mam,mai exam aktu ds ko lekar pareshan hu aapane help kia,c programming aur algorithm aache se sikhane ke lia kya kare mam,please reply??😇😇
@jarunajaruna8995 Жыл бұрын
madam how to find best case time complexity ? could you please explain?
@techdevafrica24854 жыл бұрын
arr[j] = arr[j+1] ; is not 3 primitive operations (2 indexing and one assignment) ???
@techdevafrica24854 жыл бұрын
May be j+1 is another primitive operation
@malikdanialahmad76625 жыл бұрын
thank you so much...
@musabraees71883 жыл бұрын
can u please upload videos related to calculate time complexity of best case of sorting algorithms
@wahidsafi99264 жыл бұрын
Fabulous..
@LukiShafer3 жыл бұрын
ty, u saved me
@iExplorer642 жыл бұрын
why did you only explain worst case, but not best case or average case?
@listenuptosaumyadipta94165 жыл бұрын
Mam your voice is so sweet♥️♥️♥️♥️
@louise10214 жыл бұрын
Why is it 11/2n*2 - 11/2n?
@malikansar82895 жыл бұрын
thanks mam
@Darkknight90352 жыл бұрын
best case?
@VivekSharma-rl5vf3 жыл бұрын
mam aapki aavaz AI mein jo human voice invoked hoti hai us jaisi hai
@raghunathan32445 жыл бұрын
Kindly explain 5.35 in brief manner i.e J loop iteration part
@abdulmubeen94734 жыл бұрын
analyze the following code and compute its complexity. a) // C++ program for implementation of Bubble sort #include using namespace std; void swap(int *xp, int *yp) { int temp = *xp; *xp = *yp; *yp = temp; } // A function to implement bubble sort void bubbleSort(int arr[], int n) { int i, j; for (i = 0; i < n-1; i++) // Last i elements are already in place for (j = 0; j < n-i-1; j++) if (arr[j] > arr[j+1]) swap(&arr[j], &arr[j+1]); } /* Function to print an array */ void printArray(int arr[], int size) { int i; for (i = 0; i < size; i++) cout
@supperytube2 жыл бұрын
not easily calculate, the only calculated by computers
@malikdanialahmad76625 жыл бұрын
and please upload insert sort time complexity and (best case, worse case,)??
@lutherlivaiwii38635 жыл бұрын
How to make balance sheets of financial statements
@ShahidAli-cm7fh4 жыл бұрын
Asslam Aliakum! Anyone help please. You are required to calculate (Step by Step) the worst case time complexity T(n) of the algorithm designed. what will be the time complexity T(n) of this code? #include using namespace std; main() { int number, temp; int reverse = 0; cin>>number; temp=number; while (number>0) { reverse = (reverse*10) + number%10; number=number/10; } if(temp == reverse) cout
@suniltv9682 жыл бұрын
If u write any word u should know the meaning without meaning should not be explain it's iretating, ok u said t(n) =11/2 n(square) then according to ap where is -1if any one knows the answer plzz comment here