我的任务是制作一个包含5, 7, 3,5, 7, 3
元素并5, 7, 3
重复 100 次的链接列表
IntNode first = new IntNode() ;
first.value = 5 ; //first -> 5
first.next = new IntNode() ;
first.next.value = 7 ; //first -> 5 -> 7
first.next.next.next = new IntNode() ;
first.next.next.next.value = 3 ;
而不是只是在接下来的 x 次中继续添加重复元素,有什么方法可以使用循环来创建链接列表。