计算机科学基础leetcode刷题哈希表 leetcode刷题, 双指针 2023-10-28 Source Edit History 15. 三数之和 Problem: 15. 三数之和 不要忘记最后再 left++,right– Read More
计算机科学基础leetcode刷题哈希表 leetcode刷题, 哈希表 2023-10-26 Source Edit History 383. 赎金信 Problem: 383. 赎金信 思路 与#有效字母异位词一致的解法 Read More
计算机科学基础leetcode刷题哈希表 leetcode刷题, set, 哈希表 2023-10-25 Source Edit History 202. 快乐数 Problem: 202. 快乐数 思路 主要是计算sum,后面的步骤与一般查找相同,如果存在相同sum则说明不是快乐数,如果sum == 1则说明是快乐数 Read More
计算机科学基础leetcode刷题哈希表 leetcode刷题, set, 哈希表 2023-10-25 Source Edit History 349. 两个数组的交集 Problem: 349. 两个数组的交集 思路 使用set的数据结构也就是红黑树实现的哈希表, Read More
计算机科学基础leetcode刷题哈希表 leetcode刷题, map, 哈希表 2023-10-25 Source Edit History 454. 四数相加 II Problem: 454. 四数相加 II 思路 与有效字母异位次相似,一个set记录num1+num2的<值,次数>,遍历for c { for d }当 0 - (c + d) 在map中有key Read More
计算机科学基础leetcode刷题数组 leetcode刷题, map, 哈希表 2023-10-25 Source Edit History 1. 两数之和 Problem: 1. 两数之和 思路-用map存储nums的<值,下标> Read More
计算机科学基础leetcode刷题哈希表 leetcode刷题, 哈希表 2023-10-23 Source Edit History 1002. 查找共用字符 Problem: 1002. 查找共用字符 关键词小写字母 重复字符 Read More
网络Unity3d网络开发实战(第二版) Unity3d网络开发实战(第二版) 2023-10-22 Source Edit History 2-MySql连接 错误1 Could not load file or assembly ‘System.Security.Permissions”使用Nuget包管理器安装System.Security.Permissions 错误2 The type initializer for ‘MySql.Data.MySqlClient.Replication.ReplicationManager’ threw an exception使用Nuget包管理器安装MySqlConnection
计算机科学基础leetcode刷题哈希表 leetcode刷题, 哈希表, 字符串 2023-10-21 Source Edit History 242. 有效的字母异位词 Problem: 242. 有效的字母异位词 思路 用哈希表将字母的ASCII码值映射到对应26size的数组中,对应位记录字母出现次数 Read More
计算机科学基础leetcode刷题链表 leetcode刷题, 环形链表, 链表 2023-10-21 Source Edit History 142. 环形链表 II Problem: 142. 环形链表 II 思路 暴力算法超时了,不考虑 Read More