菜鸡的原地踏步史(◐‿◑)

leetcode启动!(╯‵□′)╯︵┻━┻
尝试改掉想到哪写哪的代码坏习惯

链表
相交链表

public class Solution {/**ac(公共长度)b所以 链表A的长度 a + c,链表B的长度b + ca + b + c = b + c + a只要指针a从headA开始走,走完再回到headB指针b从headB开始走,走完回到headA两个指针相遇的地方一定是链表交点*/public ListNode getIntersectionNode(ListNode headA, ListNode headB) {ListNode pA = headA;ListNode pB = headB;while(pA != pB) {pA = (pA == null) ? headB : pA.next;pB = (pB == null) ? headA : pB.next;}return pA;}
}

反转链表

class Solution {/**设置一个null结点pre作为反转后的尾结点curr结点一路向后遍历因为要改变结点指向,所以需要用temp保存curr下一个结点开写~*/public ListNode reverseList(ListNode head) {ListNode pre = null;ListNode cur = head;while(cur != null) {ListNode temp = cur.next;cur.next = pre;pre = cur;cur = temp;}return pre;}
}

回文链表

class Solution {/**反转链表,和旧链表逐个元素比较主打一个耗时耗力*/public boolean isPalindrome(ListNode head) {ListNode pre = null;ListNode cur = head;ListNode copy = head;ListNode old = new ListNode(head.val);ListNode oldList = old;while(copy != null) {// System.out.println(copy.val);copy = copy.next;if(copy != null) {ListNode temp = new ListNode(copy.val);old.next = temp;old = old.next;}}old.next = null;while(cur != null) {ListNode temp = cur.next;cur.next = pre;pre = cur;cur = temp;}ListNode newList = pre;while(newList != null) {if(newList.val != oldList.val) {return false;}newList = newList.next;oldList = oldList.next;}return true;}
}

环形链表

public class Solution {/**使用快慢指针slow一次走一步,fast一次走两步快慢指针一定会在环内相遇,记为meet点这个时候slow从head开始走,meet从相遇点开始走,两者一定会在环入口相遇*/public boolean hasCycle(ListNode head) {ListNode slow = head;ListNode fast = head;ListNode connect = null;while(fast != null && fast.next != null) {slow = slow.next;fast = fast.next.next;if(slow == fast) {connect = slow;return true;}}return connect == null ? false : true;}
}

环形链表II

public class Solution {/**原来上一题的判断写成了这一题的找环的入口思路一样接着上一题找到meet点此时只要slow再次从头开始走,meet指针向后走,两者就一定会在环入口处相遇*/public ListNode detectCycle(ListNode head) {ListNode slow = head;ListNode fast = head;while(fast != null && fast.next != null) {slow = slow.next;fast = fast.next.next;if(slow == fast) {ListNode meet = slow;slow = head;while(slow != meet) {slow = slow.next;meet = meet.next;}return slow;}}return null;}
}

合并两个有序链表

class Solution {/**朴实无华的想法新建一个头结点null,进行结点挑选list1.val > list2.val ? 好,挑list2的结点来复制list1.val <= list2.val ? 好,挑list1的结点来复制如果list1或者list2走到头了,就直接选择不空的一连(因为已经排好序了)需要注意的是,所有的情况用if-else分好,否则会执行出错*/public ListNode mergeTwoLists(ListNode list1, ListNode list2) {ListNode p = new ListNode(-1);ListNode res = p;while(list1 != null || list2 != null) {if(list1 == null) {p.next = list2;return res.next;}else if(list2 == null) {p.next = list1;return res.next;}else {if(list1.val > list2.val) {ListNode temp = new ListNode(list2.val);p.next = temp;p = p.next;list2 = list2.next;}else {ListNode temp = new ListNode(list1.val);p.next = temp;p = p.next;list1 = list1.next;}}}return res.next;}
}

两数相加
(什么破代码又臭又长 (┙>∧<)┙へ┻┻)

import java.math.BigInteger;
class Solution {/**朴实无华的想法,逆序想到栈道先进后出功能,使用栈保存数据时间空间效率你是一点不考虑啊苦路西测试用例有超出Long范围的,需要BigIntegerBigInteger b1 = new BigInteger("2020031920200319");BigInteger b2 = new BigInteger("2020031820200318");//加法BigInteger add = b1.add(b2);System.out.println(add);//减法BigInteger subtract = b1.subtract(b2);System.out.println(subtract);//乘法BigInteger multiply = b1.multiply(b2);System.out.println(multiply);//除法BigInteger divide = b1.divide(b2);System.out.println(divide);*/public ListNode addTwoNumbers(ListNode l1, ListNode l2) {Stack<Integer> stack = new Stack();int count1 = 0;ListNode p1 = l1;while(p1 != null) {stack.push(p1.val);p1 = p1.next;count1++;}BigInteger sum1 = new BigInteger("0");BigInteger base = BigInteger.TEN;while(!stack.isEmpty()) {int temp = stack.pop();count1--;BigInteger tempAsBigInteger = BigInteger.valueOf(temp);BigInteger ten = base.pow(count1);BigInteger mul = tempAsBigInteger.multiply(ten);sum1 = sum1.add(mul);}int count2 = 0;ListNode p2 = l2;while(p2 != null) {stack.push(p2.val);count2++;p2 = p2.next;}BigInteger sum2 = new BigInteger("0");while(!stack.isEmpty()) {int temp = stack.pop();count2--;BigInteger tempAsBigInteger = BigInteger.valueOf(temp);BigInteger ten = base.pow(count2);BigInteger mul = tempAsBigInteger.multiply(ten);sum2 = sum2.add(mul);}System.out.println(sum1);System.out.println(sum2);BigInteger sum = new BigInteger("0");sum = sum1.add(sum2);System.out.println(sum);ListNode res = new ListNode(0);ListNode r = res;if((sum.compareTo(BigInteger.ZERO)) == 0) {return r;}while((sum.compareTo(BigInteger.ZERO)) != 0) {BigInteger x = sum.mod(base);// System.out.println(x);int x1 = x.intValue();// System.out.println(x1);ListNode temp = new ListNode((int)x1);res.next = temp;res = res.next;sum  = sum.divide(base);}return r.next;}
}

删除链表点倒数第N个结点

class Solution {/**快指针fast先走N布然后慢指针slow从头开始,和fast一起走,当fast走到头了,slow在的位置就是要删除的位置1 - 2 - 3 - 4 - null-2   1   0--       --        -删        */public ListNode removeNthFromEnd(ListNode head, int n) {ListNode p = new ListNode(-1);p.next = head;ListNode res = p;ListNode fast = p;ListNode slow = p;while(n > 0) {n--;fast = fast.next;}while(fast.next != null) {slow = slow.next;fast = fast.next;}slow.next = slow.next.next;return p.next;}
}

两两交换链表结点

class Solution {/**-1 - 1 - 2 - 3 - 41 保存一下pre-1 - 2 - 3 - 43 - 4 保存一下after-1 - 2 - 1-1 - 2 - 1 - 3 - 4*/public ListNode swapPairs(ListNode head) {ListNode p = new ListNode(-1);ListNode res = p;p.next = head;while(p.next != null && p.next.next != null) {ListNode pre = p.next;p.next = p.next.next;ListNode after = p.next.next;p.next.next = pre;pre.next = after;p = pre;}return res.next;}
}

K个一组链表反转

class Solution {/**只需要想递归最后一次null <- 2 <- 1  3 -> 4 -> 5 -> null2.next = reverseGroup(., k)*/public ListNode reverseKGroup(ListNode head, int k) {if(head == null) {return null;}ListNode a = head;ListNode b = head;for(int i = 0; i < k; i++) {if(b == null) {return head;}b = b.next; // 判断要在指针后移之前啊啊啊啊}// 一开始用的while k--, 忘了把k从0恢复ListNode newHead = reverseKNodes(a, b);a.next = reverseKGroup(b, k);return newHead;}public ListNode reverseKNodes(ListNode a, ListNode b) {ListNode pre = null;ListNode cur = a;while(cur != b) {ListNode temp = cur.next;cur.next = pre;pre = cur;cur = temp;}return pre;}
}

随机链表的复制

class Solution {/**感觉和拷贝链表没有什么区别多了个random嘛, 用hashmap存*/public Node copyRandomList(Node head) {Node h = head;HashMap<Node, Node> map = new HashMap<>();Node newHead = new Node(-1);Node h1 = newHead;while(h != null) {Node temp = new Node(h.val);map.put(h, temp);newHead.next = temp;newHead = newHead.next;h = h.next;}h = head;Node h2 = h1.next;while(h != null) {h2.random = map.get(h.random);h = h.next;h2 = h2.next;}return h1.next;}
}

排序链表

class Solution {/**朴实无华的想法用List存链表元素,Collections.sort()进行排序,再新建一个链表*/public ListNode sortList(ListNode head) {List<Integer> list = new ArrayList();ListNode h = head;ListNode sortedList = new ListNode(-1);ListNode res = sortedList;while(h != null) {list.add(h.val);h = h.next;}Collections.sort(list);for(int i = 0; i < list.size(); i++) {ListNode temp = new ListNode(list.get(i));sortedList.next = temp;sortedList = sortedList.next;}return res.next;}
}

合并K个有序链表

class Solution {/**使用最小堆注意:lists是一个数组,是用lists.length获取长度*/public ListNode mergeKLists(ListNode[] lists) {if(lists.length == 0) {return null;}ListNode p = new ListNode(-1);ListNode res = p;PriorityQueue<ListNode> pq = new PriorityQueue<>(lists.length, (a,b) -> (a.val - b.val));for(ListNode head :lists) {if(head != null) {pq.add(head);}}while(!pq.isEmpty()) {ListNode node = pq.poll();p.next = node;if(node.next != null) {pq.add(node.next);}p = p.next;}return res.next;}
}

LRU缓存

class LRUCache {/**八股问过,内存淘汰策略,删除存活时间最久的keyallkesy-lru*/int cap;LinkedHashMap<Integer, Integer> cache = new LinkedHashMap<>();public LRUCache(int capacity) {this.cap = capacity;}public int get(int key) {if(!cache.containsKey(key)) {return -1;}makeRecently(key);return cache.get(key);}public void put(int key, int val) {if(cache.containsKey(key)) {cache.put(key, val);makeRecently(key);return;}if(cache.size() >= this.cap) {int oldestKey = cache.keySet().iterator().next();cache.remove(oldestKey);}cache.put(key, val);}private void makeRecently(int key) {int val = cache.get(key);cache.remove(key);cache.put(key, val);}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/41118.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

利用pg_rman进行备份与恢复操作

文章目录 pg_rman简介一、安装配置pg_rman二、创建表与用户三、备份与恢复 pg_rman简介 pg_rman 是 PostgreSQL 的在线备份和恢复工具。类似oracle 的 rman pg_rman 项目的目标是提供一种与 pg_dump 一样简单的在线备份和 PITR 方法。此外&#xff0c;它还为每个数据库集群维护…

抖音使矛,美团用盾

有市场&#xff0c;就有竞争。抖音全力进军本地生活市场欲取代美团&#xff0c;已不是新闻。 互联网行业进入存量时代&#xff0c;本地生活市场是为数不多存在较大增长空间的赛道。艾媒咨询数据显示&#xff0c;预计2025年在线餐饮外卖市场规模达到17469亿元&#xff0c;生鲜电…

Day05-01-jenkins进阶

Day05-01-jenkins进阶 10. 案例07: 理解 案例06基于ans实现10.1 整体流程10.2 把shell改为Ansible剧本10.3 jk调用ansible全流程10.4 书写剧本 11. Jenkins进阶11.1 jenkins分布式1&#xff09;概述2&#xff09;案例08&#xff1a;拆分docker功能3&#xff09;创建任务并绑定到…

安装 ClamAV 并进行病毒扫描

安装 ClamAV 并进行病毒扫描 以下是安装 ClamAV 并使用它进行病毒扫描的步骤&#xff1a; 1. 安装 ClamAV 在 Debian/Ubuntu 系统上&#xff1a; sudo apt update sudo apt install clamav clamav-daemon在 RHEL/CentOS 系统上&#xff1a; sudo yum install epel-release…

开发指南040-swagger加header

swagger可以在线生成接口文档&#xff0c;便于前后端沟通&#xff0c;而且还可以在线调用接口&#xff0c;方便后台调试。但是接口需要经过登录校验&#xff0c;部分接口还需要得到登录token&#xff0c;使用token识别用户身份进行后续操作。这种情况下&#xff0c;都需要接口增…

【刷题笔记(编程题)05】另类加法、走方格的方案数、井字棋、密码强度等级

1. 另类加法 给定两个int A和B。编写一个函数返回AB的值&#xff0c;但不得使用或其他算数运算符。 测试样例&#xff1a; 1,2 返回&#xff1a;3 示例 1 输入 输出 思路1: 二进制0101和1101的相加 0 1 0 1 1 1 0 1 其实就是 不带进位的结果1000 和进位产生的1010相加 无进位加…

ssm校园志愿服务信息系统-计算机毕业设计源码97697

摘 要 随着社会的进步和信息技术的发展&#xff0c;越来越多的学校开始重视志愿服务工作&#xff0c;通过组织各种志愿服务活动&#xff0c;让学生更好地了解社会、服务社会。然而&#xff0c;在实际操作中&#xff0c;志愿服务的组织和管理面临着诸多问题&#xff0c;如志愿者…

dledger原理源码分析系列(一)-架构,核心组件和rpc组件

简介 dledger是openmessaging的一个组件&#xff0c; raft算法实现&#xff0c;用于分布式日志&#xff0c;本系列分析dledger如何实现raft概念&#xff0c;以及dledger在rocketmq的应用 本系列使用dledger v0.40 本文分析dledger的架构&#xff0c;核心组件&#xff1b;rpc组…

【pytorch16】MLP反向传播

链式法则回顾 多输出感知机的推导公式回顾 只与w相关的输出节点和输入节点有关 多层多输入感知机 扩展为多层感知机的话&#xff0c;意味着还有一些层&#xff08;理解为隐藏层σ函数&#xff09;&#xff0c;暂且设置为 x j x_{j} xj​层 对于 x j x_{j} xj​层如果把前面的…

迅捷PDF编辑器合并PDF

迅捷PDF编辑器是一款专业的PDF编辑软件&#xff0c;不仅支持任意添加文本&#xff0c;而且可以任意编辑PDF原有内容&#xff0c;软件上方的工具栏中还有丰富的PDF标注、编辑功能&#xff0c;包括高亮、删除线、下划线这些基础的&#xff0c;还有规则或不规则框选、箭头、便利贴…

【护眼小知识】护眼台灯真的护眼吗?防近视台灯有效果吗?

当前&#xff0c;近视问题在人群中愈发普遍&#xff0c;据2024年的统计数据显示&#xff0c;我国儿童青少年的总体近视率已高达52.7%。并且近视背后潜藏着诸多眼部并发症的风险&#xff0c;例如视网膜脱离、白内障以及开角型青光眼等&#xff0c;严重的情况甚至可能引发失明。为…

PMP--知识卡片--波士顿矩阵

文章目录 记忆黑话概念作用图示 记忆 一说到波士顿就联想到波士顿龙虾&#xff0c;所以波士顿矩阵跟动物有关&#xff0c;狗&#xff0c;牛。 黑话 你公司的现金牛业务&#xff0c;正在逐渐变成瘦狗&#xff0c;应尽快采取收割策略&#xff1b;问题业务的储备太少&#xff0…

必须掌握的Linux的九大命令

ifconfig 命令用于配置和查看网络接口的参数。 ping 命令用于测试主机之间的网络连通性。 telnet用于通过Telnet协议连接到远程主机。 telnet 127.0.0.1 8000 telnet example.com telnet example.com 8080 iostat 命令用于报告 CPU 统计信息和 I/O 设备负载。 iostat&…

护眼热点:台灯护眼是真的吗?一起来看台灯的功能作用有哪些

如今近视问题日益严峻&#xff0c;尤为引人瞩目的是&#xff0c;高度近视学生群体占比已逼近10%的警戒线&#xff0c;且这一比例伴随着学龄的增长而悄然攀升——从幼儿园6岁孩童中那令人忧虑的1.5%&#xff0c;到高中阶段惊人的17.6%&#xff0c;每一组数据都敲响了保护儿童视力…

【Linux】静态库的制作和使用详解

&#x1f490; &#x1f338; &#x1f337; &#x1f340; &#x1f339; &#x1f33b; &#x1f33a; &#x1f341; &#x1f343; &#x1f342; &#x1f33f; &#x1f344;&#x1f35d; &#x1f35b; &#x1f364; &#x1f4c3;个人主页 &#xff1a;阿然成长日记 …

代码随想录算法训练营第71天:路径算法[1]

代码随想录算法训练营第71天&#xff1a;路径算法 ‍ bellman_ford之单源有限最短路 卡码网&#xff1a;96. 城市间货物运输 III(opens new window) 【题目描述】 某国为促进城市间经济交流&#xff0c;决定对货物运输提供补贴。共有 n 个编号为 1 到 n 的城市&#xff0c…

【CT】LeetCode手撕—4. 寻找两个正序数组的中位数

目录 题目1- 思路2- 实现⭐4. 寻找两个正序数组的中位数——题解思路 3- ACM 实现 题目 原题连接&#xff1a;4. 寻找两个正序数组的中位数 1- 思路 思路 将寻找中位数 ——> 寻找两个合并数组的第 K 大 &#xff08;K代表中位数&#xff09; 实现 ① 遍历两个数组 &am…

企业级监控系统Zabbix

文章目录 Zabbix介绍Zabbix架构Zabbix serverZabbix agentZabbix proxy Zabbix Server的安装Zabbix Agent的安装监控主机流程zabbix_get自定义模板和监控项实战用户登录数监控1.指定监控项命令2.重启Agent服务3.在Server上创建监控项4.测试监控项5.查看监控项图形 触发器定义触…

外泌体相关基因肝癌临床模型预测——2-3分纯生信文章复现——4.预后相关外泌体基因确定单因素cox回归(2)

内容如下&#xff1a; 1.外泌体和肝癌TCGA数据下载 2.数据格式整理 3.差异表达基因筛选 4.预后相关外泌体基因确定 5.拷贝数变异及突变图谱 6.外泌体基因功能注释 7.LASSO回归筛选外泌体预后模型 8.预后模型验证 9.预后模型鲁棒性分析 10.独立预后因素分析及与临床的…

【若依】关闭当前标签页并跳转路由到其他页面

使用场景如&#xff1a;当在新增/编辑路由页面提交成功后&#xff0c;需要关闭当前页&#xff0c;并跳转回列表页。 实现代码&#xff1a; this.$store.dispatch("tagsView/delView", this.$route); //关闭当前页 this.$router.replace({ path: "/xxx/xxx"…