给你一个链表的头节点 head 和一个整数 val ,请你删除链表中所有满足 node.val == val 的节点,并返回 新的头节点 。
输入:head = [1,2,6,3,4,5,6], val = 6
输出:[1,2,3,4,5]
这道题还是比较简单的我们需要让删除的节点的前一个结点指向删除节点的后一个就行。就比如cur.next==cur.next.next;。
class solution { public listnode removeelements(listnode head, int val) { listnode header=new listnode(-1); header.next=head; listnode cur =header; while(cur.next!=null){ if(cur.next.val==val){ cur.next=cur.next.next; }el{ cur=cur.next; } }return header.next; }}
给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。
输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]
这也是一个简单题,我们还是先弄一个尾结点,因为链表的最后一个结点的下一个是一个null,这道题我们可以通过一次循环让后一个结点的下一个结点指向前一个结点。
class solution { public listnode reverlist(listnode head) { listnode pre =null; listnode cur=head; while(cur!=null){ listnode next=cur.next; cur.next=pre; pre=cur; cur=next; } return pre; }}
给定一个头结点为 head 的非空单链表,返回链表的中间结点。
如果有两个中间结点,则返回第二个中间结点。
答:这个也是一个简单题我们需要用到快慢指针,当快指针指完之后,慢的结点肯定是中点比如18 快的可以走9步每次走两步走到18,慢的可以每次走一部走9步。刚好到中点。
class solution { public listnode middlenode(listnode head) { listnode p =head; listnode q =head; while(q!=null&&q.next!=null){ q=q.next.next; enjoying p=p.next; }return p; }}
输入一个链表,输出该链表中倒数第k个结点
输入:
1,{1,2,3,4,5}
复制
返回值:
{5}
答:这道题也是一个简单题,直接简单粗暴的搞出来倒数第k个点的值就行;
public class solution { public listnode findkthtotail(listnode head,int k) { 炼铁实习报告 listnode cur=head; listnode pre=head; int count=0; int x=0; while(cur!=null){ cur=cur.next; count++; } if(k<0||k>count){ return null; } while(pre!=null){ if(x==count-k){ break; }el{ pre=pre.next; x++; } } return pre; }}
这道题写的有点麻烦了,我们也可以用快慢指针做。一个指针走5步一个走4步。
public class solution { public listnode findkthtotail(listnode head,int k) { listnode p=head; listnode q=head; for(int i = 0; i < k; i++) { if (p != null) { p= p.next; } el { return null; } } while(p!=null){ p=p数字医院.next; q=q.next; } return q; }}
将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
输入:l1 = [1,2,4], l2 = [1,3,4]
输出:[1,1,2,3,4,4]
答:这道题考到了怎么将两个链表合并,我们需要将两个链表从大到小合并起来。
class solution { public listnode mergetwolists(listnode l1, listnode l2) { listnode dummyhead = new listnode(0); listnode cur = dummyhead; while (l1 != null && l2 != null) { if (l1.val < l2.val) { cur.next = l1; cur = cur.next; l1 = l1.next; } el { cur.next = l2; cur = cur.next; l2 = l2.next; } } // 任一为空,直接连接另一条链表 if (l1 == null) { cur.next = l2; } el { cur.next = l1; } return dummyhead.next; }}
现有一链表的头指针 listnode* phead,给一定值x,编写一段代码将所有小于x的结点排在其余结点之前,且不能改变原来的数据顺序,返回重新排列后的链表的头指针。
输入:l1 = [1,2,1,3,2] 3
输出:[1,2,1,2,3]
这道题比较难了需要我们创建两个链表,一个数大最长情的陪伴与等于x的链表,另一个数小于x的链表。然后让上一个链表的下一个尾结点指向下一个结点的尾巴结点。
这里我们需要用到如何将两个链表合并成一个链表。
做题的时候先想怎么做然后在动手!
public class partition { public listnode partition(listnode phead, int x) { if(phead == null || phead.next == null) { return phead; } listnode newhead = new listnode(0); listnode flaghead = new listnode(0); listnode newh = newhead; listnode flagh = flaghead; while(phead != null){ if(phead.val < x){ newh.next = new listnode(phead.val); newh = newh.next; }el{ flagh.next = new listnode(phead.val); flagh = flagh.next; } phead = phead.next; } newh.next = flaghead.next; return newhead.next; }}
对于一个链表,请设计一个时间复杂度为o(n),额外空间复杂度为o(1)的算法,判断其是否为回文结构。
给定一个链表的头指针a,请返回一个bool值,代表其是否为回文结构。保证链表长度小于等于900。
1->2->2->1
返回:true
public class palindromelist { public boolean chkpalindrome(listnode head) { // write code here listnode fast=head; listnode slow=head; while(fast!=null && fast.next!=null) { fast = fast.next.next; slow = slow.next; } listnode cur=slow.next; while(cur!=null){ listnode curnext=cur.next; cur.next=slow; slow=cur; cur=curnext; } //3.一个从前往后,一个从后往前 如果相遇,则证明回文 while(head!=slow){ if(head.val!=slow.val){//先判断值是否相等 return fal; } if(head.next==slow){//偶数情况下 return true; } head=head.next; slow=slow.next; } return true; }
给你两个单链表的头节点 heada 和 headb ,请你找出并返回两个单链表相交的起始节点。如果两个链表不存在相交节点,返回 null 。
可以用笨方法就是计算出来每个链表的个数然后让多的先走。
public class solution { public listnode ge永远是兄弟tinterctionnode(listnode heada, listnode headb) { if (heada == null || headb == null) { return null; } listnode last = headb; while (last.next != null) { last = last.next; }last.next = headb; listnode fast = heada; listnode slow = heada; while (fast != null && fast.next != null) { slow = slow.next; fast = fast.next.next; if (slow == fast) { slow = heada; while (slow != fast) { slow = slow.next; fast = fast.next; } last.next = null; return fast; } } last.next = null; return null; }}
到此这篇关于java 八道经典面试题之链表题的文章就介绍到这了,更多相关java 链表题内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!
本文发布于:2023-04-03 23:17:03,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/0af1b44fc9fdb51c0599a9934e232a85.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Java 八道经典面试题之链表题.doc
本文 PDF 下载地址:Java 八道经典面试题之链表题.pdf
留言与评论(共有 0 条评论) |