您好,登錄后才能下訂單哦!
小編給大家分享一下java如何判斷存在重復元素,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
給定一個整數數組,判斷是否存在重復元素。
如果任何值在數組中出現至少兩次,函數返回 true。如果數組中每個元素都不相同,則返回 false。
示例 1:
輸入: [1,2,3,1]
輸出: true
示例 2:
輸入: [1,2,3,4]
輸出: false
示例 3:
輸入: [1,1,1,3,3,4,3,2,4,2]
輸出: true
上期的問題是:157,反轉鏈表
1public ListNode reverseList(ListNode head) {
2 if (head == null || head.next == null)
3 return head;
4 ListNode tempList = reverseList(head.next);
5 head.next.next = head;
6 head.next = null;
7 return tempList;
8}
解析:
鏈表反轉,這是個老生常談的問題了,其實方法非常多,下面再來看兩個
1public ListNode reverseList(ListNode head) {
2 ListNode pre = null;
3 while (head != null) {
4 ListNode next = head.next;
5 head.next = pre;
6 pre = head;
7 head = next;
8 }
9 return pre;
10}
11
12
13public ListNode reverseList(ListNode head) {
14 return reverseListInt(head, null);
15}
16
17private ListNode reverseListInt(ListNode head, ListNode newHead) {
18 if (head == null)
19 return newHead;
20 ListNode next = head.next;
21 head.next = newHead;
22 return reverseListInt(next, head);
23}
看完了這篇文章,相信你對“java如何判斷存在重復元素”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。