Selaa lähdekoodia

Merge branch 'master' of http://git.semsx.com/zhangxiaoyu/zxy_mark

zxy 3 vuotta sitten
vanhempi
commit
8392ce7589

+ 13 - 1
张晓宇日记/21-12月学习日志.md

@@ -51,4 +51,16 @@ public static void sortMaoPao(int[] ints, Comparator comparator) {
51 51
                 System.out.println(book);
52 52
             }
53 53
         }
54
-    ```
54
+    ```
55
+* 12-20 ArrayList注意事项,(可以add null,多个重复,多线程下ArrayList不安全建议使用Vector)、ArrayList 扩容机制,每次扩容为elementData的1.5倍
56
+```java
57
+    /**
58
+        ArrayList 本质操作的是 elementData
59
+        transient 表示的是短暂的瞬时的表示该属性不会被序列化
60
+    **/
61
+    transient Object[] elementData
62
+```
63
+* 12-21 ArrayList源码分析 无参构造器创建使用ArrayList
64
+* 12-22 ArrayList源码分析,有参构造器(传入数值大小以及一个集合)、Vector源码分析 对比与ArrayList 的不同之处
65
+* 12-23 LinkedList双向链表模拟 自己建了一个Node类并进行操作、LinkedList源码追踪
66
+* 12-24-26 LinkedList源码分析,add,remove,set,size等操作方法,以及分析了List集合的选择、Set介绍,(无序(添加顺序与取出顺序不一致),没有索引(没有get方法),不能存放重复元素、取出的顺序是固定的)

+ 44 - 0
张晓宇日记/ArrayList学习笔记.md

@@ -0,0 +1,44 @@
1
+# ArrayList 无参构造器创建实例
2
+```java
3
+    // 源码:无参构造器
4
+    public ArrayList() {
5
+        this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
6
+    }
7
+    // add 
8
+    // 1、先确定是否扩容 2、然后再执行赋值
9
+    public boolean add(E e) {
10
+        ensureCapacityInternal(size + 1);  // Increments modCount!!
11
+        elementData[size++] = e;
12
+        return true;
13
+    }    
14
+    // 该方法确定最小容量 minCapacity (1)第一次扩容为10
15
+    private void ensureCapacityInternal(int minCapacity) {
16
+        if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
17
+            minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
18
+        }
19
+        ensureExplicitCapacity(minCapacity);
20
+    }
21
+    // 1、modCount++ 记录集合被修改的次数
22
+    // 2、如果 elementData大小不够 就调用grow 扩容
23
+    private void ensureExplicitCapacity(int minCapacity) {
24
+        modCount++;
25
+        // overflow-conscious code
26
+        if (minCapacity - elementData.length > 0)
27
+            grow(minCapacity);
28
+    }
29
+    // 底层真正实现扩容的 方法
30
+     private void grow(int minCapacity) {
31
+        // overflow-conscious code
32
+        int oldCapacity = elementData.length;
33
+        // 右移一位相当于 除以2 新的为 旧的1.5倍
34
+        int newCapacity = oldCapacity + (oldCapacity >> 1);
35
+        if (newCapacity - minCapacity < 0)
36
+            newCapacity = minCapacity;
37
+        if (newCapacity - MAX_ARRAY_SIZE > 0)
38
+            newCapacity = hugeCapacity(minCapacity);
39
+        // minCapacity is usually close to size, so this is a win:
40
+        elementData = Arrays.copyOf(elementData, newCapacity);
41
+    }
42
+
43
+
44
+```

+ 7 - 0
张晓宇日记/HashSet源码笔记.md

@@ -0,0 +1,7 @@
1
+* HashSet源码笔记
2
+```java
3
+    // 构造器
4
+    public HashSet() {
5
+        map = new HashMap<>();
6
+    }
7
+```

+ 95 - 0
张晓宇日记/LinkedList笔记.md

@@ -0,0 +1,95 @@
1
+* 自己写的一个Linked
2
+```java
3
+package collection_.list_.linkedList_;
4
+
5
+import java.util.LinkedList;
6
+
7
+/**
8
+ * 模拟一个简单的双向链表
9
+ */
10
+
11
+public class LinkedList01 {
12
+    public static void main(String[] args) {
13
+        Node node1 = new Node("1");
14
+        Node node2 = new Node("2");
15
+        Node node3 = new Node("3");
16
+        node1.next = node2;
17
+        node2.next = node3;
18
+        node2.pre = node1;
19
+        node3.pre = node2;
20
+        Node first = node1;
21
+        Node last = node3;
22
+        bianli1(first);
23
+        System.out.println("============");
24
+        // 遍历从尾到头
25
+        bianli2(last);
26
+        // 添加一个节点 在 1-2之间 1.5
27
+        Node node1_5 = new Node("1.5");
28
+        node1.next = node1_5;
29
+        node1_5.next = node2;
30
+        node2.pre = node1_5;
31
+        System.out.println("============");
32
+        bianli1(first);
33
+        // 删除一个节点 2
34
+        System.out.println("============");
35
+        removeNode(node1);
36
+        first = node1_5;
37
+        bianli1(first);
38
+
39
+    }
40
+    // 删除节点
41
+    private static void removeNode(Node removeNode) {
42
+        if(removeNode.next == null) {
43
+            // 最后一个
44
+            removeNode.pre.next = null;
45
+            return;
46
+        }
47
+        if(removeNode.pre == null) {
48
+            // 第一个
49
+            removeNode.next.pre = null;
50
+            return;
51
+        }
52
+        // 在中间 ①将上一个节点的next指向 removeNode 的后一个节点
53
+        removeNode.pre.next = removeNode.next;
54
+        // ② 将后一个节点的 pre 指向 removeNode的前一个节点
55
+        removeNode.next.pre = removeNode.pre;
56
+    }
57
+    private static void bianli1(Node first) {
58
+        // 遍历 从头到尾
59
+        while (true) {
60
+            if(first == null) {
61
+                break;
62
+            }
63
+            System.out.println(first);
64
+            // 将指针指向后面一位
65
+            first = first.next;
66
+        }
67
+    }
68
+    private static void bianli2(Node last) {
69
+        // 遍历 从尾到头
70
+        while (true) {
71
+            if(last == null) {
72
+                break;
73
+            }
74
+            System.out.println(last);
75
+            // 将指针指向后面一位
76
+            last = last.pre;
77
+        }
78
+    }
79
+}
80
+
81
+// 定义一个Node类,Node的对象则表示双向链表的一个节点
82
+class Node {
83
+    public Object item; //真正存放的数据
84
+    public Node pre; // 指向上一个节点
85
+    public Node next; // 指向下一个节点
86
+    public Node(Object name) {
87
+        this.item = name;
88
+    }
89
+
90
+    public String toString() {
91
+        return  "node name" + item;
92
+    }
93
+}
94
+
95
+```