链表实现
static class Node{ int data; Node next; Node pre; Node(int data){ this.data = data; } }
暂无评论,快来抢首评~
相关推荐