SlideShare uma empresa Scribd logo
1 de 32
Baixar para ler offline
Cooking Software 101
      Pere Urbon-Bayes
     purbon@purbon.com

      Software Architect
     Belectric ITS GmbH
       Jena, Germany
Cooking Software 101

●   History of Software.
●   Basics of Algorithms.
●   The algorithms toolbox.
        –   Sort and Search.
        –   Recursion.
        –   Data structures.
History of Software
History of Software

●   Ramon Lull (Mallorca, Catalan Kingdom 1232-
    1315)
       –   Writer, Philosopher, Logician and Franciscan
            tertiary.
       –   Influence Leibniz, Newton, Darwing, ...
       –   1274 Ars Magna. 1308 Ars Generalis.
       –   Father of Artificial Intelligence, Computational
            Calculus and Combinatorics.
       –   http://ca.wikipedia.org/wiki/Ars_magna
       –   http://ca.wikipedia.org/wiki/Ramon_Llull
History of Software

●   Gottfried von Leibniz (Leipzig 1646-1716)
       –   Mathematician and Philosopher.
       –   Develop Infinitesimal Calculus, Binary System.
       –   Prolific inventor in mechanical calculators.
       –   Anticipated Information Theory, Lagrange
            Interpolation and aspects of the Turing
            Machine (Calculus ratiocinator).
       –   http://en.wikipedia.org/wiki/Gottfried_Wilhelm_
             Leibniz
History of Software

●   Alan Turing (UK 1912-1954)
       –   Mathematician, Logician, Cryptanalyst and
            computer scientist.
       –   Father of Computer Science, Algorithms and
            Computation (Turing Machine)
       –   Broke Enigma Machine Codes during WW2.
       –   ACE (1947 Manchester) stored prog computer
       –   Turing Test and Father of Artificial Intelligence
       –   http://en.wikipedia.org/wiki/Alan_Turing
History of Software
   (Programing Eniac)
History of Software
(Programing Punched Cards)
History of Software
  (Programing Assembly)
History of Software
  (Programing nowadays)




           b
History of Software
                 (References and Buzzwords)

●   Software Engineering
        –   Agile Software Development.
●   Imperative Programing (C/Pascal/...)
●   Object Orientation (C++/Java/...)
●   Logical Programing (Prolog/ML/...)
●   Functional Programing (Lisp/Erlang/Scala/...)

●   (Book) History of Computing: Software Issues:
    Conference on the History of Computing, ICHC 2000.
Basics of Algorithms
Basics of Algorithms
                        (Data Types)


●   Classics:                   ●   Sophisticated:
       –   Integers                    –   Linked Lists
       –   Doubles                     –   Tuples
       –   Floats                      –   Complex
       –   Characters                       numbers
       –   Strings
                                       –   Rational numbers
       –   Booleans
                                       –   Hash tables
       –   References
                                       –   1rst class
                                             functions
Basics of Algorithms
                            (Operations)


●   Basic mathematics:
       –   ++, –, +, -, *, /, %, += -= *= /= %=.
●   From logics:
       –   &, &=, &&, ||, ^, ^=, ~, !, !=, <<, >>.
●   Comparators:
       –   < <= > <= ==.
●   References and Assignations:
       –   (), [], →, :=.
Basics of Algorithms
                            (Operations)


●   Basic mathematics:
       –   ++, –, +, -, *, /, %, += -= *= /= %=.
●   From logics:
       –   &, &=, &&, ||, ^, ^=, ~, !, !=, <<, >>.
●   Comparators:
       –   < <= > <= ==.
●   References and Assignations:
       –   (), [], →, :=.
Basics of Algorithms
                    (Data structures)


●   Classics:                 ●   Sophisticated:
       –   Arrays                       –   Trees
       –   Lists                        –   Graphs
       –   Stacks                       –   Hash tables
       –   Queue                        –   Bitmaps
       –   ….                           –   Heaps
                                        –   Sets
                                        –   Dictionaries
                                        –   ….
Basics of Algorithms
                      (Flux control)

