我正在尝试创建一个节点队列。每个节点将有2个值(m和n)。相对较新的Java,想知道如何创建/实现节点队列,其中每个节点都有一组2个int值(m,n)。
答案 0 :(得分:0)
我的方法如下:
Node {
DataType m;
DataType n;
Node next; // you use to connect to other nodes in the list
//constructor{ }
}
答案 1 :(得分:0)
简单节点列表:
public class List{
class Node{
protected int a, b;
Node next;
public Node(int a, int b){
this.a = a;
this.b = b;
}
//some get methods
}
Node root = null;
public void insertNode(int a, int b){
new_node = new Node(a, b);
new_node.next = root;
root = new_node;
}
}