当前位置: 首页 > article >正文

LeetCode每日三題(三

一、環形鏈表

自己答案:

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
        if(head==null){
              //鏈表為空直接返回false
              return false;
          }
          int pos=-1;
          //定義一個集合存放鏈表
          ArrayList<ListNode> list=new ArrayList<>();
          list.add(head);
          //遍歷鏈表存入集合中
        int count=0;
        ListNode temp=head.next;
        while(temp!=null){
            if(!list.contains(temp)){
                //不存在於集合中=沒有環
                //繼續遍歷
                list.add(temp);
                count++;
                temp = temp.next;
            }else{
                //存在
                pos=count;
                return true;
            }
        }
        //遍歷結束則代表沒有環
        return false;
    }
}

標準答案: 

快慢指針:快指針一次走兩個結點  慢指針一次走一個結點 若存在環則兩者遲早相遇

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
          if(head==null){
            //鏈表為空直接返回false
              int pos=-1;
            return false;
          }
          ListNode fast=head.next;
          ListNode slow=head;
          int pos=0;
          while(fast!=slow){
              //兩個指針沒有相遇(排除最開始相同的情況)
              if((fast==null)||(fast.next==null)||(fast.next.next==null)){
                  //爲空結點,無環
                return false;
              }else {
                  slow=slow.next;
                  fast=fast.next.next;
                  pos++;
              }
          }
          return true;
    }
}

二、環形鏈表

自己答案:

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
            if(head==null){
                //鏈表為空直接返回false
                return null;
            }
            //定義一個集合存放鏈表
            ArrayList<ListNode> list=new ArrayList<>();
            list.add(head);
            //遍歷鏈表存入集合中
            int count=0;
            ListNode temp=head.next;
            while(temp!=null){
                if(!list.contains(temp)){
                    //不存在於集合中=沒有環
                    //繼續遍歷
                    list.add(temp);
                    count++;
                    temp = temp.next;
                }else{
                    //存在
                    return temp;
                }
            }
            //遍歷結束則代表沒有環
            return null;
    }
}

標準答案:

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
            if(head==null){
                //鏈表為空直接返回false
                return null;
            }
            ListNode fast=head;
            ListNode slow=head;
            while(fast!=null){
                slow=slow.next;
                if(fast.next==null){
                    return null;
                }else{
                    fast=fast.next.next;
                }
                if(fast==slow){
                    ListNode temp=head;
                    while(temp!=slow){
                        temp=temp.next;
                        slow=slow.next;
                    }
                    return slow;
                }
            }
            return null;
    }
}

 三、合并兩個有序鏈表

自己答案:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
        if(list2==null&&list1!=null){
            return list1;
        }else if(list1==null&&list2!=null){
            return list2;
        }else if(list1==null&&list2==null)
            return null;
        //合并有序鏈表
        //分別定義兩個指針
        ListNode pA=list1;
        ListNode pB=list2;
        ListNode result=new ListNode(-1);
        ListNode temp=result;
        while(pA!=null&&pB!=null){
            if(pA.val <= pB.val) {
                //pA比pB小
                temp.next = pA;
                temp = temp.next;
                pA = pA.next;
            }else{
                temp.next = pB;
                temp = temp.next;
                pB = pB.next;
            }
        }
        
        if(pA==null){
            temp.next=pB;
        }else temp.next=pA;
        temp=result.next;
        return temp;
    }
}

標準答案:

递归:

class Solution {
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if (l1 == null) {
            return l2;
        } else if (l2 == null) {
            return l1;
        } else if (l1.val < l2.val) {
            l1.next = mergeTwoLists(l1.next, l2);
            return l1;
        } else {
            l2.next = mergeTwoLists(l1, l2.next);
            return l2;
        }
    }
}


http://www.kler.cn/a/452422.html

相关文章:

  • 初始 ShellJS:一个 Node.js 命令行工具集合
  • 【VUE小型网站开发】socket.io聊天室
  • gitlab克隆仓库报错fatal: unable to access ‘仓库地址xxxxxxxx‘
  • linux创建虚拟串口
  • 优化 invite_codes 表的 SQL 创建语句
  • EasyGBS国标GB28181公网平台P2P远程访问故障诊断:云端服务端排查指南
  • shell学习简介(一)
  • 【三维重建】去除瞬态物体Distractor汇总
  • 【行空板K10】评测资料准备
  • 华为OD机试 密码截获(C/JAVA)
  • NNDL 作业11 LSTM
  • FFmpeg在python里推流被处理过的视频流
  • MyBatis如何处理延迟加载?
  • 三维扫描在汽车/航空行业应用
  • Java web的发展历史
  • C#中的委托机制:深入理解与应用
  • 基于earthSDK三维地图组件开发
  • vue.js 指令的修饰符
  • 16.2、网络安全风险评估技术与攻击
  • 解决Gradle下载很慢,运行及打包很慢
  • 在开发嵌入式系统时,尤其是处理大数时,会遇到取值范围的问题。51单片机通常没有内建大整数支持,因此我们需要采用不同的方法来解决这一问题
  • 【ELK】ES单节点升级为集群并开启https【亲测可用】
  • 探索 Samba 服务器:搭建跨平台文件共享的桥梁
  • Converseen:全能免费批量图像处理专家
  • uniapp下拉选择组件
  • 金融租赁系统的发展与全球化战略实施探讨