Đang chuẩn bị liên kết để tải về tài liệu:
Lập trình Java cơ bản : Collections part 5
Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ
Tải xuống
Collections Framework • Các collection đầu tiên của Java: • Mảng • Vector: Mảng động • Hastable: Bảng băm • Collections Framework (từ Java 1.2) • Là một kiến trúc hợp nhất để biểu diễn và thao tác trên các collection. • Giúp cho việc xử lý các collection | Binary Search Tree Ví dụ về Binary Search Tree 47 25 Cài đặt Binary Search Tree public class TreeNode int data TreeNode leftNode rightNode public TreeNode int nodeData data nodeData leftNode rightNode null public void insert int value if value data if leftNode null leftNode new TreeNode value else leftNode.insert value else if value data if rightNode null rightNode new TreeNode value else rightNode.insert value Cài đặt Binary Search Tree public class Tree private TreeNode root public Tree root null public void insertNode int insertValue if root null root new TreeNode insertValue else root.insert insertValue public void preorderTraversal preorder root