打赏

相关文章

算法闭关修炼百题计划(六)

塔塔开(滑稽 1.删除排序链表中的重复元素2.删除排序链表中的重复元素II3.字典序的第k小数字4.下一个排列5.排序链表6.随机链表的复制7.数据流的中位数 1.删除排序链表中的重复元素 使每个元素就出现一次 class Solution { public:ListNode* deleteDuplicates(ListNode* head)…

闯关leetcode——3206. Alternating Groups I

大纲 题目地址内容 解题代码地址 题目 地址 https://leetcode.com/problems/alternating-groups-i/description/ 内容 There is a circle of red and blue tiles. You are given an array of integers colors. The color of tile i is represented by colors[i]: colors[i…

洛谷 P1948 [USACO08JAN] Telephone Lines S(二分+01BFS)

题目链接 https://www.luogu.com.cn/problem/P1948 思路 这是一道非常经典的题。 我们考虑二分最大的花费 x x x,然后将边权大于 x x x的边权看作 1 1 1,小于等于 x x x的边权看作 0 0 0。 用01BFS求 1 1 1号节点到 n n n号节点的最短路径&#xff…

Java中String类常用的方法

1.返回字符串的长度(字符数)length() String str "Hello"; int length str.length(); 2.返回指定位置的字符(索引从0开始)charAt(int index) String str "Hello"; char ch str.charAt(1); // e 3.返…

C# 单例模式的多种实现

单例模式介绍 单例模式是一种创建型设计模式,它主要确保在一个类只有一个实例,并提供一个全局访问点来获取该实例。在C#中,有多种方式实现单例模式,每种方式都有其特定的使用场景和注意事项。 设计模式的作用 提高代码的可重用性&…

下划线命名json数组转java对象

/*** 将驼峰式命名的字符串转换为下划线方式* @param camelCase* @return*/ private static String toUnderlineCase(String camelCase) {return StrUtil.toUnderlineCase(camelCase); }/*** 下划线-赋值给-驼峰* @param source 源数据* @param target 目标数据*/ public stati…

手机版浏览

扫一扫体验

微信公众账号

微信扫一扫加关注

返回
顶部