Lecture Java Programming Language: Recursion and Advanced Algorithms - Ho Dac Hung

Lecture Java Programming Language: Recursion and Advanced Algorithms provide knowledge about selection sort, sorting objects, insertion sort, recursion, mergesort, depth-first searching. | Recursion and Advanced Algorithms Ho Dac Hung 1 Selection Sort Sorting is the process of putting items in a designated order either from low to high or high to low. The selection sort algorithm starts by finding the lowest item in a list and swapping it with the first. Next the lowest item among items 2 through the last is found and swapped with item 2. This process in continued until the last item is reached at which point all the items are stored. 2 Selection Sort 3 Sorting Objects Relational operator cannot be used to compare objects. Objects use methods of their class to determine if one object is greater than less then or equal to another. The equals method in a class is used to determine equality. For determining order the compareTo method is used. Objects that are to be sorted must have a class that implements the Comparable interface. 4 Insertion Sort An insertion sort starts by sorting the first two items in a list. This sort is performed by shifting the first item into the second spot if the second item belongs in the first spot. Next the third item is properly inserted within the first three items by again shifting items into their approriate position to make room for the moved item. This process is repeated for the remaining elements. 5 Recursion A method can call itself. This process is called recursion and the calls are referred to as recursive calls. Some solution would cause infinite recursion. To prevent these a recursive solution must have a base case that required no recursion. 6 Mergesort The mergesort algorithms takes a divide and conquer approach to sorting. 7 Binary Search Like the mergesort algorothm the binary search algorithm also taks a divide and conquer approach. It works by examining the middle item of an array sorted from low to high and determining if this is the item sought or if the item sought is above or below this middle term. 8 Binary Search 9 Depth-First Searching The depth-first searching algorithm works by searching from a

Không thể tạo bản xem trước, hãy bấm tải xuống
TÀI LIỆU MỚI ĐĂNG
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.