Data Structures and Algorithms (DSA) in Java 2024

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ธ.ค. 2024

ความคิดเห็น • 99

  • @kipngetichabsalom9100
    @kipngetichabsalom9100 2 หลายเดือนก่อน +22

    Perfectly Explained. Also do for LLms

  • @biswadeepchakraborty3546
    @biswadeepchakraborty3546 2 หลายเดือนก่อน +8

    Nice tutorial sir, could you please upload some more advance dsa concepts and some binary search variations.

  • @SouvikMishra
    @SouvikMishra หลายเดือนก่อน +1

    Today I start my Dsa journey. Let's check when I completed this 😊

  • @omeysalvi
    @omeysalvi 2 หลายเดือนก่อน +3

    This is exactly what I needed. Cant wait to digest the entire episode

  • @bhushanrevankar8464
    @bhushanrevankar8464 2 หลายเดือนก่อน +6

    Sir please implement one major project with spring boot

  • @BaTmAn-v2f4u
    @BaTmAn-v2f4u 2 หลายเดือนก่อน +8

    Hi telusko Iam a big fan of Your subject and Java Learning 🎀

  • @deveshkumar4073
    @deveshkumar4073 2 หลายเดือนก่อน +78

    Sir please bring some mini projects with spring boot

    • @bhushanrevankar8464
      @bhushanrevankar8464 2 หลายเดือนก่อน +2

      And also 1 major project

    • @deveshkumar4073
      @deveshkumar4073 2 หลายเดือนก่อน +1

      @@Sumeshkumarback can you give the links

    • @faru2301
      @faru2301 2 หลายเดือนก่อน

      Innitt എന്തിനാ മൈരേ 😵‍💫

    • @CodingMakesMeHappy
      @CodingMakesMeHappy 2 หลายเดือนก่อน

      ​@@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_ayushcg
      @invincible_ayushcg 2 หลายเดือนก่อน

      ​@@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...

  • @piyushbera8242
    @piyushbera8242 หลายเดือนก่อน

    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.

  • @DetrickQuinonez
    @DetrickQuinonez 2 หลายเดือนก่อน +3

    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?

  • @Hari_Goud
    @Hari_Goud 2 หลายเดือนก่อน +7

    Navin Anna ❤❤❤

  • @elforeyyy
    @elforeyyy 2 หลายเดือนก่อน +1

    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

  • @ShreyanshTiwari-t1l
    @ShreyanshTiwari-t1l 28 วันที่ผ่านมา

    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!

  • @Kishor-Reddy
    @Kishor-Reddy 14 วันที่ผ่านมา

    //• 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;
    }

  • @NarasimhaReddy-mv3hs
    @NarasimhaReddy-mv3hs 2 หลายเดือนก่อน +7

    nuvvu na devudu vi saami

    • @ajkumar0063
      @ajkumar0063 2 หลายเดือนก่อน +5

      ☺😂 mana telugodu

  • @yashnarbekTPC
    @yashnarbekTPC 2 หลายเดือนก่อน +2

    Thank you, teacher❤, don't be tired to teach us

  • @aarifmohamedhassan
    @aarifmohamedhassan หลายเดือนก่อน +1

    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.

    • @aarifmohamedhassan
      @aarifmohamedhassan หลายเดือนก่อน

      Anyway you are master in teaching. Good Work bro

  • @CodeWithLogicalPradip
    @CodeWithLogicalPradip 20 วันที่ผ่านมา +1

    Can use /n instead of sysoln

  • @davebudah
    @davebudah 2 หลายเดือนก่อน +1

    Always something good from this channel

  • @王时代
    @王时代 หลายเดือนก่อน +2

    Thanks for sharing!

  • @WorstinJava
    @WorstinJava 2 หลายเดือนก่อน +1

    Sir RECURSION IS DREAM MY EXAMPLE ❤

  • @jayasurya.p4301
    @jayasurya.p4301 2 หลายเดือนก่อน +2

    Sir please upload java collection fully sir

  • @SnehansuPradhan
    @SnehansuPradhan 2 หลายเดือนก่อน +2

    Make a project on spring boot

  • @temporaryerror-gm2zf
    @temporaryerror-gm2zf 16 วันที่ผ่านมา

    @Telusko please do data structure and algorithms of python because you do very well

  • @ShreyanshTiwari-t1l
    @ShreyanshTiwari-t1l 2 หลายเดือนก่อน

    That's all I needed rn. Thanks buddy 🎉

  • @Harshitha-9
    @Harshitha-9 วันที่ผ่านมา

    hi sir please cover graphs also

  • @UmaRastogi-s9j
    @UmaRastogi-s9j 2 หลายเดือนก่อน +9

    Old alien subscribers will say this is reuploded😂

    • @Telusko
      @Telusko  2 หลายเดือนก่อน +5

      Not the same video

  • @rabbitlover7656
    @rabbitlover7656 2 หลายเดือนก่อน +2

    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++?

    • @amitkhati657
      @amitkhati657 หลายเดือนก่อน

      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,. 😅

  • @t.dushyanthbalaji3638
    @t.dushyanthbalaji3638 2 หลายเดือนก่อน +1

    What is it enough to learn DSA 🧐

  • @RishamRaj-fe6sl
    @RishamRaj-fe6sl 2 หลายเดือนก่อน +2

    Early one's know this is clipped from previous 48 hour course

    • @Telusko
      @Telusko  2 หลายเดือนก่อน +2

      Its different, only few know 😅

  • @piyushjainwork01
    @piyushjainwork01 2 หลายเดือนก่อน

    Well Explained bro.!!

  • @Vanshgupta2005
    @Vanshgupta2005 2 หลายเดือนก่อน

    Please Make video in Hindi of c++ DSA

  • @sathvikrk2002
    @sathvikrk2002 10 วันที่ผ่านมา +1

    Can I please get the PPT

  • @oladeletemenu3864
    @oladeletemenu3864 2 หลายเดือนก่อน

    Thank you for your explanations.

  • @SP-qk6vd
    @SP-qk6vd หลายเดือนก่อน

    27:00 timestamp1

  • @SP-qk6vd
    @SP-qk6vd หลายเดือนก่อน

    1:25:00
    timestamp 2

  • @tanu_matre
    @tanu_matre 2 หลายเดือนก่อน +1

    I was waiting for this 😊

  • @itz_Manish02
    @itz_Manish02 2 หลายเดือนก่อน +1

    Please make spring season 6 full course in Hindi 😅

  • @dhiva-r6x
    @dhiva-r6x 2 หลายเดือนก่อน

    sir for automation testing to learn dsa these video is fine or need to learn more topics?

  • @Himanshu_Dhandole
    @Himanshu_Dhandole 16 วันที่ผ่านมา

    Thanks 🙌

  • @limonkhandokar2255
    @limonkhandokar2255 หลายเดือนก่อน

    How to i learn + implement in java ?

  • @User-083-3
    @User-083-3 20 วันที่ผ่านมา

    Sir please do dsa + python

  • @sabyasachisaha2267
    @sabyasachisaha2267 2 หลายเดือนก่อน

    The most awaited video

  • @TirthPrajapati-by9mu
    @TirthPrajapati-by9mu 2 หลายเดือนก่อน

    Thank you sirji ❤❤❤

  • @sharish8449
    @sharish8449 23 วันที่ผ่านมา

    sir could you please give the code link

  • @BddbbdBsbsvd
    @BddbbdBsbsvd 2 หลายเดือนก่อน

    Please do dsa in python

  • @lakshmiperumal1
    @lakshmiperumal1 2 หลายเดือนก่อน

    53:02

  • @nandhu2549
    @nandhu2549 2 หลายเดือนก่อน +1

    New one or old one?

    • @vkstar8395
      @vkstar8395 2 หลายเดือนก่อน

      old

  • @elHispano2106
    @elHispano2106 หลายเดือนก่อน

    14:22

  • @rameshbuvi3384
    @rameshbuvi3384 23 วันที่ผ่านมา

    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
      @FFKUNAL5449W 21 ชั่วโมงที่ผ่านมา +1

      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.

  • @azharalibhutto1209
    @azharalibhutto1209 2 หลายเดือนก่อน

    ❤❤❤❤❤❤❤ thank you

  • @MOROIS-HAQ
    @MOROIS-HAQ หลายเดือนก่อน

    Sir please I want to learn html

  • @mukeshruwali4319
    @mukeshruwali4319 2 หลายเดือนก่อน

    Could you provide all the pdf and code you used plz.

  • @nannadash6853
    @nannadash6853 2 หลายเดือนก่อน

    where is the Algorithm ? its only Data Structure .

  • @leoniaklebanov2502
    @leoniaklebanov2502 2 หลายเดือนก่อน

    Awesome!!!!

  • @siva_avinash_
    @siva_avinash_ 2 หลายเดือนก่อน

    option 1

  • @MeiyarasuS
    @MeiyarasuS 2 หลายเดือนก่อน

    Re-uploaded?

    • @vkstar8395
      @vkstar8395 2 หลายเดือนก่อน

      yes

    • @Telusko
      @Telusko  2 หลายเดือนก่อน +1

      Nope

  • @sanushcj
    @sanushcj 2 หลายเดือนก่อน

    GOAT ❤❤

  • @SP-qk6vd
    @SP-qk6vd หลายเดือนก่อน

    3:24:00

  • @manikumar-vr3kp
    @manikumar-vr3kp 2 หลายเดือนก่อน

    we want dsa in python

  • @JeetYadav-i6w
    @JeetYadav-i6w 2 หลายเดือนก่อน +2

    Sir did you completed all the concepts of DSA in JAVA????

    • @VenuKanchiraju
      @VenuKanchiraju 2 หลายเดือนก่อน

      No he just upload basic datastructures

  • @user-cz5rq6zt4r
    @user-cz5rq6zt4r หลายเดือนก่อน

    thanks

  • @psudhakarreddy6548
    @psudhakarreddy6548 2 หลายเดือนก่อน

    Tq sir.

  • @andrejsslobodjaniks9995
    @andrejsslobodjaniks9995 21 วันที่ผ่านมา

    interesting

  • @Shiv.aprasad_
    @Shiv.aprasad_ 2 หลายเดือนก่อน

    Someone make dsa in python

  • @bhattbrthers7598
    @bhattbrthers7598 2 หลายเดือนก่อน

    🎉🎉

  • @Homelander_30
    @Homelander_30 2 หลายเดือนก่อน +2

    New or old?

    • @Gokul0717
      @Gokul0717 2 หลายเดือนก่อน

      Old video

    • @munib2023
      @munib2023 2 หลายเดือนก่อน

      it's new video

    • @vkstar8395
      @vkstar8395 2 หลายเดือนก่อน

      old

    • @Telusko
      @Telusko  2 หลายเดือนก่อน +3

      New

  • @Rajat_Kumar0308
    @Rajat_Kumar0308 2 หลายเดือนก่อน

    who all here on october 2024 , udhar b dekho 1 baar !!!

  • @nileshd1062
    @nileshd1062 2 หลายเดือนก่อน

    This is not enough

  • @manishmali7440
    @manishmali7440 2 หลายเดือนก่อน

  • @deveshkumar4073
    @deveshkumar4073 2 หลายเดือนก่อน

    First comment 😊

  • @Mahiti-In-marathi
    @Mahiti-In-marathi 2 หลายเดือนก่อน +1

    To much lengthy explaination.

  • @JeetYadav-i6w
    @JeetYadav-i6w 2 หลายเดือนก่อน

    First view....

  • @soujanyand8100
    @soujanyand8100 2 หลายเดือนก่อน

    Thanks a lot for clear explanation

  • @piyushkumar6609
    @piyushkumar6609 2 หลายเดือนก่อน

  • @The_Ashwatthama
    @The_Ashwatthama 2 หลายเดือนก่อน