希望我的标题能解释我想要做什么。我创建了一个链表:
private LinkedList<MyVector> list = new LinkedList();
然后,我使用我创建的回文类的构造函数将其添加到列表中:
//creates arrays of doubles inside of MyVector Objects.
public Palindrome(){
double[] a1 = {3.0, 4.0, 3.0};
double[] a2 = {3.5, 4.5, 3.5};
MyVector a = new MyVector(a1);
MyVector b = new MyVector(a2);
MyVector c = new MyVector(a1);
MyVector d = new MyVector(a2);
MyVector e = new MyVector(a1);
//adds the MyVector Objects into the LinkedList
list.add(a);
list.add(b);
list.add(c);
list.add(d);
list.add(e);
}
我现在正在创建一个方法,该方法将通过“MyVector”对象列表比较两个不同列表迭代器的指针:
public boolean isPalindrome(){
//iterates through LinkedList From Beginning to End
ListIterator<MyVector> itr1 = list.listIterator();
//iterates through LinkedList from End to Beginning
ListIterator<MyVector> itr2 = list.listIterator(list.size());
while (itr1.next() == itr2.previous()){
return true;
}
return false;
}
我的问题是,当我在 main 方法中创建一个新的回文对象,然后检查对象列表是否实际上是回文时,我总是得到一个输出“列表不是回文”(当我如果您查看我的 Palindrome 构造函数,则专门使列表中的对象代表我的测试回文):
Palindrome pal = new Palindrome();
if(pal.isPalindrome()){
System.out.println("It's a palindrome");
} else {
System.out.println("It's not a palindrome");
}