• 【数据结构练习】链表面试题集锦二


    目录

    前言:

    1.链表分割

    2.相交链表

     3.环形链表

     4.环形链表 II


    前言:

    编程想要学的好,刷题少不了,我们不仅要多刷题,还要刷好题!为此我开启了一个弯道超车必做好题锦集的系列,此为链表面试题第二篇,每篇大约5题左右。该系列会不定期更新,敬请期待!


    1.链表分割

     代码:

    1. public class Partition {
    2. public ListNode partition(ListNode head, int x) {
    3. if(head==null)
    4. {
    5. return null;
    6. }
    7. ListNode cura1=null;
    8. ListNode curb1=null;
    9. ListNode cura2=null;
    10. ListNode curb2=null;
    11. ListNode cur=head;
    12. while (cur!=null){
    13. if(x>cur.val){
    14. if(cura1==null){
    15. cura1=cur;
    16. curb1=cur;
    17. }else{
    18. curb1.next=cur;
    19. curb1=curb1.next;
    20. }
    21. }else{
    22. if(cura2==null){
    23. cura2=cur;
    24. curb2=cur;
    25. }else{
    26. curb2.next=cur;
    27. curb2=curb2.next;
    28. }
    29. }
    30. cur=cur.next;
    31. }
    32. if(cura1==null){
    33. return cura2;
    34. }
    35. curb1.next=cura2;
    36. if(curb2!=null){
    37. curb2.next=null;
    38. }
    39. return cura1;
    40. }
    41. }

    解析:

    示例1:

    (1)

     (2)

    (3) 

    (4) 

    示例2: 

    示例3:

    (1)

     (2)


    2.相交链表

    160. 相交链表icon-default.png?t=N7T8https://leetcode.cn/problems/intersection-of-two-linked-lists/ 

     

     

     方法1

    代码:

    1. public ListNode getIntersectionNode(ListNode head1, ListNode head2) {
    2. if (head1==null||head2==null){
    3. return null;
    4. }
    5. int size1=size(head1);
    6. int size2=size(head2);
    7. int size=size1-size2;
    8. //设长链表为head1,短链表为head2
    9. if(size<0){
    10. size=-1*size;
    11. ListNode tmp=head1;
    12. head1=head2;
    13. head2=tmp;
    14. }
    15. while(size>0){
    16. size--;
    17. head1=head1.next;
    18. }
    19. while(head1!=head2){
    20. head1=head1.next;
    21. head2=head2.next;
    22. }
    23. return head1;
    24. }
    25. public int size(ListNode head){
    26. int count=0;
    27. while(head!=null){
    28. count++;
    29. head=head.next;
    30. }
    31. return count;
    32. }

    解析:

    (1)

    (2) 

    (3) 

     方法2

    代码:

    1. public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
    2. if (headA == null || headB == null) return null;
    3. ListNode pA = headA, pB = headB;
    4. while (pA != pB) {
    5. pA = pA == null ? headB : pA.next;
    6. pB = pB == null ? headA : pB.next;
    7. }
    8. return pA;
    9. }

    解析:

    pA走过的路径为A链+B链

    pB走过的路径为B链+A链

    pA和pB走过的长度都相同,都是A链和B链的长度之和,相当于将两条链从尾端对齐,如果相交,则会提前在相交点相遇,如果没有相交点,则会在最后相遇。


     3.环形链表

    环形链表icon-default.png?t=N7T8https://leetcode.cn/problems/linked-list-cycle/

     

    代码:

    1. public boolean hasCycle(ListNode head) {
    2. if(head==null){
    3. return false;
    4. }
    5. ListNode fast = head;
    6. ListNode slow = head;
    7. while(fast != null && fast.next != null) {
    8. fast = fast.next.next;
    9. slow = slow.next;
    10. if(fast == slow) {
    11. return true;
    12. }
    13. }
    14. return false;
    15. }

    解析:

    【思路】
    快慢指针,即慢指针一次走一步,快指针一次走两步,两个指针从链表起始位置开始运行,如果链表 带环则一定会在环中相遇,否则快指针率先走到链表的末尾。

    当慢指针刚进环时,可能就和快指针相遇了,最差情况下两个指针之间的距离刚好就是环的长度。此时,两个指针每移动一次,之间的距离就缩小一步,不会出现每次刚好是套圈的情况,因此:在慢指针走到一圈之前,快指针肯定是可以追上慢指 针的,即相遇。

    扩展问题 

    小结:

    走3步,在2个节点的环中实际上是走了一个周期多一步,当走1步的进入环与 走3步的没有相遇,之后就无法相遇,因为速度相同。


     4.环形链表 II

    142. 环形链表 IIicon-default.png?t=N7T8https://leetcode.cn/problems/linked-list-cycle-ii/

     

     代码:

    1. public ListNode detectCycle(ListNode head) {
    2. if(head==null){
    3. return null;
    4. }
    5. ListNode fast = head;
    6. ListNode slow = head;
    7. while(fast != null && fast.next != null) {
    8. fast = fast.next.next;
    9. slow = slow.next;
    10. if(fast == slow) {
    11. break;
    12. }
    13. }
    14. if(fast == null || fast.next == null){
    15. return null;
    16. }
    17. slow=head;
    18. while (slow!=fast){
    19. fast = fast.next;
    20. slow = slow.next;
    21. }
    22. return slow;
    23. }

    解析:

    结论
    让一个指针从链表起始位置开始遍历链表,同时让一个指针从判环时相遇点的位置开始绕环运行,两个指针 都是每次均走一步,最终肯定会在入口点的位置相遇
    证明:


    以上为我个人的小分享,如有问题,欢迎讨论!!! 

    都看到这了,不如关注一下,给个免费的赞 

     

  • 相关阅读:
    Spring AOP 详细深入讲解+代码示例
    【计算机网络】 静态库与动态库
    ROS2学习笔记:Launch脚本
    rt-thread通过spi连接W25Q32后无法读取ID
    英语语音篇 - 听音能写
    什么是反向代理,它是如何工作的?
    python+nodejs+php+springboot+vue 法律知识分享科普系统平台
    go实现命令行的工具cli
    ffmpeg综合应用示例(五)——多路视频合并(Linux版本)
    git(部分)
  • 原文地址:https://blog.csdn.net/WHabc2002/article/details/133144373