TAILIEUCHUNG - Introduction to Programming Using Java Version 6.0 phần 8

Viết lại các lớp PhoneDirectory từ tiểu mục để nó sử dụng một TreeMap để lưu trữ các mục thư mục, thay vì một mảng. (Việc làm này đã được đề xuất trong tiểu mục .) 2. Trong toán học, hoạt động một số được xác định trên bộ. | Exercises 519 Exercises for Chapter 10 1. Rewrite the PhoneDirectory class from Subsection so that it uses a TreeMap to store solution directory entries instead of an array. Doing this was suggested in Subsection . 2. In mathematics several operations are defined on sets. The union of two sets A and B is solution a set that contains all the elements that are in A together with all the elements that are in B. The intersection of A and B is the set that contains elements that are in both A and B. The difference of A and B is the set that contains all the elements of A except for those elements that are also in B. Suppose that A and B are variables of type set in Java. The mathematical operations on A and B can be computed using methods from the Set interface. In particular B computes the union of A and B B computes the intersection of A and B and B computes the difference of A and B. These operations change the contents of the set A while the mathematical operations create a new set without changing A but that difference is not relevant to this exercise. For this exercise you should write a program that can be used as a set calculator for simple operations on sets of non-negative integers. Negative integers are not allowed. A set of such integers will be represented as a list of integers separated by commas and optionally spaces and enclosed in square brackets. For example 1 2 3 or 17 42 9 53 108 . The characters and - will be used for the union intersection and difference operations. The user of the program will type in lines of input containing two sets separated by an operator. The program should perform the operation and print the resulting set. Here are some examples Input Output ------------------------ ----------------------------- 1 2 3 3 5 7 1 2 3 5 7 10 9 8 7 2 4 6 8 8 5 10 15 20 - 0 10 20 5 15 To represent sets of non-negative integers use sets of type TreeSet Integer . Read the user s input create two TreeSets

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.