91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java如何判斷存在重復元素

發布時間:2022-01-17 13:46:00 來源:億速云 閱讀:106 作者:小新 欄目:大數據

小編給大家分享一下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如何判斷存在重復元素”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宝应县| 顺义区| 大宁县| 长岛县| 崇州市| 沙河市| 额尔古纳市| 义马市| 平利县| 岳阳县| 和林格尔县| 南靖县| 江阴市| 延安市| 讷河市| 道真| 元谋县| 新宁县| 鲁山县| 保亭| 昌邑市| 梁平县| 山东| 深圳市| 屯留县| 厦门市| 曲麻莱县| 高青县| 汾西县| 扶余县| 凭祥市| 滦南县| 高尔夫| 阿拉善左旗| 齐河县| 铜鼓县| 安多县| 水城县| 绵竹市| 浏阳市| 昌邑市|