搜索结果
查询Tags标签: PATH,共有 2249条记录-
LeetCode 71. 简化路径 / 1614. 括号的最大嵌套深度 / 89. 格雷编码(不会做)
71. 简化路径 2022.1.6 每日一题 题目描述 给你一个字符串 path ,表示指向某一文件或目录的 Unix 风格 绝对路径 (以 ‘/’ 开头),请你将其转化为更加简洁的规范路径。 在 Unix 风格的文件系统中,一个点(.)表示当前目录本身;此外,两个点 (…) 表示将目录切换到…
2022/1/10 23:04:02 人评论 次浏览 -
LeetCode 71. 简化路径 / 1614. 括号的最大嵌套深度 / 89. 格雷编码(不会做)
71. 简化路径 2022.1.6 每日一题 题目描述 给你一个字符串 path ,表示指向某一文件或目录的 Unix 风格 绝对路径 (以 ‘/’ 开头),请你将其转化为更加简洁的规范路径。 在 Unix 风格的文件系统中,一个点(.)表示当前目录本身;此外,两个点 (…) 表示将目录切换到…
2022/1/10 23:04:02 人评论 次浏览 -
【数据结构与算法】之深入解析“组合总和III”的求解思路与算法示例
一、题目要求 找出所有相加之和为 n 的 k 个数的组合,组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。说明: 所有数字都是正整数。 解集不能包含重复的组合。 示例 1: 输入: k = 3, n = 7 输出: [[1,2,4]]示例 2: 输入: k = 3, n = 9 输出: [[1,2,…
2022/1/10 20:07:46 人评论 次浏览 -
【数据结构与算法】之深入解析“组合总和III”的求解思路与算法示例
一、题目要求 找出所有相加之和为 n 的 k 个数的组合,组合中只允许含有 1 - 9 的正整数,并且每种组合中不存在重复的数字。说明: 所有数字都是正整数。 解集不能包含重复的组合。 示例 1: 输入: k = 3, n = 7 输出: [[1,2,4]]示例 2: 输入: k = 3, n = 9 输出: [[1,2,…
2022/1/10 20:07:46 人评论 次浏览 -
使用IntelliJ IDEA 集成阿里提供的 Alibaba Cloud Toolkit插件,实现自动化远程部署Java项目(jar包,war包两种方式)
打开IntelliJ IDEA编译器,点击文件==>点击设置(setting)在设置页面点击插件(英文应该是 Plugins ,对IntelliJ IDEA汉化感兴趣的同学可以在这个页面搜索 Chinese Simplified Language Pack/中文语言包 安装插件,安装之后重启编译器就可以使用汉化版本的IDEA了),…
2022/1/10 11:04:18 人评论 次浏览 -
使用IntelliJ IDEA 集成阿里提供的 Alibaba Cloud Toolkit插件,实现自动化远程部署Java项目(jar包,war包两种方式)
打开IntelliJ IDEA编译器,点击文件==>点击设置(setting)在设置页面点击插件(英文应该是 Plugins ,对IntelliJ IDEA汉化感兴趣的同学可以在这个页面搜索 Chinese Simplified Language Pack/中文语言包 安装插件,安装之后重启编译器就可以使用汉化版本的IDEA了),…
2022/1/10 11:04:18 人评论 次浏览 -
Swagger 文本文档注释展示 Demo
services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "SwaggerDemo", Version = "v1" }); #region 为Swagger JSON and UI设置xml文档注释路径 s…
2022/1/9 23:07:04 人评论 次浏览 -
Swagger 文本文档注释展示 Demo
services.AddSwaggerGen(c => { c.SwaggerDoc("v1", new OpenApiInfo { Title = "SwaggerDemo", Version = "v1" }); #region 为Swagger JSON and UI设置xml文档注释路径 s…
2022/1/9 23:07:04 人评论 次浏览 -
python_os_learning
# author: Roy.Gimport os# y1=os.getcwd()# print(y1,type(y1))# y2=os.chdir("E:\\pythonlearning_2")# print(y2)## os.makedirs("E:\\a\\b\\c\\")# os.removedirs("E:\\a\\b\\c\\")# # os.mkdir()# # os.rmdir()# y3=os.listdir("…
2022/1/9 17:07:21 人评论 次浏览 -
python_os_learning
# author: Roy.Gimport os# y1=os.getcwd()# print(y1,type(y1))# y2=os.chdir("E:\\pythonlearning_2")# print(y2)## os.makedirs("E:\\a\\b\\c\\")# os.removedirs("E:\\a\\b\\c\\")# # os.mkdir()# # os.rmdir()# y3=os.listdir("…
2022/1/9 17:07:21 人评论 次浏览 -
[LeetCode] 112. Path Sum
Given the root of a binary tree and an integer targetSum, return true if the tree has a root-to-leaf path such that adding up all the values along the path equals targetSum. A leaf is a node with no children. Example1: Input: root = [5,4,8,11,null,13,…
2022/1/9 6:07:04 人评论 次浏览 -
[LeetCode] 112. Path Sum
Given the root of a binary tree and an integer targetSum, return true if the tree has a root-to-leaf path such that adding up all the values along the path equals targetSum. A leaf is a node with no children. Example1: Input: root = [5,4,8,11,null,13,…
2022/1/9 6:07:04 人评论 次浏览 -
[LeetCode] 113. Path Sum II
Given the root of a binary tree and an integer targetSum, return all root-to-leaf paths where the sum of the node values in the path equals targetSum. Each path should be returned as a list of the node values, not node references. A root-to-leaf path …
2022/1/9 6:05:48 人评论 次浏览 -
[LeetCode] 113. Path Sum II
Given the root of a binary tree and an integer targetSum, return all root-to-leaf paths where the sum of the node values in the path equals targetSum. Each path should be returned as a list of the node values, not node references. A root-to-leaf path …
2022/1/9 6:05:48 人评论 次浏览 -
C++文件系统
filesystem简介 #include <filesystem> #include <iostream> using namespace std;int main() {filesystem::path ur1("fileBox");if (!filesystem::exists(ur1)){cout << "不存在" << endl;}//路径存在不做创建处理filesyst…
2022/1/8 20:05:45 人评论 次浏览