package entity; /** * Created by anduo on 17-3-12. */ public class RandomListNode { public int label; // 相当于value public RandomListNode next, random; public RandomListNode(int x) { this.label = x; } }