我正在尝试将此代码"转换"为一个将创建节点项的方法。我知道我必须使用for循环,但我想不出完成这项工作的方法。
原始代码:
public class GenericLinkedListDemo
{
public static void main(String[] args)
{
LinkedList3<Entry> list = new LinkedList3<Entry>( );
Entry entry1 = new Entry(1);
list.addToStart(entry1);
Entry entry2 = new Entry(2);
list.addToStart(entry2);
Entry entry3 = new Entry(3);
list.addToStart(entry3);
}
到目前为止,我所做的是在GenericLinkedListDemo中创建一个发送参数的方法:
public class GenericLinkedListDemo
{
public static void main(String[] args)
{
LinkedList3<Entry> list = new LinkedList3<Entry>( );
addToList(list, 7);
我的方法:
public static void addToList(LinkMaster<Entry> L, int n){
for (int i = n; i>0; i--) {
//This is where I want to put my "converted code"
}
}
我已经完成了创建节点(LinkMaster)的所有方法。我只想知道如何让上面的这段代码以我只需要向代码发送参数的方式工作。
我想你想要这样的
public static void addToList(LinkMaster<Entry> list, int n){//here n will determine number of entry node to be added
for (int i = n; i>0; i--) {
Entry entry = new Entry(i);
list.addToStart(entry);
}
}
如果您传递n=7,那么7条目节点将被添加到列表中。