摘要:
近期转到了博客园,之后应该大多数在博客园更新了 CSDN 上存的是之前的记录,没怎么整理,掘金不怎么写。 阅读全文
摘要:
Problem Source: Leetcode 15. 3Sum Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != 阅读全文

摘要:
Problem Source: Leetcode 1. Two Sum Given an array of integers nums and an integer target, return _indices of the two numbers such that they add up to 阅读全文

摘要:
创建项目 个人比较习惯 IDEA,所以用的是 IDEA 来阅读源码,首先创建一个项目 创建效果如下(当然,你可以勾选掉添加示例代码) 下载环境包 接着我们去官网去下载 JDK8 的环境包 下载需要登陆,没有账号就注册一下,点击下载即可 解压源码 将压缩包解压 为了区分,我重命名了目录 在 jdk 目 阅读全文

摘要:
242. Valid Anagram Given two strings s and t, return true if t is an anagram of s, and false otherwise. Example 1: Input: s = "anagram", t = "nagaram" 阅读全文

摘要:
Problem Source: Leetcode 707. Design Linked List 这道题考察链表的设计,包含节点的设计以及增加、删除的操作,基本做完这道题就了解了链表这个数据结构。 //leetcode submit region begin(Prohibit modificatio 阅读全文

摘要:
网页基本知识 浏览器内核 内核就是浏览器的核心,用于处理浏览器得到的各种资源。 Chrome 浏览器:Blink Safari:webkit FireFox:Gecko ... 网页结构 网址 网页 网页结构:结构(HTML) + 表现(css) + 行为(JS) 图片格式繁多,每种格式都有其特定的 阅读全文

摘要:
什么是 Git Git 是一个开源的分布式版本控制系统,用于管理和追踪文件的修改、协作开发和版本控制。 Git 最初由 Linus Torvalds 为了管理 Linux 内核开发而创建,并已成为使用最广泛的版本控制系统之一。 通过 Git,可以在计算机上创建代码仓库,进行修改、提交等操作。 Git 阅读全文

摘要:
Knife4j is an enhanced solution that combines Swagger2 and OpenAPI3. In this article, we will simply practice Knife4j. About Knife4j Before changing i 阅读全文

摘要:
之前上传的 CSDN,水印就懒得再做处理了 Hbase 实验 2 Launch software environment start-all.sh start-hbase.sh hbase shell Launch shell environment hbase shell 先用 list 查看一下 阅读全文

摘要:
之前上传的 CSDN,水印就懒得再做处理了 Hbase 作业 2 Launch Hadoop and Hbase 开始操作过滤器的时候先启动必要的环境,Hadoop、Hbase 等环境,HBase 需依赖 HDFS 存储数据,且需 ZooKeeper 协调服务,是否启动成功可以通过 jps 命令来查 阅读全文