If (condition) then
   do something               If (condition) then
end                             do something
                              else if (condition) then
If (condition) then             do something more
  do something                else
else                            do something else
  do something else           end
end
Basics of Algorithms
                  (Flux control)

while (condition) do
 do something
end                  for (i:=0 to 100) do
                      Do something
                     end
do
 do something
while (condition) end

Notice some use until together with while
Basics of Algorithms
 (Functions and Procedures)
Basics of Algorithms
 (Functions and Procedures)
Algorithms toolbox
Algorithms toolbox
      (Sorting)
Algorithms toolbox
                          (Searching)


●   Linear search                ●   Binary search
       –   [3,7,4,2,10,1,11,9]           –   [1,2,3,4,7,9,10,11]
       –   [9]                           –   [9]
●   Cost: O(n)                   ●   Cost: O(log(n))
●   Other methods
       –   A*, B*,...
       –   Backtracking
       –   Combinatorial search
       –   Alpha-Beta pruning
Algorithms toolbox
            (Recursion)




function factorial(n) do
  If (n==0) then
      return 1;
  else
      return n * factorial(n-1);
  end
end
Algorithms toolbox
 (Data structures – Matrix )
Algorithms toolbox
 (Data structures - Lists)
Algorithms toolbox
(Data structures – Stack - Queue)
Algorithms toolbox
(Data structures – Hash Table )
Algorithms toolbox
(Data structures – Graph – Binary Tree )
Algorithms toolbox
(Data structures – Bitmap )
Cooking Software 101


 Ingredients+Methods <=> Data + Methods
Cooking Software 101


Thanks! Questions?
     Pere Urbon-Bayes
    purbon@purbon.com

     Software Architect
     Belectric ITS Gmbh
      Jena, Germany

Mais conteúdo relacionado

Semelhante a Cooking Software101

19. Data Structures and Algorithm Complexity
19. Data Structures and Algorithm Complexity19. Data Structures and Algorithm Complexity
19. Data Structures and Algorithm ComplexityIntro C# Book
 
Basic terminologies & asymptotic notations
Basic terminologies & asymptotic notationsBasic terminologies & asymptotic notations
Basic terminologies & asymptotic notationsRajendran
 
The Fuss about || Haskell | Scala | F# ||
The Fuss about || Haskell | Scala | F# ||The Fuss about || Haskell | Scala | F# ||
The Fuss about || Haskell | Scala | F# ||Ashwin Rao
 
Algorithm and Data Structures - Basic of IT Problem Solving
Algorithm and Data Structures - Basic of IT Problem SolvingAlgorithm and Data Structures - Basic of IT Problem Solving
Algorithm and Data Structures - Basic of IT Problem Solvingcoolpie
 
app4.pptx
app4.pptxapp4.pptx
app4.pptxsg4795
 
Advanced Data Analytics with R Programming.ppt
Advanced Data Analytics with R Programming.pptAdvanced Data Analytics with R Programming.ppt
Advanced Data Analytics with R Programming.pptAnshika865276
 
19. Java data structures algorithms and complexity
19. Java data structures algorithms and complexity19. Java data structures algorithms and complexity
19. Java data structures algorithms and complexityIntro C# Book
 
Slides on introduction to R by ArinBasu MD
Slides on introduction to R by ArinBasu MDSlides on introduction to R by ArinBasu MD
Slides on introduction to R by ArinBasu MDSonaCharles2
 
Profiling and optimization
Profiling and optimizationProfiling and optimization
Profiling and optimizationg3_nittala
 
Algorithms Intro Lecture
Algorithms Intro LectureAlgorithms Intro Lecture
Algorithms Intro LectureIra D
 
ScalaCheck
ScalaCheckScalaCheck
ScalaCheckBeScala
 
Mapreduce Algorithms
Mapreduce AlgorithmsMapreduce Algorithms
Mapreduce AlgorithmsAmund Tveit
 
Computability and Complexity
Computability and ComplexityComputability and Complexity
Computability and ComplexityEdward Blurock
 
