Dynamic Arrays 🌱

Поделиться
HTML-код
  • Опубликовано: 30 июл 2024
  • Dynamic arrays arraylists tutorial example explained
    Part 1 (00:00:00) theory
    Part 2 (00:05:00) practice
    #dynamic #arrays #arraylists
  • НаукаНаука

Комментарии • 119

  • @BroCodez
    @BroCodez  3 года назад +77

    I forgot to add a get() method for random access 🤦‍♂️
    I've included that in the code posted here...
    public class Main{

    public static void main(String[] args) {
    DynamicArray dynamicArray = new DynamicArray(5);

    dynamicArray.add("A");
    dynamicArray.add("B");
    dynamicArray.add("C");

    //System.out.println(dynamicArray.get(0));
    //dynamicArray.insert(0, "X");
    //dynamicArray.delete("A");
    //System.out.println(dynamicArray.search("C"));

    System.out.println(dynamicArray);
    System.out.println("size: " + dynamicArray.size);
    System.out.println("capacity: " + dynamicArray.capacity);
    System.out.println("empty: " + dynamicArray.isEmpty());
    }
    }
    public class DynamicArray {
    int size;
    int capacity = 10;
    Object[] array;

    public DynamicArray() {
    this.array = new Object[capacity];
    }
    public DynamicArray(int capacity) {
    this.capacity = capacity;
    this.array = new Object[capacity];
    }

    public Object get(int index) {
    return array[index];
    }

    public void add(Object data) {

    if(size >= capacity) {
    grow();
    }
    array[size] = data;
    size++;
    }

    public void insert(int index, Object data) {

    if(size >= capacity) {
    grow();
    }
    for(int i = size; i > index; i--) {
    array[i] = array[i - 1];
    }
    array[index] = data;
    size++;
    }

    public void delete(Object data) {

    for(int i = 0; i < size; i++) {
    if(array[i] == data) {
    for(int j = 0; j < (size - i - 1); j++){
    array[i + j] = array[i + j + 1];
    }
    array[size - 1] = null;
    size--;
    if(size

    • @user-og9sg7fr1v
      @user-og9sg7fr1v 3 года назад

      Can u make a swift all in 1 course plssss

    • @macklykyn8967
      @macklykyn8967 2 года назад +2

      You forgot the clear() method,
      public static void clear(){
      array=null;
      size=0;
      }
      thank you sir for your explanation

    • @joyceasante8292
      @joyceasante8292 Год назад +1

      Practicing...
      import java.util.*;
      public class Main
      {
      public static void main(String[] args) {
      DynamicArray dynamicArray = new DynamicArray();
      //System.out.println(dynamicArray.capacity);
      dynamicArray.add("1");
      dynamicArray.add("2");
      dynamicArray.add("3");
      dynamicArray.insert(0,"0");
      dynamicArray.delete("")
      System.out.println(dynamicArray);
      System.out.println("size: " +dynamicArray.size);
      System.out.println("capacity: " +dynamicArray.capacity);
      System.out.println("empty: " +dynamicArray.isEmpty());
      }
      }
      ***************
      public class DynamicArray{
      int size;
      int capacity = 15;
      Object[] array;
      public DynamicArray(){
      this.array = new Object[capacity];
      }
      public DynamicArray(int capacity){
      this.capacity = capacity;
      this.array = new Object[capacity];
      }
      public void add(Object data){
      if(size >= capacity){
      grow();
      }
      array[size] = data;
      size++;
      }
      public void insert(int index, Object data){
      if(size >= capacity){
      grow();
      }
      for(int i = size; i > index; i--){
      array[i] = array[i-1];//Shifting all elements to the right
      }
      array[index] = data;
      size++;
      }
      public void delete(Object data){
      for(int i = 0; i < size; i++){
      if(array[i] == data){
      for(int j = 0; j < (size - i + i); j++){
      array[i + j] = array[i + j + i];
      }
      array[size - 1] = null;
      size--;
      if(size

  • @MarshGames
    @MarshGames 2 года назад +6

    This is so sick. Thank you for taking the time to explain and build a working ArrayList. I love people like you that explain things with both graphics and code. I have 0 questions about a topic when you put it together this organized. And the code in the comments (and the commented explanations)... 😙👌

  • @BN-cr3el
    @BN-cr3el 3 года назад +9

    Best videos on Data Structure & Algorithm. Thank you for making them!

  • @s.w.5169
    @s.w.5169 3 года назад +38

    I hope you will continue this series. It's just amazing!

    • @BroCodez
      @BroCodez  3 года назад +15

      Thanks! I will be, this playlist will probably have close to 20-ish videos

  • @neil_armweak
    @neil_armweak 3 года назад +2

    Currently having java as main programming language in my college, and your videos are really helpful. Thanks!

  • @conradpierce8994
    @conradpierce8994 3 года назад

    very glad to see your views increasing :) you deserve it and I'm happy that people finally found this gem.

  • @AbhijeetKumar-cm3jh
    @AbhijeetKumar-cm3jh 3 года назад +2

    Yayy, Was waiting for it, your explanations are really great, thanks :)

  • @tnkabtus
    @tnkabtus 2 года назад

    i love your videos, they're so easy to watch and understand. thank you.

  • @shaistakamran4059
    @shaistakamran4059 3 года назад +2

    great LECTURE.
    still need to see this over again. love your lectures.

    • @BroCodez
      @BroCodez  3 года назад +2

      Np! Thanks for watching Fahad!

  • @phyusinlin574
    @phyusinlin574 Год назад +2

    Thank you so much for providing this enlighting tutorial.

  • @babyfeavel71
    @babyfeavel71 Год назад

    You bring back the joy of code. Feel's good to see relaxing tutorials just solving problems🌻

  • @sadasasdas8467
    @sadasasdas8467 2 года назад +1

    Such as amazing video. This helped me out heaps! thanks. Subscribed !

  • @ibrahimkhaliltoure785
    @ibrahimkhaliltoure785 Год назад

    That was valuable ! Thank you sir for the great work👍🏾

  • @oswallt06
    @oswallt06 11 месяцев назад

    Thanks for this video. It was interesting to see you implement a custom dynamic list rather than just using Java's ArrayList.

  • @Rumen35
    @Rumen35 3 года назад +1

    Thanks bro! Very good and easy to understand explanations

  • @panagiotiskougioumtzidis9114
    @panagiotiskougioumtzidis9114 3 года назад

    You are doing really great!

  • @yeonve
    @yeonve 3 года назад

    Thanks bro I like a video like this and tutorial KEEP IT UP 💓💓💆‍♂️

  • @Naz-yi9bs
    @Naz-yi9bs 3 года назад

    Don't know Java yet trying to understand it with little bit of Python knowledge I have, thank you for the video.

  • @attalaw36
    @attalaw36 3 года назад

    nice sound and very good lession thank you

  • @ledsonvanini7421
    @ledsonvanini7421 2 года назад

    Fantastic. Tank you so much!

  • @kugi7786
    @kugi7786 3 года назад

    Thank you, great explonation.

  • @Muhammadfaisal-kd9kx
    @Muhammadfaisal-kd9kx 9 месяцев назад

    thankyou bro great content as always

  • @keenlearner1891
    @keenlearner1891 2 года назад

    In add method, we have to put if condition after size++ for condition of size==capacity

  • @heayyyyyyy11
    @heayyyyyyy11 3 года назад +1

    Thank you. Very useful ;)

  • @sihleeundefined1208
    @sihleeundefined1208 3 года назад +2

    Hey bro this tutorial was long and BOOM THANKS BEEN HERE SINCE THE ROBOT SOUNDTRACK🤣

  • @malekmousa1193
    @malekmousa1193 3 года назад +7

    Can you make a video on Java Streams. I would really appreciate it ❤️

  • @shubhamsonar1816
    @shubhamsonar1816 3 года назад +7

    ❤️Thanks bro for.....................

  • @Noble_Savage
    @Noble_Savage Год назад

    Sweet video, tanks!

  • @wolanus
    @wolanus 3 года назад

    Great video!

  • @nguyenhuy5803
    @nguyenhuy5803 3 года назад

    thank you so much!

  • @cartoonworld3576
    @cartoonworld3576 3 года назад +1

    Love you brooo.from Bangladesh

  • @SomduttaSomSinha
    @SomduttaSomSinha 2 года назад +5

    What's the difference between making instantiating array as Object[] array and making the class able to hold generic objects using Java generics (i.e. public class DynamicArray)? If we use Object[], wouldn't we have to cast elements to its actual type when retrieving them (e.g. int first = (int) array[0])?

  • @TianaPayetTravel
    @TianaPayetTravel 8 месяцев назад

    Helpful!

  • @TheEvertonDias
    @TheEvertonDias Год назад

    Thanks, Bro!

  • @ianwanjala8621
    @ianwanjala8621 4 дня назад

    nice one bro

  • @thatnelfy
    @thatnelfy Год назад

    good video! ty!

  • @aditya_asundi
    @aditya_asundi 3 года назад +1

    Woah cool

  • @werq27
    @werq27 10 месяцев назад

    brilliant👍

  • @jianxi
    @jianxi 3 года назад

    Hey, not sure whether am i wrong or not but for the DELETE function, i think we forgot to handle 'what if the DATA happened to be INDEX 0' So maybe we should add an IF statement for when INDEX == 0
    if( i == 0) {
    for (int x = 0 ; x < size ; x ++) {
    array[x] = array[x + 1];
    }
    break;
    }

  • @torekalanae_
    @torekalanae_ 9 месяцев назад +1

    in the .toString() (assuming that you didn't use StringBuilder), wouldn't it be much more efficient and faster by using this?:
    String string = "";
    for(int i=0;i0){
    string += ", ";
    }
    string += array[i];
    }
    return "[" + string + "]";
    instead of doing this?:
    for(int i=0;i

  • @danielmilewski7659
    @danielmilewski7659 Год назад

    thanks bro!

  • @Snowmanver2
    @Snowmanver2 2 года назад

    Thanks!

  • @ayman8509
    @ayman8509 3 года назад

    remember when your channel was 11k subs? me niether Good Job, Keep it up

    • @BroCodez
      @BroCodez  3 года назад

      hey ayman! Yeah it's been a heck of a ride

  • @victorrezende6002
    @victorrezende6002 9 месяцев назад

    Nice Class

  • @farmgatebd7858
    @farmgatebd7858 3 года назад

    i'm just waiting for full-course video ,,,, offline is better to watch for me. i'v all collection of full. very thank you .... i also reqst to make video on algorithm by easy representation. good DataStructur and Algorithm video is very rare in youTube.

  • @dre1997ful
    @dre1997ful 2 года назад +3

    I feel like in some instances with coding you just have to accept the information and be like well idk why but it works so it works for me? lol

  • @yasmineahmedaboeleinin7844
    @yasmineahmedaboeleinin7844 4 месяца назад

    👍🏻👍🏻

  • @ronaldrabanes4083
    @ronaldrabanes4083 3 года назад +1

    bro, do you videos for databases, ex: mysql. tnx bro.

  • @youness1554
    @youness1554 3 года назад +1

    I love you bro from Morocco

  • @Quran_24997
    @Quran_24997 День назад

    You Can do this in delete method to be easy to understand
    public void delet(Object data) {
    for (int i = 0; i < size; i++) {
    if (array[i]== data){
    for(int j =i ; j < size; j++){
    array[j]= array[j+1];
    }
    array[size-1]= null;
    size--;
    }
    }
    }

  • @MrLoser-ks2xn
    @MrLoser-ks2xn Год назад

    Thanks

  • @ahmadyaseen2617
    @ahmadyaseen2617 3 года назад

    Please make some applications on javafx like you made for swing
    And after database please teach artificial intelligence

  • @xXMaDGaMeR
    @xXMaDGaMeR 2 года назад

    amazing contnet

  • @satyamshankar2673
    @satyamshankar2673 3 года назад

    Bro i want to watch this playlisy but can u please tell me what are data structures and algorithm.

  • @hamidrezaei3515
    @hamidrezaei3515 Год назад

    nice

  • @mariostheophanous2300
    @mariostheophanous2300 3 года назад

    Can you make tutorial for mips assembly?

  • @Daaninator
    @Daaninator 3 года назад +3

    hey brocode. Just a tip for your next videos. If you are going to import images in to your project is it possible to make a link in the descriptions to download the same objects? It's pretty annoying or even sometimes impossible to find an image with the same size etc...
    just a tip
    love ur videos:)
    also make new java videos; if you got time;)

  • @A7X-Rev
    @A7X-Rev 3 года назад +1

    thx

  • @wzup23
    @wzup23 2 месяца назад

    Dude why does it automatically converts the input to string without calling toString() method? Thanks

  • @tonystark3399
    @tonystark3399 3 года назад

    Bro please make a series on kivy GUI with python 🙏🙏🙏

  • @Cloud-pc8id
    @Cloud-pc8id 2 года назад +3

    I made this delete method and somehow it worked
    public void delete(Object data) {
    for(int i = 0; i < size; i++) {
    if(array[i] == data) {
    for(int j = i; j < size; j++) {
    array[j] = array[j + 1];
    }
    if(size

  • @hray1005
    @hray1005 3 года назад +2

    I dont understand how
    for(int i = size; i > index; i--) {
    array[i] = array[i - 1];
    }
    works. from my understanding it should push all the values to the left because its subtracting but it pushes them to the right, i have no clue how this works

    • @joa5724
      @joa5724 2 года назад +2

      We are keeping i = size ( i.e,last index +1).
      let's say the size is 4 and we have to insert data in index 2
      when i = 4 ..the data in index 3 (i-1) will get copied in index 4 (i)
      i--;
      now i=3 ...the data in index 2(i-1) will get copied in index 3 (i )
      i--;
      now i = 2 is not greater than index which we have passed in ( which is 2) the loop terminates.
      then we can insert the data like
      array[ 2] = data ;

  • @cartoonworld3576
    @cartoonworld3576 3 года назад +1

    Yaaa boi

  • @unknown-rd3kv
    @unknown-rd3kv Год назад +1

    Thanks bro 🫡

  • @MRIVAR
    @MRIVAR 3 года назад

    Hyy bro make video on android development. I will appreciate that 💓

  • @emrehanhosver8379
    @emrehanhosver8379 3 года назад

    guys its irrevelant but do you know how to scrap live data from web sites (stock, crypto) with c++

  • @m0lecules
    @m0lecules 7 месяцев назад

    🖖

  • @alien_X1
    @alien_X1 3 года назад +1

    Pls bring on hcking😊😊

  • @harshitsharma6701
    @harshitsharma6701 3 года назад

    bro are your all in one vedios sufficent for start coding for the first time, i mean if i watch all of em

  • @sug_madic7683
    @sug_madic7683 3 года назад +1

    Long time no see

  • @user-ld8ru7kh6u
    @user-ld8ru7kh6u 3 месяца назад

    Is this program code similar to ArrayList internal code??

  • @Ankit-ge7yn
    @Ankit-ge7yn 3 года назад

    Android developement tutorial please..🙏🙏

  • @yehannk448
    @yehannk448 3 года назад

    bro in the toString() method you created without calling the method in the main class how did it be automatically called when you printed the dynamic array please reply

    • @rectaalborween8471
      @rectaalborween8471 4 месяца назад

      I might be a bit late lolol
      But to answer your question, this is because println() has an overloaded variant which calls "object.toString()"
      When we write the toString() body all we're actually doing is overloading that method

  • @pragmaticcoder6910
    @pragmaticcoder6910 6 месяцев назад

    What are the chances of asking to build a dynamic array in FAANG interview? Ideally for me it'll take time to ace this algorithm appropriately.

  • @BendoubaAbdessalem
    @BendoubaAbdessalem 2 месяца назад

    java is wierdly similar to c#, i know , it's the other way around but that code is wierdly fimiliar

  • @zaisk7714
    @zaisk7714 Год назад

    When you do the insert method, why is the for loop:
    for (int i = size; i > index; i--)
    array[i] = array[i - 1];
    rather than
    for (int i = size + 1; i > index; i--)
    array[i] = array[i - 1];
    if you have an array = {A, B, C, D, null, null}
    size = 4
    So the first for loop would set array[4] = array[3] which is saying the fourth element is equal to C.
    But what happens to D?

    • @gonkillua1001
      @gonkillua1001 Год назад

      i starts at 0.
      array[4] = "null" since it's index 0, 1, 2, 3, 4
      So array[4] = array[3] is correct as it is setting null to D, D to C...... n
      Hope that makes sense

    • @HandstandDad
      @HandstandDad Год назад

      yup and the size kind of is your pointer holding the space for the move to the right

  • @passwordprotectedd
    @passwordprotectedd Год назад

    7:54

  • @aditya_asundi
    @aditya_asundi 3 года назад +1

    Hey bro, could you include the source code in C++ also? It would be great.

  • @yeonve
    @yeonve 3 года назад

    I want you to make a tutorial and how to make splash screen in mcp minecraft 1.8.8, if you didn’t do it’s okay! I just tryna find a tutorial how to make a splash screen in mcp minecraft 1.8.8

    • @yeonve
      @yeonve 3 года назад

      💆‍♂️🧖‍♀️

    • @BroCodez
      @BroCodez  3 года назад

      I'm actually not familiar with Minecraft mods... at least not yet

    • @yeonve
      @yeonve 3 года назад

      @@BroCodez hmm okay 😆

  • @phlegmsmoothie
    @phlegmsmoothie Год назад

    Why use a dynamic array in C++ when we can give int array[n].
    Dynamic arrays are created when number of data items is unknown.
    But we could also use
    int n;
    cin>>n;
    int array[n];

  • @shubhankarbera2
    @shubhankarbera2 3 года назад

    Is there any difference in all in one course and other which you gave made separately in same language ?

    • @BroCodez
      @BroCodez  3 года назад +1

      I compile all the lessons in the playlist into one video. I think the Java course only has 80 videos from the 100 playlist tho

    • @shubhankarbera2
      @shubhankarbera2 3 года назад

      @@BroCodez okk

    • @shubhankarbera2
      @shubhankarbera2 3 года назад

      @@BroCodez so for java I should refer to the playlist ?

  • @mmaScholar99
    @mmaScholar99 3 года назад

    Hey man, I know you're busy and all, but I have a little coding problem I need help with.

  • @hardlycoding8544
    @hardlycoding8544 Месяц назад

    13.01

  • @COWHATE
    @COWHATE 2 года назад

    Hell yeah I was like 666 very cool.

  • @tasneemayham974
    @tasneemayham974 Год назад

    I don't get how this code works...
    for(int i = 0; i

  • @kenox1232
    @kenox1232 Год назад

    random comment for u my dude

  • @aleksandarmitrevski8391
    @aleksandarmitrevski8391 Год назад

    Random comment down below - checked

  • @Heizo21
    @Heizo21 Год назад +4

    random comment

  • @khanhtang4451
    @khanhtang4451 3 года назад

    no translate for me!! my E is bad so i can't understand what are u Saying

    • @BroCodez
      @BroCodez  3 года назад +1

      They should auto-translate, it might take a while to generate since this video is longer than usual

    • @khanhtang4451
      @khanhtang4451 3 года назад +1

      @@BroCodez thanks, i very like your videos. I hope u will make videos.
      +1 respect 😂😂😂

  • @Ankit-ge7yn
    @Ankit-ge7yn 3 года назад

    Question = In java programming..
    Int[ ] [ ] a= {
    {1,2,3},
    {5,6,7},
    {8,9,10}
    };
    And I want to print ,
    1 5 8
    2 6 9
    3 7 10
    (as a output)
    Sir How to print this output, please help ??

    • @edis9869
      @edis9869 3 года назад

      It's just like reading through regular 2D array but printout a[j][i] instead of a[i][j]. Hope it helps

  • @mehdilee
    @mehdilee 6 месяцев назад

    So why did you get kicked out of heaven?

  • @qaisnnn7264
    @qaisnnn7264 3 года назад

    😏

  • @AR-rg2en
    @AR-rg2en Год назад

    Random comment

  • @yehannk448
    @yehannk448 3 года назад

    bro in the toString() method you created without calling the method in the main class how did it be automatically called when you printed the dynamic array please reply

    • @justswift_1213
      @justswift_1213 2 года назад

      The .toString() method can be called both implicitly and explicitly. Calling this method is unnecessary as the java compiler automatically calls it on the array as it sees the code trying to print that array. Simply, it gets called automatically even if you don't call it explicitly. Hope it helps.

  • @thokankit007
    @thokankit007 5 месяцев назад

    random comment