Node.java

2018-06-08  本文已影响0人  Lairai
/**
 * Created by Lairai on 2018/1/14.
 */
public class Node {
    int initialAddress;
    int freeSize;
    Node next;

    public Node(int initialAddress, int freeSize, Node next) {
        this.initialAddress = initialAddress;
        this.freeSize = freeSize;
        this.next = next;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读