Dynamic Arrays 🌱

Поделиться
HTML-код
  • Опубликовано: 19 окт 2024

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

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

    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

    • @K86-j4y
      @K86-j4y 3 года назад

      Can u make a swift all in 1 course plssss

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

      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

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

    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

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

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

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

    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)... 😙👌

  • @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])?

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

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

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

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

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

  • @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;)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  • @ismailibrahim-z2j
    @ismailibrahim-z2j День назад

    thankyou bro code your content really made my life easy

  • @aishuthillo
    @aishuthillo 9 дней назад

    Hey , your videos are great. I really want you to make all this contents with python as well.

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

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

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

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

    Thanks bro! Very good and easy to understand explanations

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

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

    I was coming at this from a C angle... I just noticed you weren't in VS code. Eclipse for Java. Got it.

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

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

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

    Love you brooo.from Bangladesh

  • @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 3 года назад +4

    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

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

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

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

    You are doing really great!

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

    nice sound and very good lession thank you

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

    thankyou bro great content as always

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

    Fantastic. Tank you so much!

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

    Thank you, great explonation.

  • @torekalanae_
    @torekalanae_ 11 месяцев назад +2

    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

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

    Thank you. Very useful ;)

  • @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

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

    Sweet video, tanks!

  • @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 ;

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

    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.

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

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

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

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

  • @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];

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

    I love you bro from Morocco

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

    thank you so much!

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

    Great video!

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

    Can you make tutorial for mips assembly?

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

    nice one bro

  • @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

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

    Woah cool

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

    Helpful!

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

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

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

    Thanks, Bro!

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

    brilliant👍

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

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

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

    good video! ty!

  • @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

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

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

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

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

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

    Pls bring on hcking😊😊

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

    Nice Class

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

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

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

    thanks bro!

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

    Thanks!

  • @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

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

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

  • @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 ?

  • @Onlinetraining-h7x
    @Onlinetraining-h7x 6 месяцев назад

    Is this program code similar to ArrayList internal code??

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 года назад

    Thanks

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

    amazing contnet

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

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

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

    Thanks bro 🫡

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

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

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

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

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

    Android developement tutorial please..🙏🙏

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

    👍🏻👍🏻

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

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

    nice

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

    thx

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

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

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

    Yaaa boi

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

    Long time no see

  • @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 😆

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

    random comment

  • @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

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

    🖖

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

    So why did you get kicked out of heaven?

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

    sweetest

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

    Hell yeah I was like 666 very cool.

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

    7:54

  • @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 😂😂😂

  • @hardlycoding8544
    @hardlycoding8544 3 месяца назад

    13.01

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

    random comment for u my dude

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

    Random comment down below - checked

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

    Random comment

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

    😏

  • @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 7 месяцев назад

      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

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

    random comment