Đề thi cấu trúc dữ liệu và giải thuật dsa ch3 recursion

48 5 0
Đề thi cấu trúc dữ liệu và giải thuật  dsa ch3 recursion

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Recursion Recursion Luong The Nhan, Tran Giang Son Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and backtracking Recursio[.]

Recursion Luong The Nhan, Tran Giang Son Chapter Recursion Data Structures and Algorithms Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Luong The Nhan, Tran Giang Son Faculty of Computer Science and Engineering University of Technology, VNU-HCM Recursion and backtracking Recursion implementation in C/C++ 3.1 Outcomes Recursion Luong The Nhan, Tran Giang Son • L.O.8.1 - Describe the basic components of recursive algorithms (functions) • L.O.8.2 - Draw trees to illustrate callings and the value of parameters passed to them for recursive algorithms • L.O.8.3 - Give examples for recursive functions written in C/C++ • L.O.8.5 - Develop experiment (program) to compare the recursive and the iterative approach • L.O.8.6 - Give examples to relate recursion to backtracking technique Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and backtracking Recursion implementation in C/C++ 3.2 Contents Recursion Luong The Nhan, Tran Giang Son Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and backtracking Recursion implementation in C/C++ Recursion and backtracking Recursion implementation in C/C++ 3.3 Recursion Luong The Nhan, Tran Giang Son Recursion and the basic components of recursive algorithms Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and backtracking Recursion implementation in C/C++ 3.4 Recursion Recursion Luong The Nhan, Tran Giang Son Definition Recursion is a repetitive process in which an algorithm calls itself • Direct : A → A • Indirect : A → B → A Recursion and the basic components of recursive algorithms Example Factorial Properties of recursion " Designing recursive algorithms F actorial(n) = n × (n − 1) × (n − 2) × × × × Using recursion: " F actorial(n) = n × F actorial(n − 1) if n = if n > Recursion and backtracking Recursion implementation in C/C++ if n = if n > 3.5 Basic components of recursive algorithms Recursion Luong The Nhan, Tran Giang Son Two main components of a Recursive Algorithm Base case (i.e stopping case) General case (i.e recursive case) Example Factorial Recursion and the basic components of recursive algorithms Properties of recursion " F actorial(n) = if n = base case n × F actorial(n − 1) if n > general case Designing recursive algorithms Recursion and backtracking Recursion implementation in C/C++ 3.6 Recursion Recursion Luong The Nhan, Tran Giang Son Recursion and the basic components of recursive algorithms Properties of recursion Designing recursive algorithms Recursion and backtracking Hình: Factorial (3) Recursively (source: Data Structure - A pseudocode Approach with C++) Recursion implementation in C/C++ 3.7 Recursion Recursion Luong The Nhan, Tran Giang Son Factorial: Iterative Solution Algorithm iterativeFactorial(n) Calculates the factorial of a number using a loop Pre: n is the number to be raised factorially Post: n! is returned - result in factoN i=1 factoN = while i

Ngày đăng: 25/03/2023, 08:39

Tài liệu cùng người dùng

Tài liệu liên quan