/**
* 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;
}
}
网友评论