2. Data Structures and Dynamic Arrays

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

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

  • @pantheonCaspian
    @pantheonCaspian Год назад +87

    This man's enthusiasm for algorithms is what I want in my life.

  • @ParthPatel-vj2zv
    @ParthPatel-vj2zv 3 года назад +290

    0:00 : intro
    0:50 : interface vs data-structure
    5:50 : static sequences & static arrays
    16:50 : dynamic sequences & linked-list
    25:20 : static array vs linked-list
    34:25 : dynamic arrays (lists in python)
    46:27 : amortization

  • @unorandom3009
    @unorandom3009 3 года назад +151

    I've been listening to this guy teaching algorithms for over 10 years seems his age algorithms is super efficient where his age is always constant O(1)

    • @factfinderchannel9965
      @factfinderchannel9965 3 года назад +4

      It will be exponential time his age algorithm efficiency if you keep following his course for the next 20-30 years.

    • @michelealessandrini3421
      @michelealessandrini3421 2 года назад +8

      Maybe it's amortized constant, one night he suddenly becomes old.

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

      @@michelealessandrini3421 exactly he look the same after ten years that's why it's constant O(1)

    • @OscarMartinez-nt6zn
      @OscarMartinez-nt6zn 2 года назад +1

      @@unorandom3009 but with amortized someday all of a sudden he will need to grow and become O(N)

    • @primaryesthethicinstincts4832
      @primaryesthethicinstincts4832 Год назад +3

      You've been learning algorithms for 10 yrs??

  • @domemvs
    @domemvs 2 года назад +107

    Thanks to the MIT for making this available for free. This is a very selfless move. Amazing

  • @MrApolloIII
    @MrApolloIII 3 года назад +38

    Shout out to the camera man! For panning to the information he’s referencing that we can’t see!

  • @georgejetson9801
    @georgejetson9801 2 года назад +50

    This is what passion looks like. I got my CS degrees at the first boom/bust cycle in the 80s. I've enjoyed everything about this career.

  • @RurikLoderr
    @RurikLoderr 2 года назад +34

    I've been programming on and off since high school (class of 2003) and recently decided to catch back up with the MIT OpenCourseWare lectures... 10:05 to 11:17 is the first time I've ever had zero indexing explained in a way that just makes it clear that's why it's being done. Never in my entire life had anyone just said it was an offset in memory and I'm kind of disappointed. That single simple fact of something I thought I knew well just made a whole lot of memory addressing knowledge grok immediately.

  • @shankar7435
    @shankar7435 Год назад +15

    Never got a chance to listen to lectures at IIT. I am lucky enough to learn from even quality lectures. Thanks to MIT.

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

      ruclips.net/p/PLBF3763AF2E1C572F&si=idwQNxg_A75C6hdz
      Even IITs have a combined open courseware.

  • @yeboahdominic1896
    @yeboahdominic1896 3 года назад +83

    In fact I have been watching a lot of tutorials from this channel and this professor is one of my favorites.

    • @FlexGC
      @FlexGC 3 года назад +12

      Yes he's great. He is / was also a prodigy. I think he got his bachelors when he was still a teen.

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

      @@FlexGC no way? O:

    • @MufaddalHakim
      @MufaddalHakim 2 года назад +8

      @@noelcovarrubias7490 He became a professor at MIT when he was 20

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

      @@FlexGC which programming language he explain with ?

  • @HulkRemade
    @HulkRemade 2 года назад +4

    I love the way this guy writes on the board. It's so satisfying.

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

    Oh, oh, I'm so happy. Years ago I downloaded the old videos and tried watching on metros. I quit at around 1/3. It was too hard for me. Now I'm back. Let me try learning this again.

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

    I experienced the fact that when you listen to passionate people, you would love to become passionate. This is the ultimate benefit I am taking away right now from this lecture.

  • @dcpugh
    @dcpugh 2 года назад +31

    Awesome lecture! A treat to hear a talk on basics by such an accomplished computer scientist!

  • @ssaadhussain902
    @ssaadhussain902 2 года назад +36

    This lecture was so brilliant. The concepts are crystal clear.

  • @1ncandescence737
    @1ncandescence737 3 года назад +26

    Oh my! Was wondering when we are getting a refreshed version of 6.006!

  • @diannadimambro2188
    @diannadimambro2188 Год назад +3

    saw his 2005 and now his 2020. such a great professor!

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

    I don't know why RUclips recommended this to me, but I stayed for the whole lecture.,,

  • @otmaneer-ragragui4458
    @otmaneer-ragragui4458 3 года назад +3

    Thank you so much for not enabling ads in this videos

  • @nehaliacharya7257
    @nehaliacharya7257 2 года назад +14

    I think cracking a FAANG company will become a reality very soon. Thank you so much @MIT for these brilliant lectures.

  • @programming5542
    @programming5542 3 года назад +71

    please do it for 6.046 and 6.854 the algorithm trilogy by the way good to see you pro eric my lockdown i spend time with your course 6.006 6.046 and the advance data structure and in the last lecure online algorithms . please mit ocw it is my request

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

      Lies again? Meds DarkX

  • @Eliel10268
    @Eliel10268 3 года назад +9

    He is very energetic. I have now great teachers!

  • @igor-sukharev
    @igor-sukharev 2 года назад +2

    There is difference between ADT (Abstract Data Type) and DS (Data Structure).
    ADT is the specification. It answers questions "what data can be stored" and "what can I do with them".
    DS is the concrete implementation of ADT. DS specifies how data is stored (its layout) and what kind of algorithms process them.
    Single ADT (array, e.g.) can be satisfied using several DS (linked list, static array, etc.)

    • @igor-sukharev
      @igor-sukharev 2 года назад

      There are 2 main ADT: Set and Sequence.
      Set does not allow to receive an item via index; Sequence does. (what can I do with them?)
      Notice that the absence of indexes entails the inability to distinguish between two identical elements.
      Set does not allow to store dublicates; Sequence does. (what data can be stored?)

    • @igor-sukharev
      @igor-sukharev 2 года назад

      There are 2 main approaches how to construct DS: using an array or using pointers.
      In the array, data store in continuous part of memory.
      In the pointer-based approach, each item has links to some of others; physical addresses of items is generally unknown.

    • @igor-sukharev
      @igor-sukharev 2 года назад

      Static Sequence Interface (SSI) is an ADT, the variant of the Sequence.
      This interface maintain fixed number (aka length) of items x0, x1, ..., x(n-1), but these items are able to be rewritten.
      The list of operations of the Static Sequence Interface:
      build(X): make new DS. X is the something that may yield items one by one.
      len(): returns the n.
      iter_seq(): outputs the items in its order.
      get_at(i): returns the item number i.
      set_at(i, x): set x as the item number i.

    • @igor-sukharev
      @igor-sukharev 2 года назад

      Static Array is a DS, an obvious, natural way to implement the Static Sequence Interface
      Here and forth, we assume that our model of computation contains RAM with w-bit cells, where w=length of the word, group of bits the processor can to process per one step.
      The access to each cell takes equal time.
      Also, our model allows to allocate n sequential words in RAM in a Theta(n) time.
      Static Array is the consecutive, continuous part of RAM with constant length.
      array[0] = memory[address(array)], array[i] = memory[address(array) + i] for i from 0 to n-1.
      len, get_at, set_at operations have Theta(1) time complexity
      build, iter_seq have Theta(n).

    • @igor-sukharev
      @igor-sukharev 2 года назад

      Dynamic Sequence Interface (SSI) is an ADT, the variant of the Sequence.
      This interface maintain number (aka length) of items x0, x1, ..., x(n-1).
      The list of operations of the Dynamic Sequence Interface:
      [all of SSI operations]
      insert(x, i): transforms the sequence to y0, ..., y(n), where y0 = x0, ..., y(i-1) = x(i-1), y(i) = x, y(i+1) = x(i), ..., y(n) = x(n-1).
      delete_at(i): transforms the sequence to y0, ..., y(n-2), where y0 = x0, ..., y(i-1) = x(i-1), y(i) = x(i+1), ..., y(n-2) = x(n-1).
      So-called convenient operations insert/delere_first/last may be considered an implemented via special algorithms.

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

    Working with Python and C++ counting from 0 to n, 0 would be your 1, 1 would be your 2...etc. His counting would give you n+1 (0,1,2,3,4), you want n-1 (0,1,2,3).

  • @user-tl8gq3gl2n
    @user-tl8gq3gl2n 10 месяцев назад +2

    It is brilliant, I Love this method of learning ,thanks for MIT.

  • @jodisingh8972
    @jodisingh8972 9 месяцев назад +3

    Great video but why chalk board for a tech institute

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

    I find 39:30 amusing in that im imagining the blackboard area as the array being talked about.
    The blackbored is of static size however, so to store new elements old elements have to be overwritten. Yet, many of the points being made do still apply.

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

    Knowledge Heavy Playlist... 💥 Every computer science student fav track thanks to MIT Ocw

  • @dugwtf
    @dugwtf 10 месяцев назад +3

    unusually good handwriting for a male teacher

  • @tomoki-v6o
    @tomoki-v6o 3 года назад +4

    his series on dynamic programming were great

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

    I really love Erik's style, so charmmmming

  • @soyciro4623
    @soyciro4623 3 года назад +9

    The instructor goes so fast! I can't actually get the idea or the theory. It looks like I should have a prior knowledge.
    Thank you for the content, though.
    It's really appreciated.

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

      my native language is not english but actually I did understand a lot from this. You can always rewatch, to understand more. Also to see/hear things you didnt notice previously

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

      this will help: ruclips.net/video/2T-A_GFuoTo/видео.html .
      Here is the whole list for the course: ruclips.net/p/PLhQjrBD2T382_R182iC2gNZI9HzWFMC_8 to have some basic idea how to use pointer in c.
      ideally, you need to manage the memory block in ram to create your own data structure. You can allocate memory statically or dynamically.

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

      Yes. Many colleges seem to list prerequisites only as a way to make more money on tuition costs. Example, my local college requires an introduction to CS class before all other CS classes, but then they waste time in the following classes to duplicate all of the lessons in the introduction class. They also require english 101 without regard for score on your placement test, mainly to give money to the English department, while in math you may skip to the level of your test score. )
      MIT is different, when they list a prerequisite for a class it is because the class is truly designed with the assumption of specific existing knowledge. I ignored this one time and I needed to take an emergency class in calculus on the side so that I could keep up with my primary class.

  • @enisten
    @enisten 3 года назад +8

    Erik Da Man!

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

    Finally I'm a student at MIT😊

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

    __sizeof__ > 1 Len : 48 size, any addition > +8
    with append resize at : 1st , +4, +4, +8

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

    High quality free information, still useful after I working 10+ years

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

    I’m glad I saw this video. Thanks MIT for this. I just went thru algs and data structures and I think this is better than the one that I took.

  • @user-mc3el6ik3c
    @user-mc3el6ik3c 2 года назад +2

    WOW! I HOPE I CAN WATCH THIS ALL! AND COMPLETE THE COURESE

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

    The GOAT is back!

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

    Thanks MIT for this open Course, amazing!

  • @iEuno1
    @iEuno1 2 года назад +4

    I learned that in 1992 and that is how I design my database systems .

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

      1980 here. :)

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

      @@georgejetson9801 Very good, I was in secondary 1 in 1980, when I learned Technical Drafting skills, which I used for my flowcharting and other diagrams designs in 1992 to this day. I scored 100% on it then.

  • @deletedaccount2580
    @deletedaccount2580 3 года назад +4

    I am fan of this genius guy ,Eric 🙏🙏

  • @hopetembo6820
    @hopetembo6820 11 месяцев назад +1

    It made so much sense daummm😮

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

    If you care to know, I just attended MIT. Thanks to RUclips. 🥳🥳

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

    9:20 Modern computers (x86, x64) are byte-addressable, not w-bit (32 or 64). There is misinformation about word size and byte addressing, at least for Intel/AMD CPU

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

    Thanks for providing such awesome opportunity for learning

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

    Great lecture. Thanks!

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

    Thank you. I love this course.

  • @random-0
    @random-0 Год назад +1

    Amazing, great lecture

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

    동적 배열
    - Relaxation of a contraint in size.
    - the size of an array is theta(n)

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

    Drunk as fuck and watched this whole video....for sure I'll remember something out of this hahahah

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

    thank you for sharing such awesome content, its a real help for people like me who cant afford such higher studies

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

    Erik in the house !!!

  • @sumandangol0286
    @sumandangol0286 7 месяцев назад +1

    🎯 Key Takeaways for quick navigation:
    00:28 🧠 *Today's focus is on data structures, specifically sequences, sets, linked lists, and dynamic arrays.*
    01:27 🗂️ *Interface defines what to do; data structure defines how to do it. Data structures involve storing and manipulating data with specified operations.*
    02:51 🔄 *Two main interfaces: sets and sequences. Multiple data structures can solve the same problem, each with different advantages.*
    05:43 📊 *Static sequence interface includes build, length, iteration, get, and set operations. Focus on static arrays as a natural solution.*
    08:34 🧮 *Static array relies on the word RAM model, allowing constant time access. Memory allocation model assumes linear time for array creation.*
    17:04 ➕➖ *Dynamic sequence interface adds insert and delete operations. Introduces the concept of insert_at to maintain indexing consistency.*
    19:56 ⏮️⏭️ *Special cases like insert_first, insert_last, get_first, set_first, get_last, and set_last are introduced and can be more efficient to solve.*
    21:20 🔗 *Linked lists, composed of nodes with item and next fields, are introduced as a data structure to implement dynamic sequences.*
    23:17 📚 *Arrays and pointer-based data structures were discussed, highlighting the use of pointers as indices into the memory array.*
    25:33 ⏭️ *Dynamic sequence operations were explored on static arrays and linked lists, revealing the challenges of insertion at the beginning for both.*
    29:51 🔄 *Linked lists excel in insert and delete operations at the front but struggle with random access, making operations like get and set inefficient.*
    33:51 🔄 *The lecture introduces dynamic arrays, aiming to combine the advantages of linked lists and static arrays for efficient operations.*
    35:14 🧠 *Dynamic arrays relax the constraint that the array size equals the number of items, allowing for efficient insertions at the end in constant time.*
    40:12 📏 *The lecture discusses resizing strategies for dynamic arrays, emphasizing the importance of choosing a constant factor larger than 1 to avoid frequent resizes.*
    43:31 ⏱️ *The amortized analysis of resizing dynamic arrays is explained, revealing a geometric series summing to roughly linear time, emphasizing the efficiency of the strategy.*
    45:51 🔄 *Geometric series are dominated by the last term, allowing for simplified analysis using theta notation, such as theta of the last term like 2 to the log n, which is theta n.*
    46:45 📈 *Amortization is introduced as a way to analyze the average time of operations over a sequence, considering that while some operations may be expensive, they are balanced by cheaper ones, resulting in amortized constant time for certain operations.*
    47:42 📊 *Amortization is described as an averaging concept over a sequence of operations, allowing for high-cost operations like resizing to be distributed across the cheaper ones, achieving almost constant time on average.*
    49:38 🔄 *Dynamic arrays achieve constant amortized time for operations like insert_last and maintain constant time for get_at and set_at, showcasing a balance between the strengths of arrays and linked lists.*
    Made with HARPA AI

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

    thank you very much sir for wonderful teaching

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

    gifoyle is now a lecturer at mit

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

    44:45 wow that's nice

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

    nice course

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

    this is actually fun to watch

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

    I like the colour coding here.

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

    Brilliant lecture 👍🏻

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

    My man is back.

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

    When you know you’ll be needing lots more memory later in your program: See you later, allocator

  • @mingx009
    @mingx009 2 года назад +4

    So great lecture in really giving you why and how, not just a bunch of hows. One question: delete_last() of array seems to me to only take O(1) constant time if choose to do so. I understand insert_last(x) would take O(n) time as a new array has to be created and copy all old elements (and inserted x) to the new array. But deleting the last one would still maintain the old array untouched for the first n-1 elements, and what only needs to be done is to update the len(static array) now to be n-1. Do I miss anything?

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

      Even I have the same question!

    • @OscarMartinez-nt6zn
      @OscarMartinez-nt6zn 2 года назад +8

      In min 27:00 to 28:00 he explained this, but to sum it up basically though it seems like a O(1) operation it's not because a static array has a fix length and if you remove the last element then you are changing the space of memory that you were assigned meaning that the computer has to reallocate the memory to satisfy the new length of your array for that reason it's not convenient to use a static array for dynamic operations.

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

    I looked for so many ways to start in programming ans find my self in this course. I love the enthusiasm. I hope to work through this class. Does someone has recommondations for me where I can train myself to become a programmer? Where I can do basic stuff?

    • @mitocw
      @mitocw  2 года назад +18

      There are many great resources to learn programming. From our materials, we recommend you start with MIT 6.0001 Introduction to Computer Science and Programming in Python: ocw.mit.edu/6-0001F16. There is an edx version starting January 26: www.edx.org/course/introduction-to-computer-science-and-programming-7

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

      @@mitocw I thank you soooo much.

    • @alb12345672
      @alb12345672 2 года назад +8

      I am programming since a teen in the 80s and there were no online resources back then. You had to be really motivated and push yourself to get books from bookstores and libraries. I have taught programming too. Best advice I can give you is to take an idea and start building it. Every time you hit a problem, research a solution. Yes, you need a certain baseline of knowledge, but don't spend years on that before starting to build something. All the school in the world is useless unless you can create something useful in code.

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

      @@mitocw Is there any difference between 6.0001(YT) and edx Version?

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

    Thank you MIT for your generosity. On a side note, is it still true that there is a special thick chalk great for fast writing on boards that Professor Demaine seems to be using that is no longer made and needs to be hoarded?

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

      No need to hoard... the chalk is still available. It is known as either jumbo chalk or railroad chalk (used to mark boxcars).

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

    Great intro to computational complexity

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

    array start with - zero , one etc

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

    Best algorithm in the world

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

    Thanks you from Cambodia

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

    Awesome content!

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

    They're all in a classroom in Spring 2020? The university must've stayed open!

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

    Thanks MIT

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

    1.Apa yang ingin kamu lakukan dan bagaimana cara melakukannya

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

    What are the prerequisite for this course. I found the concept very hard to understand. Fyi, i am doing java programming and have basic knowledge of programming.

    • @surfingcipher1059
      @surfingcipher1059 10 месяцев назад +2

      Sequence and series, descrite structures

  • @sbk-po3jf
    @sbk-po3jf 2 года назад

    thanks to MIT QAQ

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

    thank you for doing that for free

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

    do a two dim array

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

    As it turns out, learning C before this was worth it

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

    MIT..Please provide course vidoes of Principles of macroeconomics and Intermediate microeconomic theory.

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

    40:46 lol, Jason my guy

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

    I love it

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

    The real epiphany comes at 40:00

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

    Post malone teaching DS and Algo, hell yeah!!

  • @user-rv4li7lt5i
    @user-rv4li7lt5i Год назад

    cool!

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

    Has anyone got a ZIP of all the lecture notes? I usually found it on MIT OCW website. But not for this one.

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

    Excuse me, I'm not native English, what's that "recitation" class they sometimes talk about?

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

      The purpose of the recitations is to expand upon course materials covered in lecture and allow students to practice working with the material in an interactive setting.

    • @AhmedGamal-xi3vj
      @AhmedGamal-xi3vj 2 года назад

      @@mitocw Where to find the recitations classes?

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

      Here is the playlist for the series: ruclips.net/p/PLUl4u3cNGP63EdVPNLG3ToM6LaEUuStEY. The ones labeled problem sessions are the recitations. See the course on MIT OpenCourseWare for more info and materials (Lecture notes, recitation notes, problem sets, etc.) at: ocw.mit.edu/6-006S20. Best wishes on your studies!

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

    I hereby slap my brain for every bad thought it’s ever had about Prof. Demaine. This is peak American: aware, unpretentious, brilliant!
    also this is uncalled for but screw it the world is ending he has a sweet fashion sense
    🤘😤

  • @AnkitMishra-hd5uu
    @AnkitMishra-hd5uu 3 года назад +1

    Where I will get full video of this guys

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

    I don't understand why word >= log(n)

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

    29:25

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

    Publish other lectures too.. Pls

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

    erik :')

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

    Why is the time complexity for linked list for insert_last(x) and delete_last(x) linear? Shouldn't it be constant since we are able to access the tail?

    • @guitsgarcia5446
      @guitsgarcia5446 11 месяцев назад +1

      you don't store the tail on regular linked lists.
      Storing the tail is considered an "augmentation", and does reduce insert_last(x) to linear.
      delete_last(x) isn't so easy as you would need to fetch the second-to-last and update its pointer to null I think, therefore you would also need to go through the whole linked list.
      Doubly linked lists might solve this by storing tail on every element (see 32:34).

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

    Cool t-shirt

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

    Why is len() constant time? Is it computed in an attribute along the build()?

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

      Constant time is used to measure the efficiency of the operation len(). It will take a constant amount of time to find the length of any nth item.

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

      And no build() is linear time not constant

    • @aa-hf7hd
      @aa-hf7hd 2 года назад +1

      pretty late but yeah it's an attribute (idk if it's computed in build() though).
      python's len() will return a variable that gives the size of whatever object len() is called on, and that is an O(1) operation
      so python has to maintain that size variable as it updates, which is (some) overhead

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

      @@aa-hf7hd I figured out myself in the meantime. But this is explanation is great for future readers, thank you!

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

    16:11 “Download more RAM”

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

    I didn't got it

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

    What about the operation cost for inserting_first() for the dynamic arrays (Python lists)?

    • @h.kubilay6160
      @h.kubilay6160 2 года назад +2

      o(n) because re index it. language does not matter.

  • @Juan-dc6yf
    @Juan-dc6yf Год назад

    Why camera guy follow him and not show the board at once smh

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

    Insert last in static array? Why O(n)?

    • @llll-dj8rn
      @llll-dj8rn 10 месяцев назад

      because the way you build a static array is by allocating a fixed size of memory, say you allocated 7 blocks of the memory, and suppose your static array will be like that A = [1,2,3,4,5,6,7], now what if you need to add new one element to your existing array? no you can't, because as i've said you've allocated a specific size of the memory (may the eighth block of the old sequence is not available ), so now i have to allocate a new sequence of the memory that can store my new "8 element array".