@@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
@@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...
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.
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?
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
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!
//• 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; }
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.
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++?
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,. 😅
if BinarySearch is always better than the LinearSearch..Why does that even exist? is there a specific scenario..that linearSearch works better than Binary?
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.
Perfectly Explained. Also do for LLms
Nice tutorial sir, could you please upload some more advance dsa concepts and some binary search variations.
Today I start my Dsa journey. Let's check when I completed this 😊
This is exactly what I needed. Cant wait to digest the entire episode
Sir please implement one major project with spring boot
Hi telusko Iam a big fan of Your subject and Java Learning 🎀
Sir please bring some mini projects with spring boot
And also 1 major project
@@Sumeshkumarback can you give the links
Innitt എന്തിനാ മൈരേ 😵💫
@@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
@@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...
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.
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?
Navin Anna ❤❤❤
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
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!
//• 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;
}
nuvvu na devudu vi saami
☺😂 mana telugodu
Thank you, teacher❤, don't be tired to teach us
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.
Anyway you are master in teaching. Good Work bro
Can use /n instead of sysoln
Always something good from this channel
Thanks for sharing!
Sir RECURSION IS DREAM MY EXAMPLE ❤
Sir please upload java collection fully sir
Make a project on spring boot
@Telusko please do data structure and algorithms of python because you do very well
That's all I needed rn. Thanks buddy 🎉
hi sir please cover graphs also
Old alien subscribers will say this is reuploded😂
Not the same video
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++?
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,. 😅
What is it enough to learn DSA 🧐
Early one's know this is clipped from previous 48 hour course
Its different, only few know 😅
Well Explained bro.!!
Please Make video in Hindi of c++ DSA
Can I please get the PPT
Thank you for your explanations.
27:00 timestamp1
1:25:00
timestamp 2
I was waiting for this 😊
Please make spring season 6 full course in Hindi 😅
sir for automation testing to learn dsa these video is fine or need to learn more topics?
Thanks 🙌
How to i learn + implement in java ?
Sir please do dsa + python
The most awaited video
Thank you sirji ❤❤❤
sir could you please give the code link
Please do dsa in python
53:02
New one or old one?
old
14:22
if BinarySearch is always better than the LinearSearch..Why does that even exist? is there a specific scenario..that linearSearch works better than Binary?
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.
❤❤❤❤❤❤❤ thank you
Sir please I want to learn html
Could you provide all the pdf and code you used plz.
where is the Algorithm ? its only Data Structure .
Awesome!!!!
option 1
Re-uploaded?
yes
Nope
GOAT ❤❤
3:24:00
Evaindiraaaaaa
we want dsa in python
Sir did you completed all the concepts of DSA in JAVA????
No he just upload basic datastructures
thanks
Tq sir.
interesting
Someone make dsa in python
🎉🎉
New or old?
Old video
it's new video
old
New
who all here on october 2024 , udhar b dekho 1 baar !!!
This is not enough
❤
First comment 😊
To much lengthy explaination.
First view....
Thanks a lot for clear explanation
❤
❤