Design an Elevator System | Systems Design Interview question |

Поділитися
Вставка
  • Опубліковано 1 жов 2024

КОМЕНТАРІ • 40

  • @warnercooler4488
    @warnercooler4488 2 роки тому +3

    Nice explanation of the algorithm. Thank you so much!

  • @chessmaster856
    @chessmaster856 5 місяців тому

    You can't know everything. You need to ask requirements and model only those

  • @sakshamjain1005
    @sakshamjain1005 Рік тому +3

    MinHeap update operation is quite costly since its getting updated at every move of lift in either direction O(NLog(N)) to be precise

    • @TheSubsonicOne
      @TheSubsonicOne 10 місяців тому +2

      It's an ELEVATOR. It only has so many floors. Unless it's being implemented by actual snails, or a 1HZ processor, I think it will be fine.

  • @arunavasaha7051
    @arunavasaha7051 Рік тому +3

    In the last optimization, when the elevator was moving up and dropped the passenger of floor 0 at floor 2, and picked the passenger at floor 2 who requested a down , why the elevator changed the direction and dropped them first. Shouldnt the lift continue togo up and attend the request of the passengers going up first?

    • @AnkitYadav-up4
      @AnkitYadav-up4 22 дні тому

      that is the drawback u would say for this algorithm thats why we have to take care of one direction only by marking any of the direction as true either up or down once the lifts starts to move maintain 3 varibles as bool and mark them as true until it reaches the last pos of requested then mark as false and changes the directin of the lift so that the requested of other can also be taken care of

  • @ameyjain3462
    @ameyjain3462 3 роки тому +3

    Just create a button class, there may be tons of button with different functionalityies, i dont get why emergency is special and how it affects your design

    • @codeTreeMS
      @codeTreeMS  3 роки тому

      Firstly thanks for the comment, it helps create the present and future videos better !!. if you see at 11:07, in the class diagram, there is a class for buttons and we extend from it to create inside and outside buttons. Do you mean somthing else

  • @HimalayaGarg
    @HimalayaGarg 2 роки тому +1

    Should change the distance in heap when lift is moving

  • @TheSudh123456
    @TheSudh123456 2 роки тому +1

    awesome explanation. Insightful.

  • @manus7342
    @manus7342 2 роки тому +3

    Very well explained. Please make more OOD videos

    • @codeTreeMS
      @codeTreeMS  2 роки тому +2

      Thanks ! Will get back to making more such vidoes soon.

    • @manus7342
      @manus7342 2 роки тому

      @@codeTreeMS Thanks :)

  • @anshulchauhan6738
    @anshulchauhan6738 10 місяців тому

    Looks like the copy of Educative design

  • @dezediok2451
    @dezediok2451 11 місяців тому

    Is there a particular design pattern that you implemented for the UML class diagram? If so what is that pattern called?

  • @mojolu1126
    @mojolu1126 2 роки тому +1

    isn't there a relationship from door to car? 18:14

    • @jasiuskwarczek
      @jasiuskwarczek 2 роки тому +1

      There might be, also you can make Door class as a base class and then inherit from it as Elevator Door, Emergency Door, Service Door etc. and then create a relationship from Door to Car class imo

  • @sravanchaitanya7372
    @sravanchaitanya7372 3 місяці тому

    very well explained thankyou for your time.

  • @seemapatel1333
    @seemapatel1333 2 роки тому +1

    Very well explained . Thank you so much !

  • @misterdonaldduck
    @misterdonaldduck 4 місяці тому

    What does the orange diamond mean?

  • @nandanapuameer4693
    @nandanapuameer4693 2 роки тому +1

    which tool are you using to design this

  • @AyushKumar-yn3xb
    @AyushKumar-yn3xb Рік тому

    Runtime updation of minHeap, as the elevator car crosses a floor, is equivalent to creating a new minHeap everytime?
    I am not sure there is any straight forward way to update the values in a minHeap/maxHeap.

    • @karthikairam
      @karthikairam Рік тому

      There is a “decrease key” operation in the Heap which does changing of node’s value, in o(log n) runtime when it is combined with HashMap to maintain the position of node in array (Heap uses behind the scene). You may explore it further.

  • @aseem30
    @aseem30 Рік тому

    Any interviewer is going to ask why you picked up min heap of all the data structures.

    • @codeTreeMS
      @codeTreeMS  Рік тому

      Thats a resonable question and had a resonable answer, time complexity. in O(1) you can get the closest person to the elevator.

  • @shashankmishra484
    @shashankmishra484 2 роки тому

    Hey thanks for this video
    Sorry this is out of context, but what chair are you using ? I have seen this one at different places but not able to find it

    • @codeTreeMS
      @codeTreeMS  2 роки тому +1

      haha, no worries.. I think this one is pretty close www.ikea.com/se/sv/p/markus-kontorsstol-vissle-moerkgra-70261150/ , you can get the same in any country.

  • @mohitrathore8808
    @mohitrathore8808 Рік тому

    Please add timestamps :), btw nice video

  • @abhishekmudaliyar5361
    @abhishekmudaliyar5361 8 місяців тому

    Bro code please

  • @learnwithme7750
    @learnwithme7750 Рік тому

    Good explanation but a small doubt i.e whenever a position of car changes everytime we have to pop all enteries of both minhips and update it again, so will that be efficient?

    • @codeTreeMS
      @codeTreeMS  Рік тому

      yes that might not be efficient but O(nlogn) is not asymptotically tight, search for tighter bound for hepify. It might not be awesome algorithm but can do the work rest is on our innovations.

    • @learnwithme7750
      @learnwithme7750 Рік тому

      @@codeTreeMS ok thanks!

  • @anilchaudhry804
    @anilchaudhry804 2 роки тому

    code in java?

  • @billfang2666
    @billfang2666 2 роки тому +1

    I like the video because it is succinct and explained well.

  • @jbbanerjee8534
    @jbbanerjee8534 2 роки тому +1

    In the last part of the video , you have used 2 heaps . When you are not using the direction of the car to pickup up the passenger , what's the point in keeping 2 heaps ? You can simply use 1 heap and pickup the closest passenger irrespective of the direction he/she wants to move. This is a bit confusing .

    • @codeTreeMS
      @codeTreeMS  2 роки тому

      Thanks for pointing out. Yes, if you are not having a constraint on direction then you can use just one min heap, I wanted to give a starting algorithm which anyone can extend and optimized further. e.g.Some elevator systems pick passengers only in the dircetion of travel then the 2 heaps would help.

    • @PeskyTheWabbit
      @PeskyTheWabbit 2 роки тому

      @@codeTreeMS This was my first thought. Starting at floor 0, it goes up until no one else needs to go up, then it starts at the top and brings down everyone who needs to go down. then start with people going up, rinse, repeat

  • @mojolu1126
    @mojolu1126 2 роки тому

    16:09 you spelled elevator wrong

  • @sokachinnarao7694
    @sokachinnarao7694 Рік тому

    Sir, one small doubt, how many elevators are required in buildings

    • @codeTreeMS
      @codeTreeMS  Рік тому

      It depends on how many people work/stay in the building, like an office with a high number of floors with 1000 people working will require more elevators than a smaller building with 300 people, its something easy and you can discuss with your interviewer to decide on this requirement.