Тёмный

Elevator System Design | Grokking the Object Oriented System Design Interview Question 

Think Software
Подписаться 31 тыс.
Просмотров 167 тыс.
50% 1

Опубликовано:

 

13 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 268   
@ThinkSoftware
@ThinkSoftware 4 года назад
Let me know whether you find the video useful. Also please don't forget to like the video and subscribe to this channel. Thanks :) Distributed System Design Interviews Bible | Best online resource for System Design Interview Preparation is now online. Please visit: www.thinksoftwarelearning.com? Please follow me on facebook.com/Think.Software.Community if you like to get notified about new course chapters getting added or any other updates. I will also take your suggestions there about the course and the channel.
@aleyummusic
@aleyummusic 3 года назад
I haven't finished the video, because I want to try it myself first. I had an idea for the following case. Elevator is @ floor 5, Before the doors close, floor 10 is requested, as the elevator begins to move floors 7,6 and 9 are requested. Would it be a good idea to scan the queue and put all requested floors into a min heap to handle requests between the interval [currentFloor - > requestedFloor]?
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment. You should see the video complete. There are multiple algorithms for elevator system
@juancarlosabad3298
@juancarlosabad3298 3 года назад
i have worked 27y in the elevator industry from field engineer to R&D hardware developer, software architect , project manager , R&D manager in two EU MNC.....it would be impossible to make an (OO) design of a an elevator controller in 45 minutes and describe all its nuances....and if that 45 minutes are the potential answer to an interview question at Google , it is very very messy.....i am preparing an elevator (mechatronic) design online course on my own but it is a HUGE topic...you have not cover even 0.01% of all potential elevator features/requirements (some of which even varies by region/country/city)
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment. The goal of this video also was not to design completely in 45 min and done with it. But just to provide food for thought and some hints about what are different things to consider 🙂. In interview also, the interviewer is not looking at you to solve the problem end to end but looking at how you tackle the question.
@ShantamMittal
@ShantamMittal 3 года назад
Your videos are really helpful. I have a suggestion if you could go on low level design like creating iterfaces/abstract classes for different actor and how will you club then in the elevator system class. And how these component will interact with each other. That would be better.
@thesudhir9
@thesudhir9 4 года назад
No fake accent, no PJ..just knowledge in the best descriptive way.. Excellent video..
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@mr6462
@mr6462 3 года назад
I think the reason that we used enum to represent the { idle, going up, going down} states is because the state space should be only limited to these 3, whereas in the parking lot example there could be many types of parking spots that can be added even after first version of design is done. In the parking lot example, we designed it to be flexible so that when other types of spots are needed, they don't violate the Open/Close principle, but in this one we want the elevator states to be closed and not modified later.
@ThinkSoftware
@ThinkSoftware 3 года назад
Correct. Thanks for the comment 🙂
@jean-yvesangonese7091
@jean-yvesangonese7091 2 года назад
@@ThinkSoftware thanks for this Video. Just a question to understand something: is a car full loaded not a state? or "out of service"? even "door open" is different than idle. If the car is full then it should not takes new Hall call... In case of a car "out of service": the dispatcher should not give hall call and "reload" the previous call to other elevator... So, I would like to know, if those example are not States then how do you advice to introduice it in the program? Thanks
@AbhayKumar-oz4oh
@AbhayKumar-oz4oh 2 года назад
I watched many videos on elevator design, but your content and way of explaining is super awesome. No one will get rejected in an interview if he can explain like this. Very satisfied. Thankyou very much !!!!!
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@rahulsolankib
@rahulsolankib 9 месяцев назад
Nice video but you could have focused more on OOD as well. Like Button -> (Elevator Button, Hall Button) -> Elevator Button (Event Button, Floor Button) -> Event Button (Alarm Button, Fan Button, Light Button, Door Button). Here floor Button will only deal with floor functionality. Same for Fan, Door, Light etc button also. In this way SRP is not violated. Button interface can Have method like action(SystemInterface): void . Here SystemInterface can be extended by two classes ElevatorSystem and AdminSystem. for action methods under EventButton class we can prefer passing action(ElevatorSystem e): void and for HallButton we do action(AdminSystem a): void, bcz it deals on system to decide which elevator to sent on passenger floor.
@streambai1045
@streambai1045 8 месяцев назад
great comments!
@vinoltauro9160
@vinoltauro9160 4 года назад
I am new to system design and I cannot explain how much this helped. Thank you very much, Sir!
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@daniel-1389
@daniel-1389 3 года назад
I signed into my RU-vid account just so I could tell you how useful this video is. Explained so clearly, thank you!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@kc8478
@kc8478 2 года назад
Thanks a lot for the video. Couple of questions 1. Do we need button class at all? Essentially we are creating InternalRequest and ExternalRequest when press ElevatorButton or HallButton respecitvely 2. For Button class , you drive ElevatorButton class and HallButton class from it. I think we should not have PressDown() in Button class as there is no equivalent in ElevatorButton . In real elevator buttons, there are only floor numbers buttons, help button, door open/close button etc but no up and down
@ceo_google
@ceo_google 3 месяца назад
PressDown() is not literally up/down function but a function called when any button is pressed. Recall javascript keydown events.
@brucehergert804
@brucehergert804 3 года назад
I did not read all of the comments below, so maybe someone already mentioned this, but I believe a fourth elevator car state would be "out of service." Your videos are bringing together a lot of loose ends for me. Thank you.
@ThinkSoftware
@ThinkSoftware 3 года назад
Yes the video cannot be considered as the complete solution.
@antonfernando8409
@antonfernando8409 2 года назад
I was expecting something like a UML's breakdown/discovery of classes, based on BEC architecture, Boundary, Entity, Controller objects per use-case. Like for example in your first use-case, 'calling elevator', what are the boundary objects, (buttons), entity objects (direction, destination), then a a controller object to carryout this use-case (which essentially responsible for the complexity of this 'calling elevator' use-case). I think your 'elevator system' object is interesting as well, its the dispatcher, may interact with per use-case controller objects, in this use-case to notify the progression of the elevator as it travels. Any thoughts on BEC driven oo design? Thanks.
@atamishali
@atamishali 8 месяцев назад
Probably the best resource out there to learn LLD.
@mirceskiandrej
@mirceskiandrej 2 года назад
High quality content. Better than other videos on RU-vid
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment :)
@curiossoul
@curiossoul 2 года назад
Thanks for the good content. One point here, no matter what others have covered on this topic, if you are creating a video on it, watchers get intrigued about how you would do it. A complete UML diagram at least would make it a self sufficient tutorial. Also I didn't get why you need ElevatorMotion interface. How does it fit in between 1. dispatcher and Elevator, 2. Internal button and elevator itself. That's why UML is important to know what is your design approach
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment
@MohammedQaiss-eg4is
@MohammedQaiss-eg4is Год назад
thank you for the video, why you didn't use (or talked) about the state design pattern when implementing the states on the elevator (up, down, idle states) , instead of using Enums ? is Enum more preferred ?
@enriqueavina6827
@enriqueavina6827 Год назад
In this case, we know that we will only ever need 3 states (up, down, idle) and we will NEVER extend this functionality. So enum is sufficient, because we will never extend it.
@AndyHOTlife
@AndyHOTlife 4 месяца назад
I don't see how divide and conquer would help in this scenario. Most people would go from floor 1 to the floor where they live and back. Very rarely you would see people going to other floors from floor x != 1. You could have them change elevator cars midway or so, but that is quite an inconvenience (and it would be very annoying if I had to switch 3 or more cars to reach my floor from the bottom). Maybe an adaptive system based on real-time traffic would work, or maybe a division based on functional areas of the building: office floors, living floors, cafeteria/gym floors etc, but that would entail a lot of extra complexity.
@bishnuagrawal5775
@bishnuagrawal5775 3 года назад
i wish there were no elevator in this planet
@ThinkSoftware
@ThinkSoftware 3 года назад
I think you have not tried stairs going to a 10th+ floor building :)
@ssmcs060
@ssmcs060 3 месяца назад
​@@ThinkSoftware😂😂😂 now he wishes there were no such tall buildings exid on this planet
@ceo_google
@ceo_google 3 месяца назад
​@@ssmcs060 and it'll very soon boil down to "I wish there weren't this much population" or ultimately "I wish I wasn't"
@seekersofwisdom85
@seekersofwisdom85 2 года назад
Love ur videos. Tis is my reasoning for a person class / Car class. A class is collection of DATA + FUNCTIONALITIES. Here a person has no direct functionality / data. hence no entity needed.
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment
@AbanoubAsaad-YT
@AbanoubAsaad-YT 2 года назад
Thank you so much for this great content. I learn a lot from it.
@ThinkSoftware
@ThinkSoftware 2 года назад
Glad it was helpful!
@madanmohanpachouly6135
@madanmohanpachouly6135 2 года назад
Thanks for the efforts, very well explained.
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 😊
@GlobalElevatorAcademy
@GlobalElevatorAcademy 3 года назад
Your info is really good. This information is very useful for those who have searched for this and you have great knowledge about this. I’m really impressed with this. Thank you so much.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@shreenathsingh007
@shreenathsingh007 3 года назад
It's a wonderful video, please make more of such videos.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@greatred2558
@greatred2558 3 года назад
> big tech companies This question was asked in client interview which was the last round in wipro recruitment process. I wasn't prepared for that, in fact coming from a tier 4 pvt college i never came across such question. But I did my best, and that was great interview experience. Me and the interviewer both drilled down into elevators for over an hour.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment
@trivedi2690
@trivedi2690 2 года назад
really wipro asked this much are you fresher ?
@CleanCoder
@CleanCoder 2 года назад
Really Good Video, Actually Elevator System Problem is really Complicated problem if we try to dive deep and think.
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@jeevteshsingh899
@jeevteshsingh899 4 года назад
let say when in an idle state, the dispatcher gets multiple requests, in either direction, first, the requests will be divided into going up or down. the dispatcher will first see max no. of requests, and add them into a min-heap and send the elevator closest to the top person who is there at the heap, and will not be idle until the heap is empty now or if the elevator reached either endpoint.
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment. Which algorithm are you referring to?
@archanasrisubramanian4452
@archanasrisubramanian4452 2 года назад
Learnt a lot from this video! Thank you!
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@vartikagupta8816
@vartikagupta8816 3 года назад
Great explanation once again!!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@mandrake216
@mandrake216 5 месяцев назад
The first part was good but the algorithm part was confusing. And at no in this video did you mention about state of the elevators controlled by the people who are inside the elevator. There would be a number pad inside the elevator where people press the actual floor button. For example, 10 people get in the elevator on floor 2. One of them wants to go to floor 1 and 9 of them want to go floor 100. Essentially it has two key functions: elevator summon and passanger dispatch. You haven't attempted to make any distinction between the two at any point in this video
@fringefringe7282
@fringefringe7282 Год назад
Are there really such questions on interviews out there? Puzzle is nice, but seems to complicated.
@aleyummusic
@aleyummusic 3 года назад
32:43, very interesting. So just to clarify, the hashmap is to handle request made from inside the elevator car, correct? Scan all floors from 0 - > N, when a button is pressed on a floor, mark the boolean as true The elevator will move up and then down, it will change its direction when it reaches the 0th and nth floor Use 2 boolean arrays for the up and down direction, stopping at floors marked true, then marking the floor true, (request served ) Each elevator car also has a hasmap to keep track of the floors it should stop at, adding floors requested and then removing them when request is served.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment :)
@rhealy6834
@rhealy6834 Год назад
This Rocks! Not the evelator, but the presentation! I've been wondering about this since college. Now I'm in a five floor building, it all makes sense. What if a vip is coming home to your house in a suprise visit.
@TJ-hs1qm
@TJ-hs1qm 11 месяцев назад
14:30 How will you accurately represent the specifications mentioned at 5:24, such as elevator car load, passenger throughput, passenger waiting time and passenger distribution, if there is no passenger actor involved in the model?
@kunalpatel2112
@kunalpatel2112 Год назад
Explained in a really simple way and to the Point. I would Like to know If Think Software Team has worked on Witness Horizon Software, as I am working on a Project to Simulate Different Call Strategies for a TWIN Elevator System. Thanks.
@mehranbehbahani3050
@mehranbehbahani3050 2 года назад
This gentleman is clearly an educator and a very good one at that!
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@ajaiswal224
@ajaiswal224 2 года назад
Its very informative and helps to think about system and subsystems
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@prashantsalgaocar
@prashantsalgaocar 3 месяца назад
For the last use case for dispatcher algorithm where the elevator is going opposite direction to passenger, how is it different from the state where the elevator is going opposite direction to which the passenger wants to go? Seems like the same state else we are more inclined to say that passenger is on floor 1 and elevator is moving to any floor which is > 1, the last state did not make much sense to me or I got it wrong.. do let me know..
@lambar0
@lambar0 Год назад
Useful
@chessmaster856
@chessmaster856 2 месяца назад
What is an elevator? The ine that gets stuck in the middle. How do we get out?
@janailtongoncalvesdesouza4160
@janailtongoncalvesdesouza4160 10 месяцев назад
Before watching the video I was thinking something similar to LOOK ahead eventhough I never heard about it. I would try to do some combination of look but with timestamps along with booleans to decrease waiting time
@Mohamed-uf5jh
@Mohamed-uf5jh 3 года назад
Excellent , great video !
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@ai780227
@ai780227 3 года назад
While we analyze use case, should we think from user's perspective ? like you said in video, the elevator can open doors and close doors, but I think it is not from user's perspective, that is what elevators can do, not users. I'd like to know more about it.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment. What would a user do in elevator control system?
@praveen544com
@praveen544com 3 года назад
I have seen practically, preallocate the elevators based on floor range and then apply the "Destination Dispatch Algorithm" based on the floor. This ensures Topmost going passenger need to wait due to some low-level floor passenger.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment
@aranne8942
@aranne8942 4 года назад
Thanks for this wonderful video! I always have problems finding the proper requirements for the system...
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment :)
@jasmeetnarula6393
@jasmeetnarula6393 3 года назад
Thank you Think Software, this was really nice. I've just one question, in SCAN algorithm why we need priority queues when anyway we are using two boolean arrays for going up and down ? As, array indexes are already sorted and we have to look at each index of the array whether its set or not. What is the benefit we are getting by using priority queues?
@ThinkSoftware
@ThinkSoftware 3 года назад
The boolean array is used only for passengers who want to onboard the elevators. So if it is set for a floor then an elevator will stop at that floor and reset the value. Then the two priority queues or a single hashmap (for each elevator car) is used to store the destination floors that passengers riding the elevator car want to go. The same boolean array cannot be used for this purpose.
@OmkarGhanekar
@OmkarGhanekar 2 года назад
@@ThinkSoftware why cant the elevator also use a similar concept and maintain boolean array for destinations? everytime it waits at a floor to drop off pasengers it can be change the array to false and change it back to true when at least one passenger sets that floor as destination. would avoid heapify effort
@appliedai6452
@appliedai6452 4 года назад
Nice and very informative video. Please make more videos on object-oriented design.
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@bitsandbytes514
@bitsandbytes514 3 года назад
Great as always. Is is possible make a video on 'how to identify actors', sometimes I get struck and ask "should this entity be an actor?", any help would be helpful.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@rohitkatta5468
@rohitkatta5468 3 года назад
Great video and explanation!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@sahilsingla189
@sahilsingla189 3 года назад
Very informative.. 👌
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@sahithikolichala8359
@sahithikolichala8359 Год назад
what would be the database choice for elevator system
@sin78000000
@sin78000000 3 года назад
One of best explanations for eleveator design. It was quite helpful.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@thomasshelby6780
@thomasshelby6780 3 месяца назад
@@ThinkSoftware Bro why didn't you delve a lil deeper in the priority queue approach. Maybe that's the nature of how the interviews are conducted. Still a good job done
@carlosleal9788
@carlosleal9788 3 года назад
Could you please explain what the "Priority queues" are used for in the case of the SCAN algorithm? Because if I already have in the tru array where the elevator has to stop, I don't understand what's in the queues. Thanks
@shilpaaggarwal5008
@shilpaaggarwal5008 2 года назад
I was also wondering the same. May be priority queues (min heap for UP, max heap for DOWN) contain the destination floors which the persons inside the elevator might have pressed. Elevator checks these queues in order to drop the people.
@yashraithatha6522
@yashraithatha6522 3 года назад
enums are used to define limited and fixed number of varieties which are impossible to get modified in future as well. For e.g. Days of week, Months of year In case of parking lot there are possible changes of introducing new Spot type in future which have needed modification of existing classes and that goes against the Open close SOLID principle. In case of Elevator type, the direction is never going to change. It can only be up, down or idle even in future.
@ThinkSoftware
@ThinkSoftware 3 года назад
thanks for the comment :)
@rashibansal7357
@rashibansal7357 3 года назад
What an amazing explanation!!!!! Hats off to you😀
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks
@shubhangverma1205
@shubhangverma1205 4 года назад
Thank You for this video.Was waiting for something like this.Its amazing.
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@vijayaraghavan1527
@vijayaraghavan1527 3 года назад
@Thinksoftware please add some machine learning based system design questions such as ad prediction, search ranking etc. And how to approach these questions and how the requirements change for machine learning problems. Thank you
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment
@prashantsalgaocar
@prashantsalgaocar 3 месяца назад
Functional requirement mentioned the need to check for the max weight and number of passengers translates to the max weight.. I did not get what we would not need the passenger class in this design as the above are calculated based on passenger object attributes
@girish90
@girish90 3 года назад
Thanks for this video. I really enjoyed it!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@indiansoftwareengineer4899
@indiansoftwareengineer4899 4 года назад
After a huge break, nice video with in depth explanation.. Thanks sir.
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment :)
@sharatchandra9198
@sharatchandra9198 3 года назад
I bow to your explanation and clarity. Thanks a ton. Extremely helpful
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the nice words 😊
@SSRealLifeVLOGS
@SSRealLifeVLOGS Год назад
Make a simple video on selection of motor capacity and loading of car to have energy efficiency
@ThinkSoftware
@ThinkSoftware Год назад
Thanks for the comment. This is out of scope of this channel.
@SahilThakur26
@SahilThakur26 3 года назад
I think even Doors would have hall and elevator implementations as when pressed hall button, the hall door should not open until elevator arrives whereas elevator door can open wherever its dispatched to. Am i right ?
@ThinkSoftware
@ThinkSoftware 3 года назад
all depends on the requirements and how you define the system
@SuburbanDon
@SuburbanDon Год назад
My big question is, how are all of these objects tied together to make it all work together ?
@kulkarnineeraj
@kulkarnineeraj 3 года назад
Do you have full course in System design ? Kindly guide me to such material or course you know in addition to your videos
@ThinkSoftware
@ThinkSoftware 3 года назад
You can check out my course on System Design. Link is in description. The course is not complete and still working on it and that is why if you buy now you will get lifetime access. Once course is complete, I will switch it to yearly subscription for new users.
@rajendragosavi2233
@rajendragosavi2233 3 года назад
Thank you so much mate. Great Material.
@ThinkSoftware
@ThinkSoftware 3 года назад
You are welcome 🙂
@Rajan-K-R9
@Rajan-K-R9 3 года назад
Can you make video on FPGA based Elevator controller...with small lift demo using motor
@ThinkSoftware
@ThinkSoftware 3 года назад
FPGA based elevator controller might be off-topic for this RU-vid channel.
@williamaye-addo
@williamaye-addo 4 года назад
At long last I was able to tackle the problem with some confidence. Excellent video. Thanks very much.
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@matthewzhang7330
@matthewzhang7330 3 года назад
Great video! I love your explanations!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@sahildhiman7675
@sahildhiman7675 2 года назад
Let's say if the elevator system is out of order then shoud we add this state in the Enum only.
@rohansaraf4493
@rohansaraf4493 4 года назад
Are the algorithms inspired from the OS Disk scheduling algorithms?
@ThinkSoftware
@ThinkSoftware 4 года назад
Yes. Scan algorithm is also popularly known as elevator algorithm.
@preetiduhan9937
@preetiduhan9937 3 года назад
Thanks for the informative video. Rally appreciate your effort.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@yogeshsh2575
@yogeshsh2575 3 года назад
Nice video....So these are basically disk scheduling algorithms
@ThinkSoftware
@ThinkSoftware 3 года назад
Yes..sort of.
@AVGilboa
@AVGilboa 3 года назад
Thanks you very much!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@urodba
@urodba 3 года назад
I have a question regarding elevator system being a singleton, wouldn't we want ti be able to instantiate multiple systems in the case of multiple elevator areas ? which have their own schedulers and carts ?
@ThinkSoftware
@ThinkSoftware 3 года назад
Yes. And that what I mentioned while discussing zones. However, now implementation can be different. One way would be singleton elevator system has one or more zones and then rest of objects inside each zone.
@sahildhiman6100
@sahildhiman6100 2 года назад
we need passenger class if we are having maximum load property for elevators.. Each person will have some particular weight that we need to take care of.
@ThinkSoftware
@ThinkSoftware 2 года назад
How would you know the weight of each person?
@kirankartheek5858
@kirankartheek5858 3 года назад
Can I use two hash maps indirection and outdirection for Look Algorithm. Indirection stores entries of floors which are in direction of elevator car travel and Outdirection stores entries of floors which are in opposite direction to elevator car travel. Every operation can be done in O(1) time. Please correct me if I am thinking something wrong
@ThinkSoftware
@ThinkSoftware 3 года назад
It should be only two hash maps - one for up direction and other for down direction
@mayanksaurabhmayanksaurabh9271
@@ThinkSoftware why use a hashmap, we can 2 hashset to store the floors where elevator is requested. Once a floor is processed, remove it from hashset. At the end when hashset empty, reverse direction.
@dhruvinpatel1839
@dhruvinpatel1839 4 года назад
Descriptive and clear explanation. Thanks
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂
@madhumanjushaa2183
@madhumanjushaa2183 3 года назад
One of the usecases could be ++ weight is more than assigned..automatic door open with voice/beep..
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the suggestion
@kumarpallav8156
@kumarpallav8156 Год назад
You look like Ashish Nehra. Btw..Very Good Content
@ankushpatel286
@ankushpatel286 3 года назад
Why we are using ENUM? so the answer is UP,DOWN,IDLE these are the states of the Elevator and it can not be change, so we can say that its a constant property of elevator. In java if we want to define constant ENUM is the best choose.
@ThinkSoftware
@ThinkSoftware 3 года назад
thanks for the comment :)
@chiefmolapo3941
@chiefmolapo3941 3 года назад
thanks for the video it helped and can you describe the logic of how to find the last number of the floor visited in the case of one elevator car system?? even in code it would be ok in java e.g isPressed(); in details
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment :) there are different ways to achieve this. E.g. one way would be to use a queue for this purpose
@HimalayaGarg
@HimalayaGarg 2 года назад
Where is the class diagram if this is about OOPS
@nemichandghate2515
@nemichandghate2515 3 года назад
If passenger class is not used, how would we track total weight in the elevator as elevator has weight limit?
@ThinkSoftware
@ThinkSoftware 3 года назад
How passenger class will help to track weight? Weight will only come from weight sensors.
@suruti94
@suruti94 3 года назад
Passenger class would have been useful if you have to enforce the weight requirements of the car. How do you enforce it otherwise ?
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment. We are designing the system and not simulation. How will you enforce weight requirements with a passenger class?
@mohanparthasarathy7862
@mohanparthasarathy7862 3 года назад
If one of the requirements is that we should be able to enforce such a limit than it can be done as you know the number of passengers boarding the elevator car at any time. Makes sense ?
@ThinkSoftware
@ThinkSoftware 3 года назад
First of all you need a mechanism to identify how many passengers on board or get off the elevator car. Secondly if needed, this can be done via a passenger counter in the elevator car. Why do you need a passenger class?
@mohanparthasarathy7862
@mohanparthasarathy7862 3 года назад
How do you know the weight of the passenger ? One could argue that if the elevator car refuses to move, the last person to get in should get out. I can think of other requirements but it is beyond scope. I agree we can get away without a class
@saifmohammed1481
@saifmohammed1481 2 года назад
I dont understand how enumerations in Parking lot would break code reusability. We just have to add a new Enum type to the end of the array and use that enum, rather than change if else clauses isnt it ? Or am i wrong ?
@ThinkSoftware
@ThinkSoftware 2 года назад
You should read about open close principle.
@17anshul
@17anshul 3 года назад
Very nicely explained! It would be great if you could share reference links of the algorithms. Specially destination dispatch.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂. I will look into this.
@warnercooler4488
@warnercooler4488 2 года назад
Awesome explanation of the algorithms! Thank you so much!
@ThinkSoftware
@ThinkSoftware 2 года назад
Thanks for the comment 🙂
@umangjain3875
@umangjain3875 3 года назад
Nice explanation and very well explained use of enum.
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@ritiksinghvi5387
@ritiksinghvi5387 3 года назад
Which design parameters have you referred for the same, can you please get me name of the reference book with psg
@ThinkSoftware
@ThinkSoftware 2 года назад
well there is no book but 15+ year of my industry experience behind this :)
@mustaphag
@mustaphag 3 года назад
Hi, We may need a user class in a building keep trap of users. For example, I want track a user in a building for security raison
@ThinkSoftware
@ThinkSoftware 3 года назад
It has nothing to do with an elevator system that is installed in buildings.
@mustaphag
@mustaphag 3 года назад
@@ThinkSoftware Thanks. Keep up the good job
@mchakrakodi
@mchakrakodi 4 месяца назад
Dont we need to consider the weight of the passenger? The total weight of passengers should be less thn threshold. I feel we need passenger object
@tresorone-e5s
@tresorone-e5s Год назад
very useful
@saupausau
@saupausau 4 года назад
very nice presentation..looking forward to more system design topics like airline ticket reservation or movie theatre
@ThinkSoftware
@ThinkSoftware 4 года назад
Thanks for the comment 🙂. More videos will be coming soon.
@ClutterReorganizer
@ClutterReorganizer 3 года назад
Thanks, video is very helpful. I consider that Elevator Car or Lift actor should be able to derive different type of Lifts, like Passenger Lift and if needed Service Lift. Also would it be possible to have Operational Zone as an actor, which will derive AllLevels, EvenLevels, OddLevels, SpecialLevels?
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment. Yes as a container.
@enemy40
@enemy40 3 года назад
Come up with classes & method
@wiekotamros2634
@wiekotamros2634 3 года назад
Without passenger object, how would you determine the available capacity of Elevator ?
@ThinkSoftware
@ThinkSoftware 3 года назад
You don't need passenger object for that. How will you even know the weight of each individual passenger? You will just keep track of total weight provided to the elevator by weight sensors
@rohitjaiswal4121
@rohitjaiswal4121 3 года назад
Very nicely explained. Keep up the good work! Thanks!
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@shubhisingh8820
@shubhisingh8820 3 года назад
How do we make our elevator program run continuosly, to accept requests via buttons. What is the industry standard way to do this?(Just in a way at http server listens for requests, But how do we do this for an elevator)
@ThinkSoftware
@ThinkSoftware 3 года назад
May be a topic for another video. In short, event driven architecture.
@s1a1u
@s1a1u 3 года назад
Now a days elevator system moves horizontal also so we should have class and not enum for the elevator's states, just a suggestion :) But overall video is good. Please make a video on elevator's class diagram also
@ThinkSoftware
@ThinkSoftware 2 года назад
thanks for the comment
@chessmaster856
@chessmaster856 5 месяцев назад
This shows that you already know about elevator. Also there is no implementation. I would like to see requirement -> implementation. Refine requirement, refine implementation,
@noumanyosuf9764
@noumanyosuf9764 3 года назад
waoo....!!! this is impressive. :)
@ThinkSoftware
@ThinkSoftware 3 года назад
Thanks for the comment 🙂
@RomanMTino
@RomanMTino 2 года назад
I will disagree with the statement that we should not use Enums in cases where we may need to modify them, we never have 100% confidence that things will stay as they are. So instead we just need to use appropriate technics to encapsulate all the logic we are doing with specific Enums in one place or be sure that we will change it we will get error/warning from the not handled cases. In the case with a parking lot having classes is rather for the ability to add there some additional properties like size or specific structural differences.
@ThinkSoftware
@ThinkSoftware 2 года назад
thanks for the comment..
Далее
Amazon System Design Interview: Design Parking Garage
29:59
System Design Interview: Design Netflix
27:50
Просмотров 258 тыс.