DSJ_Unit I & II.pdf
DSJ_Unit I & II.pdfDSJ_Unit I & II.pdf
DSJ_Unit I & II.pdfArumugam90
 
Number Crunching in Python
Number Crunching in PythonNumber Crunching in Python
Number Crunching in PythonValerio Maggio
 

Semelhante a Cooking Software101 (20)

19. Data Structures and Algorithm Complexity
19. Data Structures and Algorithm Complexity19. Data Structures and Algorithm Complexity
19. Data Structures and Algorithm Complexity
 
Basic terminologies & asymptotic notations
Basic terminologies & asymptotic notationsBasic terminologies & asymptotic notations
Basic terminologies & asymptotic notations
 
The Fuss about || Haskell | Scala | F# ||
The Fuss about || Haskell | Scala | F# ||The Fuss about || Haskell | Scala | F# ||
The Fuss about || Haskell | Scala | F# ||
 
Lecture 1 (bce-7)
Lecture   1 (bce-7)Lecture   1 (bce-7)
Lecture 1 (bce-7)
 
Algorithm and Data Structures - Basic of IT Problem Solving
Algorithm and Data Structures - Basic of IT Problem SolvingAlgorithm and Data Structures - Basic of IT Problem Solving
Algorithm and Data Structures - Basic of IT Problem Solving
 
app4.pptx
app4.pptxapp4.pptx
app4.pptx
 
Advanced Data Analytics with R Programming.ppt
Advanced Data Analytics with R Programming.pptAdvanced Data Analytics with R Programming.ppt
Advanced Data Analytics with R Programming.ppt
 
Elixir basics
Elixir basicsElixir basics
Elixir basics
 
19. Java data structures algorithms and complexity
19. Java data structures algorithms and complexity19. Java data structures algorithms and complexity
19. Java data structures algorithms and complexity
 
17641.ppt
17641.ppt17641.ppt
17641.ppt
 
Slides on introduction to R by ArinBasu MD
Slides on introduction to R by ArinBasu MDSlides on introduction to R by ArinBasu MD
Slides on introduction to R by ArinBasu MD
 
17641.ppt
17641.ppt17641.ppt
17641.ppt
 
Cs syllabus 22
Cs  syllabus 22Cs  syllabus 22
Cs syllabus 22
 
Profiling and optimization
Profiling and optimizationProfiling and optimization
Profiling and optimization
 
Algorithms Intro Lecture
Algorithms Intro LectureAlgorithms Intro Lecture
Algorithms Intro Lecture
 
ScalaCheck
ScalaCheckScalaCheck
ScalaCheck
 
Mapreduce Algorithms
Mapreduce AlgorithmsMapreduce Algorithms
Mapreduce Algorithms
 
Computability and Complexity
Computability and ComplexityComputability and Complexity
Computability and Complexity
 
DSJ_Unit I & II.pdf
DSJ_Unit I & II.pdfDSJ_Unit I & II.pdf
DSJ_Unit I & II.pdf
 
Number Crunching in Python
Number Crunching in PythonNumber Crunching in Python
Number Crunching in Python
 

Último

GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfPatidar M
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 

Último (20)

GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
Active Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdfActive Learning Strategies (in short ALS).pdf
Active Learning Strategies (in short ALS).pdf
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 

