1:18:15 we can Identify if its already sorted using a boolean. Like private static void bubbleSortInAscendingOrder(int[] data) { boolean isStillSwapping; for (int i = 0; i < data.length; i++) { isStillSwapping = false; for (int j = 0; j < (data.length - 1 - i); j++) { // if (data[j] < data[j + 1]) => It will sort in descending order if (data[j] > data[j + 1]) { isStillSwapping = true; int temp = data[j]; data[j] = data[j + 1]; data[j + 1] = temp; } } if (!isStillSwapping) { // NO SWAP, means already sorted break; } } }
@biswadeepchakraborty35463 ай бұрын
Nice tutorial sir, could you please upload some more advance dsa concepts and some binary search variations.
@BaTmAn-v2f4u3 ай бұрын
Hi telusko Iam a big fan of Your subject and Java Learning 🎀
@deveshkumar40733 ай бұрын
Sir please bring some mini projects with spring boot
@bhushanrevankar84643 ай бұрын
And also 1 major project
@deveshkumar40733 ай бұрын
@@Sumeshkumarback can you give the links
@faru23013 ай бұрын
Innitt എന്തിനാ മൈരേ 😵💫
@CodingMakesMeHappy3 ай бұрын
@@Sumeshkumarbacklots of videos where😂 crud operations is not spring boot project. There are many videos on spring boot projects but those are not actually projects they are crud operations. Like mern stack there are no videos on spring boot
@invincible_ayushcg3 ай бұрын
@@CodingMakesMeHappy I have watched videos on related projects and I found low coding standards so I recommend to all of you learners, used GitHub repo and chatgpt to build mejor...
@omeysalvi3 ай бұрын
This is exactly what I needed. Cant wait to digest the entire episode
@bhushanrevankar84643 ай бұрын
Sir please implement one major project with spring boot
@ShreyanshTiwari-t1l2 ай бұрын
Thanks, I have watch the video till the last second and was implementing things along with the process, I loved the way you taught these thing in a very easy way. Again thanks a lot!
@elforeyyy3 ай бұрын
Thank you so much Sir for Teaching. I started my journey last year and have learned Core Java, Servlet, Hibernate, Spring Core, Springboot and now am on micro-services. Fortunately I got a project for online school system and i used springboot with thymeleaf. I need help on which hosting wen-service can I use. Am in South Africa and I couldn't get help from anyone
@GreatestOneEver17 күн бұрын
Subbed, thank you for the video.
@vijayakumarnigadi67523 күн бұрын
Hello Naveen , Please do some demo projects on spring boot microservices
@yashnarbekTPC3 ай бұрын
Thank you, teacher❤, don't be tired to teach us
@piyushbera82422 ай бұрын
21:13 the first one in yellow box because its operations or the number of steps taken to reach the output is less than the second one where it moves through the entire checking every element. Let me know if i'm wrong somewhere. I'd love your feedback.
@aarifmohamedhassan3 ай бұрын
When you explaining about Binary search, there is bit confusion. you mentioned that, Mid will become End, but the Pseudo code says, end = mid -1. and this will make error when you calculating mid element. that is, you said, mid = s + e /2. but this will be little error i think. so Mid calculation will be like below ; Mid = Start +(end - Start) /2 . I hope, it is clear.
@aarifmohamedhassan3 ай бұрын
Anyway you are master in teaching. Good Work bro
@CodeWithLogicalPradipАй бұрын
Can use /n instead of sysoln
@davebudah3 ай бұрын
Always something good from this channel
@DetrickQuinonez3 ай бұрын
Thanks for the breakdown! I need some advice: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). Could you explain how to move them to Binance?
@nanip39464 күн бұрын
Just a suggestion… never put your security passphrase anywhere in the internet. People can use your key and email to get access very easily.
@gEngIneerftwАй бұрын
3:42:00 about the delete method. What if I want to delete the first element?
@ragothamanragothaman724414 күн бұрын
just change the head
@王时代2 ай бұрын
Thanks for sharing!
@oladeletemenu38643 ай бұрын
Thank you for your explanations.
@ShreyanshTiwari-t1l3 ай бұрын
That's all I needed rn. Thanks buddy 🎉
@jayasurya.p43013 ай бұрын
Sir please upload java collection fully sir
@piyushjainwork013 ай бұрын
Well Explained bro.!!
@Student_2004-q4y9 күн бұрын
Whats the difference between old DSA video and this?
@Student_2004-q4y6 күн бұрын
@Telusko
@SouvikMishra2 ай бұрын
Today I start my Dsa journey. Let's check when I completed this 😊
@rutuja644815 күн бұрын
How long you reached?😊
@ALONEEATER11 күн бұрын
@@rutuja6448 😵💫😵💫😵💫
@bgmiwrath92516 күн бұрын
Is this single video enough to learn DSA using Java? what more would be needed after this video with learning and interview point of view.
@WorstinJava3 ай бұрын
Sir RECURSION IS DREAM MY EXAMPLE ❤
@SnehansuPradhan3 ай бұрын
Make a project on spring boot
@ManojKv-wi9gz4 күн бұрын
Man i have interview on monday and im studing all this now
@Kishor-ReddyАй бұрын
//• Worst-case: O(n2) (e.g., for a reverse-sorted array). // Best-case: O(n) (e.g., for an already sorted array due to the early exit condition). public static int[] bubbleSort(int[] numbers){ int temp=0; boolean swaped=false; for (int i = 0; i < numbers.length; i++) { swaped=false; for (int j = 0; j < numbers.length-1; j++) { if(numbers[j]>numbers[j+1]){ // swap temp=numbers[j]; numbers[j]=numbers[j+1]; numbers[j+1]=temp; swaped=true; } } if(!swaped){ // if no swap in the iteration then its already sorted no need iterate again return numbers; } } return numbers; }
@Harshitha-9Ай бұрын
hi sir please cover graphs also
@shivamji623218 күн бұрын
Sir post order ka logic kya hoga
@temporaryerror-gm2zfАй бұрын
@Telusko please do data structure and algorithms of python because you do very well
@tanu_matre3 ай бұрын
I was waiting for this 😊
@Vanshgupta20053 ай бұрын
Please Make video in Hindi of c++ DSA
@sathvikrk2002Ай бұрын
Can I please get the PPT
@NarasimhaReddy-mv3hs3 ай бұрын
nuvvu na devudu vi saami
@ajkumar00633 ай бұрын
☺😂 mana telugodu
@Hari_Goud3 ай бұрын
Navin Anna ❤❤❤
@SP-qk6vd2 ай бұрын
27:00 timestamp1
@poisondart558629 күн бұрын
Damn !! The whole video❤❤❤❤❤❤
@dhiva-r6x3 ай бұрын
sir for automation testing to learn dsa these video is fine or need to learn more topics?
@SP-qk6vd2 ай бұрын
1:25:00 timestamp 2
@limonkhandokar22552 ай бұрын
How to i learn + implement in java ?
@TirthPrajapati-by9mu3 ай бұрын
Thank you sirji ❤❤❤
@heamnth-f5j21 күн бұрын
helpful🤩
@sabyasachisaha22673 ай бұрын
The most awaited video
@mukeshruwali43193 ай бұрын
Could you provide all the pdf and code you used plz.
@sharish8449Ай бұрын
sir could you please give the code link
@Himanshu_DhandoleАй бұрын
Thanks 🙌
@UmaRastogi-s9j3 ай бұрын
Old alien subscribers will say this is reuploded😂
@Telusko3 ай бұрын
Not the same video
@azharalibhutto12093 ай бұрын
❤❤❤❤❤❤❤ thank you
@t.dushyanthbalaji36383 ай бұрын
What is it enough to learn DSA 🧐
@rabbitlover76563 ай бұрын
Why do most universities or institutes start learning Java programming language instead of C++, especially in India and Saudi Arabia? I mean, on the first day in college or institute, they start teaching Java without teaching C++ before it, knowing that students are supposed to study C++ and then start teaching them any language they want, whether Java or another. Why do Indians and Saudis use Java extensively? I mean, most of their programmers are proficient in Java, regardless of whether they use it or not, but they teach us even if they don't use it? I mean, is there a secret in Java that we don't know yet, and why are its users more numerous than C++?
@amitkhati6572 ай бұрын
I don't think so as our college has C++ in our 4th sem and java in 5th , and yes it's a diploma course so that's why we are being taught these programming languages so late,. 😅
@BddbbdBsbsvd3 ай бұрын
Please do dsa in python
@itz_Manish023 ай бұрын
Please make spring season 6 full course in Hindi 😅
@User-083-3Ай бұрын
Sir please do dsa + python
@leoniaklebanov25023 ай бұрын
Awesome!!!!
@MOROIS-HAQ2 ай бұрын
Sir please I want to learn html
@nannadash68533 ай бұрын
where is the Algorithm ? its only Data Structure .
@nandhu25493 ай бұрын
New one or old one?
@vkstar83953 ай бұрын
old
@RishamRaj-fe6sl3 ай бұрын
Early one's know this is clipped from previous 48 hour course
@Telusko3 ай бұрын
Its different, only few know 😅
@lakshmiperumal13 ай бұрын
53:02
@rameshbuvi3384Ай бұрын
if BinarySearch is always better than the LinearSearch..Why does that even exist? is there a specific scenario..that linearSearch works better than Binary?
@FFKUNAL5449WАй бұрын
See without linear search nothing is possible because every other is just an upgrade of linear search with different technique but we always have to compare things for this linear search is best.
@user-cz5rq6zt4r3 ай бұрын
thanks
@sanushcj3 ай бұрын
GOAT ❤❤
@SP-qk6vd2 ай бұрын
3:24:00
@youtubesai67152 ай бұрын
Evaindiraaaaaa
@elHispano21062 ай бұрын
14:22
@psudhakarreddy65483 ай бұрын
Tq sir.
@MeiyarasuS3 ай бұрын
Re-uploaded?
@vkstar83953 ай бұрын
yes
@Telusko3 ай бұрын
Nope
@JeetYadav-i6w3 ай бұрын
Sir did you completed all the concepts of DSA in JAVA????
@VenuKanchiraju3 ай бұрын
No he just upload basic datastructures
@siva_avinash_3 ай бұрын
option 1
@manikumar-vr3kp3 ай бұрын
we want dsa in python
@sreenivaskarthikeya384828 күн бұрын
10:47 😂
@andrejsslobodjaniks9995Ай бұрын
interesting
@bhattbrthers75983 ай бұрын
🎉🎉
@manishmali74403 ай бұрын
❤
@Shiv.aprasad_3 ай бұрын
Someone make dsa in python
@deveshkumar40733 ай бұрын
First comment 😊
@nileshd10623 ай бұрын
This is not enough
@Rajat_Kumar03083 ай бұрын
who all here on october 2024 , udhar b dekho 1 baar !!!