Programming Paradigms - Computerphile

  Рет қаралды 685,353

Computerphile

Computerphile

Күн бұрын

Пікірлер: 961
@Tehsusenoh
@Tehsusenoh 11 жыл бұрын
Aaah! You used commas in the Java for loop instead of semicolons!
@LeodSMW
@LeodSMW 7 жыл бұрын
This is the THIRD video introducing functional programming where the host tries to introduce it as magic where you just put an expression and it's done, and then goes "but of course that's not all there is to it!". This annoys me because you could literally have introduced Java in this with "sum(1, 10)" and then defining the method for sum. Like.. am I missing something or is this approach people like to use to introduce functional programming incredibly silly?
@7thAttempt
@7thAttempt 9 жыл бұрын
May also be worth stating that imperative languages such as Java in this case also afford you the freedom to recursively define the sum function - you don't have to use a loop.
@SimplyDudeFace
@SimplyDudeFace 9 жыл бұрын
Nitpicker alert: his Java example would not compile, he is using commas to separate the parts of the for loop instead of semicolons.
@theodorberza9933
@theodorberza9933 9 жыл бұрын
What he is trying to say is that in imperative languages you give instructions on how to do a process while in declarative languages you define the relations between those things.
@FernieCanto
@FernieCanto 11 жыл бұрын
Come on, what programmer doesn't mix up a symbol, or forget a semicolon, or forgets the name of a method sometimes? Those trivial errors usually happen when a programmer is thinking in a higher level of abstraction, and even more when there is an IDE underlining the syntax errors during typing. Only computers are required to run flawlessly, and even they have to be fault-tolerant sometimes. So why shouldn't we?
@Computerphile
@Computerphile 11 жыл бұрын
Name of this film changed from 'styles' to 'paradigms' to better reflect the content. >Sean
@RFDarter
@RFDarter 10 жыл бұрын
I could write the same recursive function in Java, so what's the real difference?
@stensoft
@stensoft 9 жыл бұрын
C++ templates are functional. Which makes them quite hard for most C++ programmers to use since the rest of C++ is (mostly) imperative.
@mrlithium69
@mrlithium69 9 жыл бұрын
Lets see the machine code then!
@Vulcapyro
@Vulcapyro 11 жыл бұрын
It would be nice if the next explanation would be about how Java's (and others') recursion requires a finite call stack of return pointers while Haskell (and most functional languages) has guaranteed tail-call elimination and what that implies.
@jsnadrian
@jsnadrian 11 жыл бұрын
Brady -- I know these videos keep getting a lot of criticism, but I think that's a testament to how engaging this channel is. You've really created an amazing set of videos, here and at numberphile, sixty symbols etc.
@xcalibur839
@xcalibur839 11 жыл бұрын
In the for loop, if the variable i starts at zero, there will actually be one extra iteration at the beginning where 0 is added to 0. It would be much better to initialize i at 1 for this purpose.
@Squeazer
@Squeazer 9 жыл бұрын
It's worth noting, that summing integers from 1 to N would be done by an equation: (N(N + 1))/2
@astroboomboy
@astroboomboy 11 жыл бұрын
Very nice explanation. A very important part of functional programming is being able to store pointers to higher order procedures and being able to return these as a value.
@omaraymanbakr3664
@omaraymanbakr3664 8 ай бұрын
10 years later and this explanation is still rock solid, thank you .:)
@havz0r
@havz0r 10 жыл бұрын
What he is NOT saying though is that the "imperative" version is much faster than a recursive version. For high-load simulations and complex calculations, you won't see people using recursive functions just to save a few lines of code, couse they're much slower.
@iabervon
@iabervon 11 жыл бұрын
helper :: Int Int -> Int helper total 0 = total helper total 1 = total helper total n = helper (total * n) n factorial :: Int -> Int factorial n = helper 1 n If you do out this version of factorial 10 by hand, you'll notice that you don't end up writing out longer and longer expressions, unlike with Laurence's version. In fact, the compiler will also notice this fact, and give you more efficient code as a result. This is the key to writing efficient functional programs.
@BruceRiggsGamer
@BruceRiggsGamer 10 жыл бұрын
int total = sum(1, 10); // Java
@wwfarch
@wwfarch 11 жыл бұрын
An in depth explanation of functional vs imperative languages is probably beyond the scope of this channel. I think loops vs recursion is a decent place to begin understanding the differences between the two types of languages.
@brodaclop
@brodaclop 9 жыл бұрын
How times change, nowadays in Java you'd write something like IntStream.rangeClosed(1,10).reduce(0,Integer::sum);, which is suspiciously functional...ish style. Languages rarely fall into purely one category, and of course as we know, real programmers can use any language and any paradigm to write in Fortran. :)
@overcunning
@overcunning 9 жыл бұрын
brodaclop This looks more like Javascript. Java must have more objects. And of course, factories, proxies, abstractions and all of that useless complicated stuff.
@SnowRaptor
@SnowRaptor 11 жыл бұрын
Remember that these videos present an educatiional purpose. the brackets and the total = total =i; are there to be clearer for a wider audience.
@TazG2000
@TazG2000 11 жыл бұрын
"[C/C++/C#] are explicitly MS target languages" "'high level' C/C++/C# binary will never fit in registry and or memory." These comments from you are two completely different and unrelated statements, and they are both nonsense.
@dizzeehaskell
@dizzeehaskell 11 жыл бұрын
factorial :: Int -> Int factorial 0 = 1 factorial 1 = 1 factorial n = n * factorial (n - 1) I was torn between explaining summation or factorial for this video, but the latter is a personal favourite. :3
@MrCringedragon
@MrCringedragon 11 жыл бұрын
Yikes that indent on the for loop open bracket was cringe
@mightyNosewings
@mightyNosewings 11 жыл бұрын
That depends greatly on the kind of programming language you want to write. If you want to do it properly, you need at least three things: 1. A formal specification of the language syntax. 2. A specification (not necessarily formal) of the language semantics. 3. A way to execute a program written in the language syntax (1) according to the language semantics (2). There are tools which can automatically generate a parser from a syntax specification. The rest is harder.
@Vixikats
@Vixikats 9 жыл бұрын
It should be said that basically every modern programming language in use today uses a mixture of Imperative and Functional design. Working together is far more effective.
@yesimstuntdude
@yesimstuntdude 9 жыл бұрын
Kaitlyn Amanda Same as how basically all modern languages intimately mix OOP and imperative programming. I think people will continue to find that functional programming paradigms are really not that different from ones already used in imperative programming, and functional style will become just another tool in the programmer's toolbox. I mean heck, if you teach someone to use immutable types, recursion, and service provider interfaces, they're already halfway to being a functional programmer without realizing it.
@Vixikats
@Vixikats 9 жыл бұрын
Stuntddude That's the ultimate goal. Functional programming applies best in situations where efficiency is key while Imperative programming is better for being more flexible. Most programmers know how to do both of them, but it's experts who know when to use what.
@yesimstuntdude
@yesimstuntdude 9 жыл бұрын
VoltzLiveYT I think you may be taking the idea of mixing functional and imperative too literally. Nobody is saying you should write some parts of your program in functional code and some parts in imperative code (mixing code), but you should know when to use functional concepts and paradigms alongside other concepts and paradigms (mixing styles). If you've ever deliberately designed an immutable type or written a service provider interface in an imperative language, you've already taken part in this.
@CzipperzIncorporated
@CzipperzIncorporated 9 жыл бұрын
+Kaitlyn Amanda > Functional programming applies best in situations where efficiency is key You're full of it. Functional programming applies when _correctness_ is key, not efficiency. Copying an entire list, traversing to the end, then appending an element is much slower than just pushing a value to a vector.
@yesimstuntdude
@yesimstuntdude 9 жыл бұрын
Chris Gregory Appending to a linked list is done at the beginning for a reason, linked lists are not the only compound data type in functional programming (that would be truly stupid), and if you have to copy an entire list just to append a value to it, it's because your code is bad and needs to be refactored.
@markexclamation
@markexclamation 11 жыл бұрын
I understand why people who haven't studied computer science will think this might be difficult to comprehend. At the same time, you can't assume that someone would be able explain the gist of a computer paradigm in a 10 minute video. For such a small introduction I think he actually got the gist of imperative/functional programming explained pretty well but there is so much more to this topic that you need to research yourself.
@TheGnurgen
@TheGnurgen 9 жыл бұрын
Using a library function for the haskell part when you defined everything for the java part is cheating. And if you were to define it in haskell i would not use lists and just do: sum 0 = 0 sum n = n + sum (n-1) and just call sum 10.
@shirankao69
@shirankao69 11 жыл бұрын
All of your comments are correct but as the guy in the video said, Haskell defines sum in a different way. At any rate, a Haskell list is a singly linked list defined as being something that is either (the empty list) or (an element and a list) and these are the 2 cases you should always check when pattern matching on it. By the way, the sum of [] is 0 in Haskell.
@craig3.0
@craig3.0 11 жыл бұрын
Or you could just use basic number theory and python, in which case it would be: def pyramid_sum(n): total = (n + n**2)/2 return total Or, if you didn't know that, you could do: def pyramid_sum(n): while i < n: total += i += 1 else: return total
@bytesnobjects
@bytesnobjects 11 жыл бұрын
That is functional style. Although you will face a problem not mentioned in the video: a stack overflow for big n. Functional languages are inherently connected to tail recursion, where the compiler turns your recursive calls into something iterative to prevent creating a new stack frame for every recursion. The point is: this only works if the recursive call is the very last instruction in your code path. The sum in the video would have the same problem. That's why it's defined differently.
@sugarfrosted2005
@sugarfrosted2005 9 жыл бұрын
Pretty sure you got your definition of sum wrong since it skips a special case, namely the empty sum.
@Ginto8
@Ginto8 11 жыл бұрын
If you're complaining about using {} for a one-line loop, there are actually a lot of downsides to that -- probably the most important is that it's less friendly to source-control and diffs/merges. If you're talking about using total = total + 1 instead of +=, he's explaining it to people who aren't already familiar with programming, and += is a bit of an odd construct to people who haven't done much programming.
@SciJoy
@SciJoy 6 жыл бұрын
Hello, annotations are going away. You might want to pin the "The eliminates within the 'for' loop should be semi-colons, not commas - apologies" note.
@jakedewey3686
@jakedewey3686 11 жыл бұрын
The concept is actually fairly simple. Basically, there are some problems that are hard for computers to solve, but easy for computers to verify if they've found the correct solution. A good example is factoring a number that's the product of 2 primes. Assume P and Q are prime, and that R = P * Q. If you were to write a program to find the factors of R, if P and Q are large, then it will take the computer a long time to solve, because it has to check one value at a time.
@georgilas
@georgilas 9 жыл бұрын
The Fibonacci sequence in Haskell: fib n = fibs !! n where fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
@jakedewey3686
@jakedewey3686 11 жыл бұрын
The reason this is important is because a lot of useful/important algorithms are in NP as far as we know. I used the factoring problem for a reason: products of primes are at the core of RSA encryption. If you can find P and Q easily and quickly, you could potentially crack every single file ever encrypted using RSA. If you could prove the the factoring problem is in P, or that every NP problem is also in P, you have the potential to break -- and fix -- a lot of things.
@datastu432
@datastu432 11 жыл бұрын
Great video! Laurence mentions that these are both "high level" languages. I'd love to see a video about how a "low level" programming language would tackle problems differently from these "high level" programming languages. Cheers!
@nulano
@nulano 11 жыл бұрын
the first part of the for loop (int i = 0) is the initializer - it is done first, then the condition in the middle (i
@TazG2000
@TazG2000 11 жыл бұрын
"What can't you do in any language by enhancing it or more generally adding libraries?" I think you're asking the wrong question, and missing the point. Languages are not just a means to an end. Consider languages like Coffeescript, whose *sole purpose* is to be translated to another existing language *just* so we can write in a style that is "nicer" to humans. The whole purpose of programming languages is to provide a bridge between human expression and computer instruction, not to "do" more.
@seaottersoup
@seaottersoup 11 жыл бұрын
If you ever have to work in a programming team, or if you have to modify code written by others, you'll gain an appreciation for a consistent style, even if you think your personal style would be an improvement.
@veganaiZe
@veganaiZe 5 жыл бұрын
Forget about the commas in his `for` statement; I like the way he connects recursion with working out a simple math equation. I'd never thought about it quite exactly like that. Cognitive load lifted.
@Pseudoradius
@Pseudoradius 11 жыл бұрын
The main purpose of this video was to show differences between imperative and functional styles of programming. The implementations used in the video therefore were chosen because they are easy to understand and show characteristics of the different styles. So in this case, the naive way of summation satisfies the requirements for an educational video, while the more efficient and portable solution doesn't.
@TazG2000
@TazG2000 11 жыл бұрын
You clearly were talking about speed: "Even facebook realised that C is really slow and migrated do JIT compilers." Which is also wrong: they were using PHP, not C -- and again, JIT is an optimization for *interpretation* (like PHP), *not* an improvement over pre-compilation (like C). Another hint that you don't know what you're talking about is that you group "C/C++/C#" as if they're the same, which is as ignorant as grouping Java and Javascript; they have little in common besides the name.
@reganheath
@reganheath 11 жыл бұрын
Where Sum[] is an error, or not the compiler won't prevent it occurring - because there is no syntax for defining that pre-condition (see Jim Cullen's responses). So, if you use Sum in a situation where the input is the result of another function, and it is an empty list, then you will get the error Laurence mentions in the video @5:20 "non exhaustive patterns". A better solution would be to define the empty list pattern and return 0, or if haskell can assert a violation of contract.
@qarey
@qarey 6 жыл бұрын
I would LOVE more videos about programming paradigms!
@randfur
@randfur 11 жыл бұрын
For his example of summing 1 to 10 the empty list case was not required, I agree. For writing a generic sum function for educational purposes it's a mistake to omit the empty list case. TIL infix functions bind weaker than regular functions. You're quite right that "n + sum ns" is equivalent to "n + (sum ns)". I'd still recommend using the latter style though, "print sum [1..10]" will fail to compile while "print (sum [1..10])" works as intended.
@richardhawkes
@richardhawkes 10 жыл бұрын
I'm so hyper-aware of the high-rise-terminal (upspeak) these days, and this drove me nuts... I wish I didn't go so annoyed by these things as this was a good video!
@zebadboy
@zebadboy 11 жыл бұрын
it's fairly simple actually the P=NP is a computer solving problem. It stands for Polynomial and non-polynomial and the question is : can you solve a NP problem (like Minesweeper) in a polynomial time (in a number of steps represented by a polynome) aka can you solve any minesweeper grid size with the same algorithm ; that would not go exponentially in steps.
@nylepentik2696
@nylepentik2696 Жыл бұрын
look! it’s that crypto nerd
@Bodeification
@Bodeification 11 жыл бұрын
You could, and it would have the same answer. But usually when you use a FOR loop you start from 0 and go to
@AbdulKadir-yl5vn
@AbdulKadir-yl5vn 8 жыл бұрын
just FYI for future visitors who don't know, Java has had functional support since 2014.
@shirankao69
@shirankao69 11 жыл бұрын
Correct. As shown in the video, sum xs = foldl (+) 0 xs. As for what foldl does, it would be best if you read the wikipedia entry on Folds, or if you prefer a more mathematical approach google catamorphism. To put it simply, if you imagine the list [1,2,3] as f(1, f(2, f(3, []))) then that fold invocation will replace f with + and [] with 0. If that made little sense then try to remember the definition of a list, f would be the non-empty case list constructor.
@jagc2206
@jagc2206 8 жыл бұрын
With the Java for loop you have ',' instead of ';'
@HiAdrian
@HiAdrian 11 жыл бұрын
I'm referring to him saying "we added one to it", but I think "i" gets incremented after the first assignment, not before. Some people here seem to find the comments on syntax annoying (Brady made a mistake too), but this is a logical mistake and I think it's important to get it 100% right with code examples.
@ololfreud
@ololfreud 11 жыл бұрын
for some reason in my university we started with Scheme, so func. language. Quite disturbing for us who often started by Java or C, but it's definitely an interesting and refreshing approach, despite the bracket nightmare :P
@TehMiSch
@TehMiSch 11 жыл бұрын
Haskell is my favorite programming language! It's a shame only few people know about it, thank you Sean Riley and Mr. Day for showcasing this language on Computerphile! I would like to appeal to everyone who already knows how to program in some imperative language such as Java, C#, Python etc. to learn a functional language such as Haskell, it will IMPROVE you as a programmer in these imperative languages as you will be able to look at a problem in a different way as before.
@norman.soetbeer
@norman.soetbeer 10 жыл бұрын
Just a bit nitpicking: technically you're adding the numbers from 0 to 10 (instead of 1 to 10) in the Java example, which means 11 iterations instead of 10. Good video anyway
@ColinWilliams26
@ColinWilliams26 11 жыл бұрын
Technically, before anything was being added to the variable "total", the "i" used as a sort of counter had 1 added to it at the beginning of the loop. So "total", which started at 0 as it should, had 1 added in the first round of the loop. He had to start with "i = 0" so the loop would start by adding 1, not 2.
@metime00
@metime00 10 жыл бұрын
Join the functional traaaaaaaaaaain. Pure functional languages like Haskell can make certain assumptions about your code because of no side effects that lets the compiler gut and rearrange stuff to make it faster. The first version of Haskell came out in the early 90s, and they've been improving the compiler ever since. Performance differences are negligible, and the productivity increase from safe, testable code is a huge difference.
@CraftersWithSoul
@CraftersWithSoul 11 жыл бұрын
In that case, you are right, 'i' will be incremented after executing the loop. So we are summing now 0 to 10 instead of 1 to 10.
@melvicybanez5865
@melvicybanez5865 10 жыл бұрын
The Holy FP Trinity (Functors, Monoids, and Monads) and their variants is the main reason why everyone is so scared of Haskell
@jamescorr6956
@jamescorr6956 11 жыл бұрын
Sorry for another post but there are so many reasons you shouldn't be frustrated, such as the solution for the Haskell sum is specific to the way Haskell was designed and is a general approach so any sequence of numbers can be provided such as [7,1,2] and the function will return the right answer yours will not. Yes examples given, like the consecutive numbers or a set of two number can be done in an easier ways but the library function is intend for unknown sequences of numbers.
@DeeWeext
@DeeWeext 9 жыл бұрын
Haskell, by use (July, '15) 41th most used language, with popularity 0.273%.
@shirankao69
@shirankao69 11 жыл бұрын
It tends to be more memory intensive actually but your point about debugging is kinda correct. "Kinda" because it helps you avoid writing bugs, finding them depends on your tools and language. Code written in a functional style tends to be more robust, testable and reusable/composable.
@picosdrivethru
@picosdrivethru 9 жыл бұрын
such an awesome channel, keep it up please!
@RaminHonary
@RaminHonary 11 жыл бұрын
Haskell has "static type checking," which means the entire program has a type equation. When you compile, the compiler tries to prove the consistency of your program using a theorem proving algorithm and if you have made a typing mistake anywhere in the program, the compiler catches your mistake. A similar program written in Python or Ruby cannot do this, you must run and test the program to catch the type mistakes. Java checks some types, but because of casting rules not all types are checked.
@johndoe2
@johndoe2 11 жыл бұрын
Or "i
@yuqii65535
@yuqii65535 11 жыл бұрын
1) You could write a recursive sum function in Java that does the same thing. It's not about the languages' approaches, it's about the programmers approaches. 2) That's why I said I found the video frustrating because there was too much emphasis on "This is how you do it in X versus Y", could have done the same thing with pseudo code. 3) It's the exact same problem. Find the sum of 1 to 10. Is a for loop going to work with non-consecutive integers?
@bluemeeni1658
@bluemeeni1658 10 жыл бұрын
WHAT?
@Okiesmokie
@Okiesmokie 11 жыл бұрын
it is more intuitive to do something like looping from 0 to 9 for 10 elements than 1 to 10, because you are doing one less comparison using the less-than operator rather than less-than-or-equal-to. ie: for(int i = 0; i < 10; ++i) rather than for(int i = 1; i < 11; ++i)
@RyanShanks
@RyanShanks 11 жыл бұрын
I may be wrong and I am not trying to attack Haskell, nor do I know much about it, but would I be correct in guessing that it is generally slower or more memory intensive given that it seems to be more heavily recursive?
@ReyyPL
@ReyyPL 11 жыл бұрын
In Haskell example there is a syntax error. It should be (n:ns) instead of (n,ns). (n:ns) makes a list (with n as its head and ns as its tail), while (n,ns) makes a pair, and since sum works with lists it would produce an error (comma in parenthesis makes pairs, triplets and so on, while comma in brackets separates elements of a list).
@1nt3rl1nk9
@1nt3rl1nk9 10 жыл бұрын
What I hear in this video: imperative / Java = shit, functional / Haskell = brilliant. Without any explanation or real comparison of both approaches. This guy can not even programm a loop correctly syntactically and logically (hes looping 11 times). A good programmer first learns how to code correctly both with imperative and functional languages and then he can chose which one to use to solve his problem.
@apella88
@apella88 11 жыл бұрын
Not necessarily. C is generally considered a low level language, yet seen as high level compared to assembler languages. Low or high level depends on how far things are or can be abstracted through the language. A typical metric (not necessarily a good one, but a typical one) is the amount of code needed to do something. The more code you need, the lower the language.
@clays6359
@clays6359 8 жыл бұрын
when will the video on the mentioned "dark art" be done?
@ivanaslamov
@ivanaslamov 11 жыл бұрын
While he did miss the base case for empty list, but the green code is correct, compiles and works for non-empty input: ---- Sum.hs ---- module Sum where sum' :: [Int] -> Int sum' [n] = n sum' (n:ns) = n + sum' ns --- ghci ---- Prelude> :l Sum [1 of 1] Compiling Sum ( Sum.hs, interpreted ) Ok, modules loaded: Sum. Sum> sum' [4,5,2] 11 Sum>
@GrEEnEyE089
@GrEEnEyE089 10 жыл бұрын
whats the point. In java you can use a tracking variable or a recursive function to do this. why would i want to use a language like haskell then
@CraftersWithSoul
@CraftersWithSoul 11 жыл бұрын
the java for loop will use whatever value you give it, you could start your loop at 48 if you want to. But since the video is how to sum one to ten, we start the loop at one.
@kaminarigaston
@kaminarigaston 9 жыл бұрын
sum(1, x) = (x*x)/2 + x/2
@ytxstream
@ytxstream 11 жыл бұрын
I feel like this video is better at explaining loops vs. recursion than functional vs. iterative
@lbencz
@lbencz 9 жыл бұрын
Actually, the java example would sum up to only 45. The for loop increments the i after iteration, so the series would be: 0+1+2+3+4+5+6+7+8+9. The total would equal 55 if you did ++i in the loop declaration ;]
@lbencz
@lbencz 9 жыл бұрын
***** I stand corrected :D was under the false impression modern compilers took pre incrementors into account...
@bethelemstar4636
@bethelemstar4636 9 жыл бұрын
lazos true, this misconception is very common, so I thought I'd shed some light, because I got blown on this question when I was doing some job interview :D I wouldn't want anyone to share that feeling :DDD
@dwightspoogeberry2485
@dwightspoogeberry2485 11 жыл бұрын
The code is an informal description of what the structure of an imperative program looks like. The people nitpicking are obviously not experienced programmers, as they fail to grasp the purpose of the example. This is not a tutorial, and you are not superhackers for noticing that the code would not compile under Java.
@rdoetjes
@rdoetjes 9 жыл бұрын
I always think in imperative problem solving methods, even with languages that have some functional approach like Python I often do it the "long way round". I guess having developed in assemblers for so long your brain gets hard wired in such away that it can't be disengaged that easy anymore. Or I just have very poor neuroplasticine behaviour ;)
@Airblader
@Airblader 11 жыл бұрын
The loop was written with commas instead of semicolons. Granted, it's a little hard to spot in that weird font, but just compare it to the assignment in the line above.
@annihilatorg
@annihilatorg 11 жыл бұрын
I prefer the O(1) version of the sum 1 to N function: (1 + N)*(N/2)
@reganheath
@reganheath 11 жыл бұрын
See shirankao69's reply; Sum[] is 0 in Haskell. And, as s/he says a list in Haskell is "either (the empty list) or (an element and a list) and these are the 2 cases you should always check when pattern matching on it". The analogy with acos(x) doesn't hold because in the case of Sum an empty list is not an invalid parameter, it is still logically summable, the answer is 0.
@reinux
@reinux 9 жыл бұрын
A good demonstration of one of the unfortunate reasons Haskell scares people away: we're having a discussion about mutation, when *bam*, suddenly we're talking about types and pattern matching. The Haskell community is pedagogically insane.
@Darwin226
@Darwin226 9 жыл бұрын
I'm confused. You do realize he used pattern matching to implement the sum function, right? He didn't just mention it. It was the integral part of the solution. Just as he used the for loop to implement the iterative one. He mentioned the for loop. Did he explain it?
@reinux
@reinux 9 жыл бұрын
The assumption of this video is that most of the audience is already aware of basic imperative programming; so I don't see why he should need to explain loops. It might have helped some people, but realistically it seems moot. Aside from pattern matching, he also uses a compiler, which is comprised of a lexer/tokenizer, a parser, at least two intermediate languages in the case of Haskell; he uses a left-to-right text layout; he uses a the decimal number system... he uses a ton of other things that are rather obscure in detail but clear in context. It's a chronic problem that a lot of CS instructors have: an inability to understand what's intuitively clear to the audience and what's not. Basic Haskell pattern matching is very intuitive. It doesn't need mentioning.
@astroboomboy
@astroboomboy 11 жыл бұрын
That depends on how the list is implemented, the empty list is not always the base case, in C for example it is a number, and in other languages some lists have a code in the beginning and end of the list. There's just loads of different ways to make a list.
@JohnCater5
@JohnCater5 9 жыл бұрын
Upspeak! This presenter speaks in upspeak.
@TazG2000
@TazG2000 11 жыл бұрын
Even if you added features to an old language to mold it into something "for Java" (the VM), all libraries with platform-specific logic would be incompatible, and all the new "Java" features would be unusable with the old language's compiler. So your "new version" would essentially be a new language. And this is in fact exactly what happened: Java is based on C syntax. And they need to be separate, because the C compiler still has its place.
@piq-dg3vz
@piq-dg3vz 8 жыл бұрын
haskell is awesome! currently learning it.
@Metagross31
@Metagross31 11 жыл бұрын
but the arguments in a for loop are separated by semicolons, not comas, so it would be: for(int i=0; i
@slr150
@slr150 10 жыл бұрын
The java code is iterative and the haskell is recursive, therefore they don't result in the same machine code.
@Doriide
@Doriide 11 жыл бұрын
I share these with many people hope some of them actually watch your videos.
@GWigWam
@GWigWam 11 жыл бұрын
My eyes! Ahhhh it hurts so much!
@poo2thegeek
@poo2thegeek 11 жыл бұрын
I know what you mean, but the point of this video is not about basic programming. It is about the differences in types of programming. For example, I program for fun. I normally do so in java or C. But I did not know anything about other programming styles.
@GPCTM
@GPCTM 8 жыл бұрын
Internet began to work. And then 'they' invented Java.
@dizzeehaskell
@dizzeehaskell 11 жыл бұрын
The answer to all of your questions is 'monads'. You can implement side-effects such as state and I/O in Haskell through their usage, but you - for the most part - throw away assurances that your code is mathematically sound. Haskell is a Turing complete language, meaning that anything that can be written using a computer can be represented, albeit probably with more effort. For a particular example, look up the game Frag, a 3D FPS Doom tribute written entirely in Haskell! :)
What is a Monad? - Computerphile
21:50
Computerphile
Рет қаралды 608 М.
Arrays vs Linked Lists - Computerphile
29:57
Computerphile
Рет қаралды 494 М.
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 167 МЛН
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 16 МЛН
When Cucumbers Meet PVC Pipe The Results Are Wild! 🤭
00:44
Crafty Buddy
Рет қаралды 57 МЛН
Functional programming - A general introduction
11:47
Daedalus Community
Рет қаралды 113 М.
The Most Difficult Program to Compute? - Computerphile
14:55
Computerphile
Рет қаралды 1,4 МЛН
Object Oriented Programming vs Functional Programming
18:55
Continuous Delivery
Рет қаралды 761 М.
Creating Your Own Programming Language - Computerphile
21:15
Computerphile
Рет қаралды 102 М.
Pong & Object Oriented Programming - Computerphile
12:51
Computerphile
Рет қаралды 263 М.
Essentials: Functional Programming's Y Combinator - Computerphile
13:26
CPU Pipeline - Computerphile
21:48
Computerphile
Рет қаралды 69 М.
Where GREP Came From - Computerphile
10:07
Computerphile
Рет қаралды 942 М.
Why Isn't Functional Programming the Norm? - Richard Feldman
46:09
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 167 МЛН