TAILIEUCHUNG - Thuật toán Algorithms (Phần 38)

Tham khảo tài liệu 'thuật toán algorithms (phần 38)', khoa học tự nhiên, toán học phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | CLOSEST POINT PROBLEMS 363 t L M A vertical dividing line just to the right of F has eight points to the left eight points to the right. The closest pair on the left half is AC or AO the closest pair on the right is JM. If we have the points sorted on y then the closest pair which is split by the line is found by checking the pairs HI CI FK which is the closest pair in the whole point set and finally EK. Though this algorithm is simply stated some care is required to implement it efficiently for example it would be too expensive to sort the points on y within our recursive subroutine. We ve seen several algorithms with a running time described by the recurrence T N 2T N ty N which implies that T N is proportional to N log N if we were to do the full sort on y then the recurrence would become T N Nlog and it turns out that this implies that is proportional to N. To avoid this we need to avoid the sort of y. The solution to this problem is simple but subtle. The mergesort method from Chapter 12 is based on dividing the elements to be sorted exactly as the points are divided above. We have two problems to solve and the same general method to solve them so we may as well solve them simultaneously Specifically we ll write one recursive routine that both sorts on y and finds the closest pair. It will do so by splitting the point set in half then calling itself recursively to sort the two halves on y and find the closest pair in each half 364 CHAPTER 28 then merging to complete the sort on y and applying the procedure above to complete the closest pair computation. In this way we avoid the cost of doing an extra y sort by intermixing the data movement required for the sort with the data movement required for the closest pair computation. For the y sort the split in half could be done in any way but for the closest pair computation it s required that the points in one half all have smaller x coordinates than the points in the other half. This is easily accomplished by .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã 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.