Cooking Software101

  • 1. Cooking Software 101 Pere Urbon-Bayes purbon@purbon.com Software Architect Belectric ITS GmbH Jena, Germany
  • 2. Cooking Software 101 ● History of Software. ● Basics of Algorithms. ● The algorithms toolbox. – Sort and Search. – Recursion. – Data structures.
  • 4. History of Software ● Ramon Lull (Mallorca, Catalan Kingdom 1232- 1315) – Writer, Philosopher, Logician and Franciscan tertiary. – Influence Leibniz, Newton, Darwing, ... – 1274 Ars Magna. 1308 Ars Generalis. – Father of Artificial Intelligence, Computational Calculus and Combinatorics. – http://ca.wikipedia.org/wiki/Ars_magna – http://ca.wikipedia.org/wiki/Ramon_Llull
  • 5. History of Software ● Gottfried von Leibniz (Leipzig 1646-1716) – Mathematician and Philosopher. – Develop Infinitesimal Calculus, Binary System. – Prolific inventor in mechanical calculators. – Anticipated Information Theory, Lagrange Interpolation and aspects of the Turing Machine (Calculus ratiocinator). – http://en.wikipedia.org/wiki/Gottfried_Wilhelm_ Leibniz
  • 6. History of Software ● Alan Turing (UK 1912-1954) – Mathematician, Logician, Cryptanalyst and computer scientist. – Father of Computer Science, Algorithms and Computation (Turing Machine) – Broke Enigma Machine Codes during WW2. – ACE (1947 Manchester) stored prog computer – Turing Test and Father of Artificial Intelligence – http://en.wikipedia.org/wiki/Alan_Turing
  • 7. History of Software (Programing Eniac)
  • 9. History of Software (Programing Assembly)
  • 10. History of Software (Programing nowadays) b
  • 11. History of Software (References and Buzzwords) ● Software Engineering – Agile Software Development. ● Imperative Programing (C/Pascal/...) ● Object Orientation (C++/Java/...) ● Logical Programing (Prolog/ML/...) ● Functional Programing (Lisp/Erlang/Scala/...) ● (Book) History of Computing: Software Issues: Conference on the History of Computing, ICHC 2000.
  • 13. Basics of Algorithms (Data Types) ● Classics: ● Sophisticated: – Integers – Linked Lists – Doubles – Tuples – Floats – Complex – Characters numbers – Strings – Rational numbers – Booleans – Hash tables – References – 1rst class functions
  • 14. Basics of Algorithms (Operations) ● Basic mathematics: – ++, –, +, -, *, /, %, += -= *= /= %=. ● From logics: – &, &=, &&, ||, ^, ^=, ~, !, !=, <<, >>. ● Comparators: – < <= > <= ==. ● References and Assignations: – (), [], →, :=.
  • 15. Basics of Algorithms (Operations) ● Basic mathematics: – ++, –, +, -, *, /, %, += -= *= /= %=. ● From logics: – &, &=, &&, ||, ^, ^=, ~, !, !=, <<, >>. ● Comparators: – < <= > <= ==. ● References and Assignations: – (), [], →, :=.
  • 16. Basics of Algorithms (Data structures) ● Classics: ● Sophisticated: – Arrays – Trees – Lists – Graphs – Stacks – Hash tables – Queue – Bitmaps – …. – Heaps – Sets – Dictionaries – ….
  • 17. Basics of Algorithms (Flux control) If (condition) then do something If (condition) then end do something else if (condition) then If (condition) then do something more do something else else do something else do something else end end
  • 18. Basics of Algorithms (Flux control) while (condition) do do something end for (i:=0 to 100) do Do something end do do something while (condition) end Notice some use until together with while
  • 19. Basics of Algorithms (Functions and Procedures)
  • 20. Basics of Algorithms (Functions and Procedures)
  • 22. Algorithms toolbox (Sorting)
  • 23. Algorithms toolbox (Searching) ● Linear search ● Binary search – [3,7,4,2,10,1,11,9] – [1,2,3,4,7,9,10,11] – [9] – [9] ● Cost: O(n) ● Cost: O(log(n)) ● Other methods – A*, B*,... – Backtracking – Combinatorial search – Alpha-Beta pruning
  • 24. Algorithms toolbox (Recursion) function factorial(n) do If (n==0) then return 1; else return n * factorial(n-1); end end
  • 25. Algorithms toolbox (Data structures – Matrix )
  • 26. Algorithms toolbox (Data structures - Lists)
  • 29. Algorithms toolbox (Data structures – Graph – Binary Tree )
  • 31. Cooking Software 101 Ingredients+Methods <=> Data + Methods
  • 32. Cooking Software 101 Thanks! Questions? Pere Urbon-Bayes purbon@purbon.com Software Architect Belectric ITS Gmbh Jena, Germany