1 / 8

Programming Paradigms

Programming Paradigms. CPSC 449 Week 3-2 Prepared by : Mona Hosseinkhani , Arash Afshar Winter 2014. Department of Computer Science, University of Calgary. Defining range of list. Other ways of defining lists of numbers, chars and other enumerated types

neil
Télécharger la présentation

Programming Paradigms

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Programming Paradigms CPSC 449 Week 3-2 Prepared by : Mona Hosseinkhani, ArashAfshar Winter 2014 Department of Computer Science, University of Calgary

  2. Defining range of list • Other ways of defining lists of numbers, chars and other enumerated types • Single step: [n .. m] • [1..5] = [1,2,3,4,5] • ['c'..'g'] = ['c', 'd', 'e', 'f', 'g'] = "cdefg“ • Customizable step: [n, p .. m] • [1,4..20] = [1,4,7,10,13,16,19] • ['c', 'e'..'k'] = ['c', 'e', 'g', 'i', 'k'] = "cegik"

  3. fastFib • Review simple implementation • fib n | n == 0 = 0 | n == 1 = 1 | n > 1 = fib (n-1) + fib (n-2) • fib 7 = (fib 6) + (fib 5) = (fib 5) + (fib 4) + (fib 5) • Better way: Compute Fib of a number, only once • Use Pairs

  4. fastFib (cont.) • Implementation: • At each step, fib adds two numbers: (u, x) • Consider these steps: • (0,1), (1,1), (1,2), (2,3), (3,5), … • Pay close attention to the first element of each pair fibStep :: (Integer,Integer) -> (Integer,Integer) fibStep (u,v) = (v,u+v)

  5. fastFib (cont.) • Construct the sequence of pairs: • fibPair :: Integer -> (Integer,Integer) • fibPair n | n==0 = (0,1) | otherwise = fibStep (fibPair (n-1))

  6. fastFib (cont.) • Finally, define fastFib as bellow: • fastFib :: Integer -> Integer • fastFib = fst . fibPair • note that, as the previous implementation of fib, this function does not print the whole series: • fastFib 7 = 13, not 0,1,1,2,3,5,8,13

  7. Library Documentations • Mac • file:///usr/share/doc/ghc/html/ • Ubuntu: • /usr/share/doc/ghc • Windows: • documents are found in Haskell Platform program groups • http://www.haskell.org/hoogle/

  8. Question hossem@ucalgary.ca

More Related