Reverse Polish Notation and The Stack - Computerphile

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

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

  • @duckrutt
    @duckrutt 8 лет назад +710

    The best part about having a RPN calculator is it will only be borrowed by anyone once and you will always get it back.

  • @Jarzyniak
    @Jarzyniak 10 лет назад +384

    As a Pole, I'm incredibly impressed by his pronunciation of Łukasiewicz's name.

  • @tomasznikiel2508
    @tomasznikiel2508 10 лет назад +288

    Perfect spelling of the Polish name, respect for digging it up.

  • @thesnowedone
    @thesnowedone 10 лет назад +184

    The key thing to remember here is that not only is this efficient processor wise; RPN is also efficient memory wise. You don't have to keep track of multiple variables all over the place; everything you need to complete your operations is in the stack in the order you are going to have to process them.
    It's a very tidy system and a core component of computing that is normally hidden by higher level languages.

  • @vagramAU
    @vagramAU 8 лет назад +209

    Wish i had such a passionate professor at uni, good stuff.

  • @mikelipsey8837
    @mikelipsey8837 10 лет назад +86

    It's very refreshing having a gentleman this age teaching these with this passion! Great teacher! Thank you, sir.

  • @jamestaylor7974
    @jamestaylor7974 6 лет назад +33

    So many of these videos are brilliantly educational that I have started editing and improving the captions for people like myself who are hard-of-hearing or deaf. If you find my changes suitable, please use and alter them as you please. I have so far done this for two videos and intend to continue if you will approve the changes. It is the least I can do for such a great channel. :)

  • @ArnavDhamija
    @ArnavDhamija 10 лет назад +56

    This guy is a phenomenal teacher.

  • @IMortage
    @IMortage 10 лет назад +172

    I've always thought the Reverse Polish sounded like a Chess Opening. Which makes it even better.

  • @Ostsol
    @Ostsol 10 лет назад +4

    Funny how just the small hint of the title instantly made it clear to me just what the benefit of postfix notation was. I hadn't actually thought about it until now.

  • @Chaosdude341
    @Chaosdude341 10 лет назад +71

    It's interesting to watch these coding videos because of the benefits it brings to my own logic. Coding is incredible at showing different ways to do the same thing. Before watching this video, I'd never thought in mathematical terms any different from infix notation. It's incredible to see how that suddenly changes the approach to the entire problem. Long story short, thank you for uploading these, Brady and Sean.

  • @Fhuaran
    @Fhuaran 10 лет назад +1

    Brailsford's videos just get better and better. It's like a story unfolding.

  • @wattage
    @wattage 9 лет назад +11

    Wonderful video. I first encountered an fell in love with RPN when I got my HP 32SII, back in high school. It was so great. You never needed parentheses and you could enter formulas by reading left to right. So nice to hear Prof. Brailsford explain the history and explain why it was so great.

  • @Ghost00117
    @Ghost00117 10 лет назад +6

    I remember when I first learned about this a Comp. Sci. course at uni. The prof. was printing out a tree using a recursive method and just moved the print out statement between different conditions to convey the idea to us. Really cool stuff. :D

  • @ElectiveTool
    @ElectiveTool 10 лет назад +3

    Please don't stop filming this wonderful man, and I won't stop watching :]

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

    Just saw two videos on this channel and really impressed by the way they go into explaining it by doing into details. The professor is really amazing.

  • @XNAforyou
    @XNAforyou 10 лет назад

    One of the most important videos for any Computer Scientist. The stack is a fundamental data structure.

  • @Grngnak
    @Grngnak 10 лет назад

    A number of years ago I tried learning a programming language that used RPN and couldn't quite understand how it all went together... I wish I had this video back then, it explains things very simply and make sense out of something that has had me confused for over a decade. Thank you professor!

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

    Whoa, does this man have a playlist or something? What a great teacher! I feel I could watch him for hours and get super smart 😊

  • @KaiserSpherical
    @KaiserSpherical 10 лет назад +2

    I remember having a similar reaction as Professor Brailsford here when I was first introduced to postfix notation and their relation to stacks. It's just brilliant! Absolutely a match made in heaven :D

  • @shayneoneill1506
    @shayneoneill1506 10 лет назад +29

    If you understand this, you pretty much understand everything you need to know to program a language called "Forth". Forth is a brilliant language that is as low level as C (its almost superpowered assembly code) but can be as expressive and powerful as LISP. Its often used for programming very low level stuff, and thus gets called a "toaster language" (Because you might program the chip in a toaster with it). The most astonishing result of forth is;- you can program very very low level stuff without ever needing to set a register.

  • @vivianrichards3434
    @vivianrichards3434 10 лет назад +4

    You just gave me new confidence to take on Compilers courses. Thank you.

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

    It's wonderful to see someone as passionate as this gentleman about his professional field

  • @fuzzylilpeach6591
    @fuzzylilpeach6591 6 лет назад +1

    Its like the euler's identity of computer science. Somehow seemingly unrelated conclusions come together in a beautiful way.

  • @JohnJohnson-xt7zf
    @JohnJohnson-xt7zf 6 лет назад

    I love listening to this guy talk about literally everything.

  • @BlakeHelms
    @BlakeHelms 10 лет назад

    Best and most easy to understand explanation I've seen of RPN and stacks. Professor Brailsford always does a good job of breaking things down like this,

  • @IceDave33
    @IceDave33 10 лет назад +17

    Prof Brailsford is great! I'm really enjoying all the Computerphile videos, you've got some great people to talk to, and they're really well edited! Thanks Sean, keep them coming :)

  • @MrAntiKnowledge
    @MrAntiKnowledge 9 лет назад +74

    Damn. One of my assigments is to program a calculator which interprets a string in postfix notation. After watching this video that's an laughably easy task.
    Just have to push everything on a stack and I'm as good as done.
    I can understand now why they like RPN.

  • @MattBrookes1304
    @MattBrookes1304 10 лет назад +2

    Probably the most interesting video on the channel. Professor Brailsford is very interesting

  • @peterlilliegeo
    @peterlilliegeo 7 лет назад

    I love how passionate this gentleman is about his craft. Great video and quite easy to understand! Thanks Computerphile.

  • @angeldude101
    @angeldude101 10 лет назад +23

    I have a calculator app on my tablet that I usually keep in rpn mode. Makes it easier to do bulk operations and it makes sure the calculator doesn't mess up the order of operations.

  • @Karthik-yy6up
    @Karthik-yy6up 8 лет назад +79

    Too bad I did not find this channel when I was supposed to be studying all this.

  • @StankyPickle1
    @StankyPickle1 10 лет назад +1

    Thank you! Please do more videos like this.
    My compsci professor would always mention the stack but never took the time to explain it, and the book we were using was only focused with teaching the basic semantics of the language. This seems like an important concept to know if you're trying to optimize run time.

  • @LimeGreenTeknii
    @LimeGreenTeknii 10 лет назад +284

    I'm gonna pop some stacks, only got operands in my pocket.

  • @aries_9130
    @aries_9130 10 лет назад +58

    Brilliant explanation, love this guy.

  • @ozymet
    @ozymet 6 лет назад

    I love how you are able simplify really complicated topics. Computerphile... thank you.

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

    Best explanation of RPN and stack I’ve heard yet. 😊

  • @esra_erimez
    @esra_erimez 6 лет назад +1

    I'm a time traveler from 4 years into the future and this is still the best explanation of the subject matter

  • @goodguy686
    @goodguy686 10 лет назад

    These videos, like the ones about sorting algorithms and huffman trees are my favourite by far on this channel. Keep it up!

  • @woonsuen545
    @woonsuen545 6 лет назад

    Splendidly explained! My year-long question on how computer determines which operation to be done first has FINALLY been solved.

  • @JimCullen
    @JimCullen 10 лет назад +10

    I think this is Professor Brailsford's best Numberphile video yet!

  • @kaptenrobert
    @kaptenrobert 10 лет назад

    These videos are so informative. I never leave this channel without learning something new. Great initiative!

  • @anakso
    @anakso 10 лет назад

    I am so glad you started a podcast with CGPGrey. I had seen your numberphiles videos before and found them interesting but had no idea compterphiles existed until I decided to look at what your many other channels actually are (idea for future pod cast to mention all your channels and what they actually are)As a computer science student I found this very helpful. Thank you!

  • @Urahara12
    @Urahara12 10 лет назад +5

    Absolutely brilliant explanation, and loved the stacking disks! Keep up the informative videos!

    • @unvergebeneid
      @unvergebeneid 10 лет назад +1

      I bet he has them to demonstrate the Tower of Hanoi: en.wikipedia.org/wiki/Tower_of_Hanoi

  • @BrendonWilliams
    @BrendonWilliams 7 лет назад +1

    This was what made reading RPN click for me. Great video.

  • @unvergebeneid
    @unvergebeneid 10 лет назад +12

    My first contact with RPN was in a maths exam when I had forgotten my calculator. The teacher was kind enough to let me borrow hers but it was RPN. The first couple of minutes I thought I was as good as dead but I got used to it surprisingly quickly.

  • @MrCanigou
    @MrCanigou 10 лет назад

    Brilliant as usual. Reminds me of a friend at the "classes préparatoires" who tried to convince me that his HP stack calculator was way more fitted and nimble than my casio fx 180 P. I couldn't argue and felt a bit clumsy. 30 y. ago, feels like yesterday.

  • @ApostolisTympakianakis
    @ApostolisTympakianakis 10 лет назад

    I wish I had such good tutors when I was a student. I enjoy every single one of his videos.

  • @AstroTorch
    @AstroTorch 10 лет назад +38

    Thanks for this Brady, exam tomorrow.

    • @Computerphile
      @Computerphile  10 лет назад +36

      Evan. glad you liked it - my colleague Sean made this video though... I was just a viewer like you! >Brady

  • @NotMarkKnopfler
    @NotMarkKnopfler 6 лет назад +1

    The programming language called Forth, invented by Charles H. Moore has stacks and reverse Polish notation at it's very heart. It's an incredibly powerful and beautifully simple language.

  • @GogiRegion
    @GogiRegion 6 лет назад +1

    A lot of the older RPN calculators didn’t use a stack system and instead used 4 registers that just transposed with each other, which was about 2 hz faster (practically null), but it limited you to 4 numbers in the “stack” without needing to use variables. This actually was less limiting than you might expect, but it is nice to have an actual stack that’s limited only to the calculator’s memory.

  • @yellownexusoftheworlds8646
    @yellownexusoftheworlds8646 8 лет назад

    Hello there, i must say, this is one of the best videos i have ever seen on this subject, right now i am studying for a Compiler Design class and i must say, i just loved it, so much clarity, if you are able to, please give my thanks to your colleagues and also thank you, tell them to keep it up

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

    i cannot explain how big of a smirk i had when he started talking about loading values into registers, and then using the arithmetic unit... its such a cool process

  • @JAN0L
    @JAN0L 10 лет назад +36

    Pretty good pronunciation on Łukasiewicz's name.

  • @AndrewBlundon
    @AndrewBlundon 10 лет назад +5

    Excellent. I've been waiting for this one, I suggested it last year as a topic for Numberfile. RPN takes a while to learn but once you get it things become so much easier.... I'd be lost without my HP48G calculator (which doesn't have an "=" button but has an "ENTER" button instead).

    • @batsali99
      @batsali99 10 лет назад +2

      I've had a HP50G for 4 years now. I'm so much used to RPN notation that I have trouble using "normal" calculators with any efficiency :D RPN is a much faster and error proof way to tackle hairy expressions. RPN users unite! :D

    • @seth094978
      @seth094978 10 лет назад +1

      batsali99 I had my first taste of programming on a 28S, and ever since then I haven't been able to get away from RPN. I now own two 50G's and a 35S. I love how "=" is a secondary function. It really discourages people from "borrowing" my calculators.

    • @batsali99
      @batsali99 10 лет назад +1

      seth094978
      Yeah, the borrowing thing is quite true :)

  • @ThomasGiles
    @ThomasGiles 10 лет назад +1

    A great explanation of stacks and polish notation. Would love to see a follow-up on how things like brackets and unary (negative -) operators work with this.

    • @Beer_Dad1975
      @Beer_Dad1975 10 лет назад +1

      You don't need brackets as you control precedence by order of the operands and operators For example 4;5;6;+;x might be (5+6)x4, whilst 4;5;+;6;x would be (4+5)x6. Hope you can follow my notation - had to use x as a multiplier as asterisk seems to cause bold type. The system I work with uses semi-colons to indicate a push and then calculates left to right pushing the the result from the last operator back onto the stack.

  • @AaronPaden
    @AaronPaden 10 лет назад +1

    This is great, I love this guy. I already had a passing understanding of these concepts, but I had no idea they were related.

  • @sydniusalminia5364
    @sydniusalminia5364 6 лет назад

    I really appreciate you taking the time to make this video. It really encourages me and its super informative.

  • @mbalicki
    @mbalicki 10 лет назад

    Professor Brailsford's pronunciation of "Jan Łukasiewicz" is nearly perfect :) Thank you for that!

  • @GogiRegion
    @GogiRegion 6 лет назад +22

    I love RPN calculators. They’re so much faster to use, incredibly intuitive once you understand how to use them, it uses less keystrokes, the system runs faster because it doesn’t need to “compile” the code, and nobody ever will want to borrow it after you show them how to use it. 😆

  • @natpbs
    @natpbs 10 лет назад +16

    This seems such a cooler notation than the standard one. Especially in computing it gets incredibly confusing with operands. Some have higher priority, some go right to left some left to right amd stuff...

  • @RMoribayashi
    @RMoribayashi 10 лет назад +2

    Loved my HP-15 with its RPN and 4 level stack. Many still think it was the best scientific calculator ever made. Enough for Hewlett Packard to put out a limited edition in 2011, *_22 years_* _after the original had been discontinued_! Mine went to silicon heaven after almost 30 years of use. I make do with an RPN calculator on my PC.

  • @WinBear
    @WinBear 10 лет назад +5

    Oh man, that takes me back to the mid-80s with HP calculators that use RPN and my sophomore data structures class!

  • @thenorup
    @thenorup 10 лет назад +37

    I learned about RPN by programming in FORTH on the Redpower computer from the Minecraft mod :)

  • @flemish4
    @flemish4 10 лет назад +7

    these videos are brilliant

  • @richb313
    @richb313 10 лет назад

    Great video. This is as good an explanation of RPN as I have ever seen. RPN is especially useful when dealing with computers because it lays out the information in the same way the machine has to use it. It is however not great for non machines like humans. We do not use the information the same way a machine does. We see the entire line at once and then evaluate it. It is why I prefer TI calculators over HP calculators. I prefer to let the machine evaluate then execute the line. That makes life simpler for me. I really do not care if it is simpler for the machine.
    I would recommend an HP calculator for anyone going into Computer Science or Engineering because these two disciplines require such heavy use of computers and writing original code it is useful in thinking in these program steps to begin with.

    • @sivalley
      @sivalley 10 лет назад +1

      Not trying to start an argument, pun intended, but RPN is more natural than you think. If when you were being taught arithmetic they taught you to arrange your numbers vertically, you were using RPN. The dawn of the digital calculator actually caused a lot of confusion. TI's follow the throwback that early calculators only had three registers since only one operand could be preformed at a time. HP's stack flow is an analog to the conventional vertical 'pen and paper' method.

  • @Spender604
    @Spender604 7 лет назад

    Always learning things from Professor Brailsford.

  • @valseedian
    @valseedian 8 лет назад

    I love this. when I made a scripting interpreter with compiler in c I used reverse polish notation in my compiled scripts. id never heard of this before today but it made the most sense. especially when parsing nested function calls.

  • @ericmiller3231
    @ericmiller3231 10 лет назад

    These videos are so, so good. Thank you guys for putting them together.

  • @CusterFlux
    @CusterFlux 10 лет назад

    Best explanation of this I've ever seen.

  • @adelahmed5886
    @adelahmed5886 4 года назад

    Marvelous way of explaining. Thank you computerphile.

  • @bazsturgeon3017
    @bazsturgeon3017 8 лет назад +1

    Very nicely explained and awesome demonstration, much appreciated.

  • @GeoffreyBernardo
    @GeoffreyBernardo 9 лет назад

    Very good lecture!
    LISP languages use the opposite: forward polish notation. There parentheses are required to show where the list of operands end for a operator.

  • @tobias-edwards
    @tobias-edwards 6 лет назад

    Great video, better than my lecturer by far

  • @coreyredmon5611
    @coreyredmon5611 10 лет назад +7

    Yes. I would like to see more of this please. Very interesting.

  • @KristoffDoe
    @KristoffDoe 10 лет назад +2

    I was impressed, it was very good pronaunciation of name Łukaszewicz. :)

  • @tomcooney183
    @tomcooney183 5 лет назад +2

    The David Attenborough of computers

  • @666Tomato666
    @666Tomato666 10 лет назад

    props to professor Brailsford! very good pronunciation of Łukasiewicz surname

  • @glufull
    @glufull 10 лет назад +1

    Yes Mr professor, you pronounced "Łukasiewicz" surname well. Great video!

  • @MichailShaposhnikov
    @MichailShaposhnikov 10 лет назад +2

    OMG, I requested this one and they actually made it real. THANK YOU SO MUCH! =D

  • @dude157
    @dude157 10 лет назад +1

    I have a modern scientific calculator which only gets used for some of the more advanced calculations I need to do when I'm not at my computer. But it is so much faster and easier to deal with complicated equations using a RPN calculator, as you type the values in the same order you would if you were solving it yourself.
    Now that you can get RPN calculator applications for cell phones, and not have to fork out a load of money, doing calculations couldn't be easier.

  • @mcvoid1
    @mcvoid1 10 лет назад +1

    Good video! I like the computer science topics, like the trees and stacks and math.

  • @amigojapan
    @amigojapan 8 лет назад

    I owuld of liked the video to continue the explanation on how it then evaluates (a+b)+c in reverse polish stack notation... but great video, this is something i always wanted to know, how a stack evaluates stuff!

  • @DavidJohnsson
    @DavidJohnsson 10 лет назад +1

    I would like to see more videos on stacks, assembly language and compilers from computerphile.

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

    Amazing explaination and demonstration. Thank you so much for posting this video!

  • @drewmccluskey
    @drewmccluskey 10 лет назад +1

    I will watch any video of Prof David Brailsford talking

  • @bruinflight
    @bruinflight 10 лет назад

    Brilliant! So illuminating of processes once mysterious to me! Thanks for another great video!

  • @Dayanto
    @Dayanto 10 лет назад

    Will be taking a course on assembly in a week or so, this was a nice introduction. :)

  • @AlexMaday
    @AlexMaday 10 лет назад

    Fantastic! Can't wait to learn more about stacks!!

  • @jayzo
    @jayzo 10 лет назад

    Literally studied this in computing last week.

  • @HadienReiRick
    @HadienReiRick 10 лет назад

    I always like presenting prefix/infix/postfix via binary trees when teaching people how to translate them. for example if you build a binary tree of the equation "a+b*c", where operands are leaves and operators are nodes, you'd get a tree that looks like this.
    ( + )
    / \
    ( a ) ( * )
    / \
    ( b ) ( c )
    Now take your finger and start directly above the root of this tree. Draw an outline counter-clockwise around the tree hugging all the leaves and nodes. if you want to write this tree in prefix simply write down the node/leaf whenever your finger passes directly to the left of it. For infix is when you passes directly below one. And for postfix is when you pass directly to the right of one. In the end you would get these results
    prefix: +a*bc
    infix: a+b*c
    postfix: abc*+

  • @mikecimerian6913
    @mikecimerian6913 10 лет назад

    Pedagogical genius. Love going back to basics.

  • @PvtHaggard
    @PvtHaggard 10 лет назад +3

    does this mean there is is going to be a video about the difference between the heap and the stack

    • @unvergebeneid
      @unvergebeneid 10 лет назад +1

      Just as the tree mentioned in this video, a stack is an abstract data type. A heap, however, isn't. Just because the stack known from memory management is known as _the_ _stack_ in that context doesn't make it special as far as stacks go.
      The more likely next step from here is the queue, since a stack is also called LIFO (last in, first out) and a queue is called FIFO (first in, first out).
      So you're talking about a totally different branch of computer science called computer engineering. That doesn't mean that this won't be covered some day but they are currently just laying the groundwork for this with stuff that's essential in _all_ areas of computer science.

    • @oskarmamrzynski
      @oskarmamrzynski 10 лет назад

      Penny Lane Heaps are data structures.

    • @saf271828
      @saf271828 10 лет назад +2

      Penny Lane Science != Engineering. Science is research-oriented, engineering is the application of science to solve problems within some economic scope. Engineering, thus, cannot be a branch of science.
      Also, "the stack" is extraordinarily special; as a data structure, it's LIFO, but it's singularly important because without it, contemporary, register-based CPUs cannot perform subroutine calls recursively. Whether implemented in hardware (as on x86) or in software (as on PowerPC and most other RISCs), "the stack" is absolutely vital for ... everything.
      "The heap", however, is not "a heap" (usually), and so you're right to say it's not an abstract data type. However, it, nonetheless, remains vitally important, for it is the pool of memory from which stacks for processes and other data structures are typically allocated from.
      I say typically because there is one language, Forth, which generally lacks a heap in this fashion. But, I digress.

    • @oskarmamrzynski
      @oskarmamrzynski 10 лет назад +1

      Samuel Falvo II Consider quite a lot of computing research is funded by outside companies, many research projects are actually elaborating on new applications of computing. Same goes for non-academic companies like Google, which come up with new large-scale algorithms and can be considered science. I would say in field of computing, engineering and science are inseparable.

    • @unvergebeneid
      @unvergebeneid 10 лет назад +2

      Samuel Falvo II Ok, replace "computer science" with "informatics" which is the name given to computer science in about any other language except English. If your argument still holds, then at least we aren't just arguing semantics.
      I had hoped I made clear that I do not doubt that memory management is a worthy topic for videos to come but that this is totally besides the point. And the point is that Jordan Stocker apparently jumped to conclusions because he had heard "stack" in a very specialized context which probably kept him from seeing the bigger picture here and the fundamental importance of "stack" as an ADT and a concept. Now if you want to talk to me about that then please do, otherwise I'm afraid this discussion lacks the focus to keep me engaged.
      Oskar Mamrzynski A heap, which has got nothing to do with _the_ heap as Samuel rightly said, is a data structure but _not_ an abstract data type. The abstract data type implemented using heaps is called "priority queue".

  • @qman1314
    @qman1314 10 лет назад +3

    Wouldn't bc*a+ be more "stack efficient" than abc*+? Using the latter three items need to be pushed before the calculation begins, with the former there's only ever two items on the stack.

    • @Lttlemoi
      @Lttlemoi 10 лет назад +1

      Some operators might not be commutative. (think about multiplying matrices)

    •  10 лет назад +1

      I don't think efficiency was the point here. Using abc*+ demonstrates how you can have more than two operands on the stack and how they are evaluated. Had he used bc*a+, people might have gotten the wrong idea that there must always be at most two operands on the stack(since the second example also had two)

    • @qman1314
      @qman1314 10 лет назад

      Lttlemoi But you don't directly multiply matrices on the stack, ultimately you have to break them down and perform the calculations on the components.

    • @niilemak
      @niilemak 10 лет назад

      But you'd have to search for that event in the arguments you are entering, it's much easier to go from the start to the end with that kind of thing. It saves a lot of time. Imagine you have a very long 100+ arguments operation to do ...

    • @Lttlemoi
      @Lttlemoi 10 лет назад

      Tom Furie That still doesn't mean that you can just swap the operands around. Matrices are only one example. If you are using lists and you want to concatenate them, the order of operands is obviously very important. (Lisp and Haskell come to mind, even though they use prefix instead of postfix)
      The stack is only used for keeping your data around in a simple way. It's not used for the calculations themselves, which are completely irrelevant.
      Additionally, you don't have to keep the variables themselves on the stack. You could also just use pointers, which allows you to mix objects from base classes and derived classes without any hassle with object size etc.

  • @mosesnah2893
    @mosesnah2893 8 лет назад

    love you guys computerphile

  • @atharvas3244
    @atharvas3244 5 лет назад

    *Finally, a place in computer science where size doesn't matter!*

  • @goeiecool9999
    @goeiecool9999 10 лет назад +1

    I remember being very frustrated about writing in FORTH because it was a stack based language and the specific compiler I was using didn't allow you to make changes, you had to type everything right at ONCE! I tried 5 hours to make something that would have taken 30 minutes in LUA. ahh good days.

  • @DudokX
    @DudokX 10 лет назад

    Really simple yet powerful and effective! great!

  • @dimitrioskalfakis
    @dimitrioskalfakis 9 лет назад +5

    excellent teacher. soothing demeanor. in-depth knowledge helps a lot i guess!

  • @TheJakDragon
    @TheJakDragon 10 лет назад +1

    This could just be me, but I notice that RPN and the stack work in a similar matter to that of the "stack" in Magic the Gathering, and in that sense, not overly complicated to understand. Makes me curious of if it could've influenced MTG, and whether or not some people could see using it as a way of practicing the use of the notation and the CPU stack.

    • @IceMetalPunk
      @IceMetalPunk 10 лет назад

      Oh, definitely. The first time I played Magic, my friend was teaching me and he's like, "there's a stack. It's...a stack." Luckily we're both computer scientists, so I understood right away. It's very useful :)