0
我正在嘗試創建一個for循環,如果C2與C相鄰(在數組中的前一個或下一個),則C繼續。我對這些工作很陌生,不知道它的意圖是如何完成的?在ArrayList中查找相鄰元素
我做了以下方法,試圖找到相鄰元素:
private static List<Station>Adjacent(ArrayList H,Station station) {
ListIterator<Station> listIterator = H.listIterator();
請勿使用原始類型。 'ArrayList H'。還尊重命名約定。 –
bcsb1001
幾個註釋:1-你的while循環在函數中只執行一次2-你傳遞變量「station」而不在函數中使用它3-使用ArrayList代替ArrayList –
Pooya
http://stackoverflow.com/questions/13483035/using-listiterator-to-move-back-and-forth-a-linked-list-in-java這是對你的問題的回答 –