Learn Linked Lists in 13 minutes 🔗

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024
  • LinkedList data structures and algorithms tutorial example explained
    #linkedlist #linkedlists #tutorial
    // *******************************************************
    // LinkedList = Nodes are in 2 parts (data + address)
    // Nodes are in non-consecutive memory locations
    // Elements are linked using pointers
    // advantages?
    // 1. Dynamic Data Structure (allocates needed memory while running)
    // 2. Insertion and Deletion of Nodes is easy. O(1)
    // 3. No/Low memory waste
    // disadvantages?
    // 1. Greater memory usage (additional pointer)
    // 2. No random access of elements (no index [i])
    // 3. Accessing/searching elements is more time consuming. O(n)
    // uses?
    // 1. implement Stacks/Queues
    // 2. GPS navigation
    // 3. music playlist
    // *******************************************************

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

  • @BroCodez
    @BroCodez  3 ปีที่แล้ว +168

    TL;DR
    small data set: LinkedList = BAD
    large data set + lots of searching: LinkedList = BAD
    large data set + lots of inserting/deleting: LinkedList = GOOD
    import java.util.LinkedList;
    public class Main{

    public static void main(String[] args) {
    // *******************************************************

    // LinkedList = Nodes are in 2 parts (data + address)
    // Nodes are in non-consecutive memory locations
    // Elements are linked using pointers

    // advantages?
    // 1. Dynamic Data Structure (allocates needed memory while running)
    // 2. Insertion and Deletion of Nodes is easy. O(1)
    // 3. No/Low memory waste

    // disadvantages?
    // 1. Greater memory usage (additional pointer)
    // 2. No random access of elements (no index [i])
    // 3. Accessing/searching elements is more time consuming. O(n)

    // uses?
    // 1. implement Stacks/Queues
    // 2. GPS navigation
    // 3. music playlist
    //

    // *******************************************************
    LinkedList linkedList = new LinkedList();
    /*
    // LinkedList as a Stack
    linkedList.push("A");
    linkedList.push("B");
    linkedList.push("C");
    linkedList.push("D");
    linkedList.push("F");
    linkedList.pop();
    */
    // LinkedList as a Queue
    linkedList.offer("A");
    linkedList.offer("B");
    linkedList.offer("C");
    linkedList.offer("D");
    linkedList.offer("F");
    //linkedList.poll();

    //linkedList.add(4, "E");
    //linkedList.remove("E");
    //System.out.println(linkedList.indexOf("F"));


    //System.out.println(linkedList.peekFirst());
    //System.out.println(linkedList.peekLast());
    //linkedList.addFirst("0");
    //linkedList.addLast("G");
    //String first = linkedList.removeFirst();
    //String last = linkedList.removeLast();

    System.out.println(linkedList);

    }
    }

    • @wasemabushhab2943
      @wasemabushhab2943 3 ปีที่แล้ว +2

      🌹🌹🌹

    • @thelastwomanstanding
      @thelastwomanstanding ปีที่แล้ว

      may i know why 1. implement Stacks/Queues
      // 2. GPS navigation
      // 3. music playlist
      is more suitable to use linked list?

    • @LindaSpradlin-xc2ph
      @LindaSpradlin-xc2ph 3 หลายเดือนก่อน

      😅

  • @geeknet07
    @geeknet07 3 ปีที่แล้ว +113

    This channel doesn't have normal content.
    rather masterpieces

  • @leihan2670
    @leihan2670 9 หลายเดือนก่อน +34

    I just love the way you teach, straightforward, easy, and clear。 Lucky to have you in this world

  • @marklaw3938
    @marklaw3938 3 ปีที่แล้ว +38

    What a godsend of a video. I'm crrently doing online CS 1103 course and literally the topic for this week is about linked lists. Thank you for this video. Your videos have truly helpful in my studies thus far.

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +7

      Awesome! Looks like I made this video just in time!
      I'm glad they're helping!

  • @jaimuelsilva5016
    @jaimuelsilva5016 3 ปีที่แล้ว +141

    Your videos teach me more than my professor.

    • @siphiweclintonmthebule6474
      @siphiweclintonmthebule6474 2 ปีที่แล้ว +7

      More knowledge in a shorter period of time

    • @marxLz
      @marxLz 2 ปีที่แล้ว +1

      they're really practical

    • @Ryder-gd9tl
      @Ryder-gd9tl ปีที่แล้ว

      seriously same lol, learned in 10 min what took my professor a 90min lecture

    • @amaanshaikh6868
      @amaanshaikh6868 ปีที่แล้ว

      True😹

    • @joelikespotatoes8321
      @joelikespotatoes8321 ปีที่แล้ว +1

      Same here, I wish I could pinpoint why this is so common, honestly it's concerning that "professionals" are getting dunked on by youtube.

  • @amadujalloh4700
    @amadujalloh4700 3 ปีที่แล้ว +15

    My bro who code;
    You are the best man
    I am a CS student in The Gambia 🇬🇲!
    This channel is awesome

  • @adityajain7486
    @adityajain7486 3 ปีที่แล้ว +18

    You are a god of programming, Thank you for making my life easier. you are way more better than my stupid college teachers.

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

    I absolutely love the way bro introduces himself. i love you bro

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

    That was the most simple straightforward no bs explanation for a data structure ever. You make DS&A look approachable!! Thanks for the content 🙏

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

    I did a happy dance because of how simply you explained this, so even those curious can see if this is something they want to do as far as becoming a programmer. I'm expanding into more complex concepts in Python. this has helped me grasp a concept faster than cheetahs racing. You got yourself a new subscriber!! :D

  • @fredrexsalac961
    @fredrexsalac961 12 วันที่ผ่านมา

    i hope this discussion will be followed the instructions during my next meeting within my instructor

  • @rahulmandal1380
    @rahulmandal1380 3 ปีที่แล้ว +6

    Hlw Bro Code!
    Keep updating this playlist at regular intervals.
    The way you explain is Awesome..
    😊😊😊😊😀😀😀

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +9

      Thanks! I will!
      Weekly is a good interval, these are tough topics to discuss 😅

  • @syedmaaz2374
    @syedmaaz2374 2 ปีที่แล้ว +1

    I buy 2500 rupees course to understand DSA but now i realise my money is waste .Because you more better than course

  • @MrSlinky
    @MrSlinky 2 ปีที่แล้ว +1

    OMG you just helped me to understand in laymen's terms what my professor and multiple other youtubers couldn't

  • @shivamjha5962
    @shivamjha5962 2 ปีที่แล้ว +4

    A docx/pdf file of this courses source codes and notes will be really helpful...thanks for keeping this course free really means a lot!!

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

    This is the only explanation I've been able to comprehend. Thank you

  • @RyanHurku
    @RyanHurku 2 ปีที่แล้ว

    it is unfair that this video only has 554 likes at the time of my viewing , you explained in under 15 minutes , what took my professor 3 hours and 2 slideshows

  • @theuberman7170
    @theuberman7170 3 ปีที่แล้ว +4

    OMG right on time!! Are you reading our minds?

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

    You saved me during my data structures class

  • @ottttoooo
    @ottttoooo 3 ปีที่แล้ว +13

    Hey Bro, I just finished the java for beginners playlist, it was very well done btw! Prior to that, I had absolutely zero experience in coding, and that was a great start.
    What would you recommend for me next? maybe specific projects I could work on to improve my skills? because I feel kinda lost now :D
    Thank you!

    • @B3Band
      @B3Band ปีที่แล้ว

      I've been solving problems on leetcode and hackerrank
      That's how I ended up here, because I've never heard of a linked list despite following Bro Code for like 3 months now

  • @adriano7710
    @adriano7710 3 ปีที่แล้ว +2

    Bro, just what I nedded for a project!!!!
    You are awesome sir.

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +2

      Nice! I made it just in time then!

    • @soumichandra8927
      @soumichandra8927 3 ปีที่แล้ว

      @@BroCodez Bro, I want to contact you. How to do so?

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

    Awesome, simple explanation covering LinkedList thanks

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

    Fastest I have ever subscribed to a channel. I wasn't even half way through the video.
    Well done bro. 😊

  • @visna3319
    @visna3319 ปีที่แล้ว

    your videos make me LOOOVE coding!! never thought I would say that so THANK YOU 🙏🙏

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

    Awesome teaching guide not only teach easily to understand but coding clearly. Thanks greatly!

  • @oni1ecram123
    @oni1ecram123 3 ปีที่แล้ว +6

    "666 Crime circle "....that adress sounds so dark...😅😅

  • @santiagoaristi216
    @santiagoaristi216 2 ปีที่แล้ว +1

    Idk there's really nobody that explains anything like our fellow "Bro". Completely, underrated and undervalued! Thank you for what you do video after video. Btw we need more input more input lol

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

    Thank you so much for the detailed explanation, along with the 'uses' at the end.

  • @hillcountrydev
    @hillcountrydev 2 ปีที่แล้ว

    Just found your channel. One of my fav dev channels on YT. Proud to call myself a bro 🤙🏼

  • @musicspirit7015
    @musicspirit7015 ปีที่แล้ว

    Thank you very muchh! I've been struggling alot about linklist address pointers and arrays for so long , but i watched just 10 mins of yours and I now understand everything! Thanks again brooo T-T

  • @fadethecreator
    @fadethecreator ปีที่แล้ว +3

    Hey bro, could you please do one on singlys like using the linked list class. This is eternally helpful, though I’m struggling to find tutorials on youtube that cover anything like the ListNode class, so if you could that would be amazing because your videos are the best!

  • @abdullahsaid4765
    @abdullahsaid4765 3 ปีที่แล้ว +1

    my bro is here thank you :)+)

  • @goddesscoder
    @goddesscoder 7 วันที่ผ่านมา

    BRO!! THANK YOU SOOOO MUCH!!! I understand😭

  • @changyou4454
    @changyou4454 3 ปีที่แล้ว +2

    🚀100K+ soon! Thanks, Bro you're our hero!

  • @Amir_Plays_non_stop
    @Amir_Plays_non_stop 3 ปีที่แล้ว

    Hahahaha never stop surprising me! Each video is literally blowing my mind, what a way of explaining! Keep it up!

  • @Greekultranationalist
    @Greekultranationalist ปีที่แล้ว +1

    This man teaches Programming better than any college would do.

  • @murtazahuzefa5086
    @murtazahuzefa5086 20 วันที่ผ่านมา

    I ❤ your videos ❤❤❤❤❤

  • @MuhammadUsman-qe1st
    @MuhammadUsman-qe1st 14 วันที่ผ่านมา

    cleared my concept finally

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

    I demand to see what's behind those D&D files!

  • @neil_armweak
    @neil_armweak 3 ปีที่แล้ว +2

    Fantastic content!

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +2

      Thanks neil!

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

    better than all my prof. much love

  • @achillesa5894
    @achillesa5894 ปีที่แล้ว

    The first 5 minutes of this explained it better than a year of university

    • @j12325
      @j12325 ปีที่แล้ว

      Fun fact: he learned from your University

  • @danielmilewski7659
    @danielmilewski7659 2 ปีที่แล้ว

    Awesome video, again Gold standard teaching methods!

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

    Self learner here I do driver development for fun and I could vouch u are him

  • @DanishFarhan-wg3xz
    @DanishFarhan-wg3xz 3 หลายเดือนก่อน

    so many informations in one video :>. thanks

  • @codewithsmoil4098
    @codewithsmoil4098 3 ปีที่แล้ว +1

    You are doing good...
    I'm your new subscriber ^_^

  • @muhammed5667
    @muhammed5667 ปีที่แล้ว

    Thanks for the concise explanation, I feel confident for my quiz!

  • @solonton6341
    @solonton6341 2 ปีที่แล้ว +2

    Thanks for this great video. Can you implement the linked list from scratch?

  • @НуркамалНурмухамед
    @НуркамалНурмухамед 3 ปีที่แล้ว

    Holy shit, that’s incredible man. I really like your tutorials

  • @azamatey
    @azamatey 2 ปีที่แล้ว

    I've become BROOOOOO!!! Thanks broo, you are the best!!!

  • @sigmaxricky6411
    @sigmaxricky6411 3 ปีที่แล้ว

    gave a like before watching coz i know it will be amazing as always

  • @manzil.8105
    @manzil.8105 11 หลายเดือนก่อน

    king , that is what you are , nothing more , nothing less

  • @nimaMotlagh-z8c
    @nimaMotlagh-z8c 4 หลายเดือนก่อน

    Perfect

  • @001Patrick100
    @001Patrick100 ปีที่แล้ว +4

    Random comment is comment

  • @iRandroid
    @iRandroid 3 ปีที่แล้ว +1

    Great as always

  • @slavkomag
    @slavkomag 2 ปีที่แล้ว +3

    Hey, Bro! Could you (or any other of you folks grasping big Oh notation) explain, why inserting and deleting is O(1) and not O(n)? Would'nt the algorithm need to traverse the nodes to find the appropriate place to change the addresses for the newly created element?

    • @NikolasToCore
      @NikolasToCore ปีที่แล้ว +1

      I'm still learning, but i've also been thinking about this, and i think you're right. The time complexity of O(1) for deleting and adding data in a linked list is only at the beginning and end of the list, because there is no need to shift elements like in an array. However, the time complexity becomes linear, O(n), if the element is somewhere "inside" the list. Because linked lists do not have indexes (that's the whole point), the element you want to delete or change within a list has to be found first, and as i understand, it is done by traversing the list. You have to go through all the elements of the list until the end or until a matching element is found.
      So the main advantage of linked lists over arrays is that they can shrink and grow faster if elements are added or deleted from the beginning or end of a list.

    • @Iamfafafel
      @Iamfafafel ปีที่แล้ว

      @@NikolasToCorealso learning but I think deleting at end is O(n) not O(1) since you need to transverse through the whole thing to know where the new end is. Deleting at the beginning is definitely O(1) though

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

    I'm here again to refresh my knowledge.

  • @DavidOwen-e7s
    @DavidOwen-e7s 3 หลายเดือนก่อน

    random comment to help the algorithm :)

  • @burn-e-e6980
    @burn-e-e6980 11 หลายเดือนก่อน +1

    Amazing teaching way really like it

  • @brandonkruger9040
    @brandonkruger9040 3 ปีที่แล้ว

    We on a roll tonight! Thanks for sharing bro.

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

    Nice class

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

    u r a legend

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

    Legend!

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

    👏👏👏

  • @SushiK994
    @SushiK994 3 ปีที่แล้ว +1

    Pretty helpful thank you so much sir

  • @amitaimyers9342
    @amitaimyers9342 2 ปีที่แล้ว +1

    Thank you Bro!

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

    This was extremely helpful, thank you!

  • @alexreznitsky6338
    @alexreznitsky6338 ปีที่แล้ว

    You are my real JavaBro =) thanks a lot

  • @dashunderscore7470
    @dashunderscore7470 ปีที่แล้ว

    thank you bro , loved it , its so detailed and wasy to understand

  • @joelmalepe4862
    @joelmalepe4862 3 ปีที่แล้ว

    Thanks Bro, I always checkout your videos to finally understand these kind of topics. I would really love to meet the person who has hit the dislike button.

  • @mohdsaleh3516
    @mohdsaleh3516 3 ปีที่แล้ว

    Thx Bro for all your videos, i love them all, plz finish as much as u canbon data structure, then plz java design patterns, generics, functional prog. in java (lambda expressions), and parallel programing. Anything you like...

  • @RAHULSINGH-sn2ol
    @RAHULSINGH-sn2ol 3 ปีที่แล้ว

    Much better than my professor,
    Keep it up Bro
    #brocode👍

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

    Lit

  • @houssseinzekra
    @houssseinzekra ปีที่แล้ว

    better from the best coder i know . would you please consider doing it in pytohn

  • @abdurequiem4919
    @abdurequiem4919 2 ปีที่แล้ว

    A video on how to reverse a Linked List please. Btw love your videos 🙌

  • @leruleru8723
    @leruleru8723 ปีที่แล้ว

    Thank you so much bro💫life saving💓

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

    sweet

  • @thaungthanhan5928
    @thaungthanhan5928 ปีที่แล้ว

    Really awesome.

  • @anywaylose3999
    @anywaylose3999 ปีที่แล้ว

    Great video, simple and understandable

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

    very very helpful thank you!

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

    TL;DR
    small data set: LinkedList = BAD
    large data set + lots of searching: LinkedList = BAD
    large data set + lots of inserting/deleting: LinkedList = GOOD
    better are arraylists for seraching and it works like queue and stack

  • @wolanus
    @wolanus 3 ปีที่แล้ว

    Great video, thanks!

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

    broseph thank you

  • @aymanmouhcine5749
    @aymanmouhcine5749 ปีที่แล้ว

    Amazing explanation

  • @felixnyamongo
    @felixnyamongo 2 ปีที่แล้ว

    Awesome Bro

  • @olgavasileva2521
    @olgavasileva2521 2 ปีที่แล้ว

    Поддержим канал комментарием. Just in case, maybe you know Russian as well as Java )))

  • @DevJoeOficial
    @DevJoeOficial ปีที่แล้ว

    Awesome content, tks a lot!!!

  • @AdityaKumar-gf6ov
    @AdityaKumar-gf6ov 7 วันที่ผ่านมา

    thanks bro

  • @ahmadyaseen2617
    @ahmadyaseen2617 3 ปีที่แล้ว

    Please dont stop making videos although you are getting less views and likes we know your videos are worthy and very helpfull for us

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

    👍

  • @meeknkosi
    @meeknkosi 3 ปีที่แล้ว

    am glad to be your bro !

  • @yehannk448
    @yehannk448 3 ปีที่แล้ว +1

    Bro are you thinking of doing a php series ?

  • @murilosilvestre7736
    @murilosilvestre7736 3 ปีที่แล้ว

    great, thank you, bro!

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 ปีที่แล้ว

    Thanks

  • @mindlessmeat4055
    @mindlessmeat4055 ปีที่แล้ว

    Love your videos. They are so good. Did you add and remove an element but didn't show add working?

  • @BOOBASWORD-yb8dd
    @BOOBASWORD-yb8dd 3 หลายเดือนก่อน +1

    now i cant sleep thinking about what comes before the letter "A"

  • @baubaudinamo
    @baubaudinamo 3 ปีที่แล้ว

    Awesome.

  • @sandakelumhalkewela7854
    @sandakelumhalkewela7854 ปีที่แล้ว

    Thanks brocode . this helped me a lot

  • @mortezaaslami2572
    @mortezaaslami2572 ปีที่แล้ว

    Thanks mate

  • @drunkpancakes6277
    @drunkpancakes6277 3 ปีที่แล้ว

    Can you do some object oriented code for Java. Love your channel and need it to not fail my class. Threads and recursive methods and stuff 🥵🙈??