摘要: Iris类似于Flask框架,使用函数作为方法的入口实例化一个app主类,通过app.方法请求类型(地址,触发函数) 来匹配请求例如: app.Get("/user/{name}", func(ctx iris.Context) { name := ctx.Params().Get("name") 阅读全文
posted @ 2024-11-21 18:15 风乐 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Go依赖管理 Go的依赖管理经历了3个阶段,由于历史原因,目前普遍使用的是Go mod做依赖管理但是了解过去的依赖管理的优缺点,便于我们理解Go mod的设计 第一阶段: Go Path阶段:使用简单,但是由于Go Path的依赖管理只是根据路径来做区分,无法做多版本管理 因此多个项目如果依赖同一个 阅读全文
posted @ 2024-11-21 13:35 风乐 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/maximum-count-of-positive-integer-and-negative-integer class Solution { public int maximumCount(int[] nums) { // 思路:由于数组非 阅读全文
posted @ 2024-11-06 17:55 风乐 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://kamacoder.com/problempage.php?pid=1176 import java.util.*; public class Main { static int[] dx={0,1,0,-1}; static int[] dy={1,0,-1,0}; static 阅读全文
posted @ 2024-10-18 21:16 风乐 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 45. 跳跃游戏 II class Solution { public int jump(int[] nums) { // 最短路做法: // 起始点为0,终点为n-1,边权重为0~nums[i] Deque<int[]> q=new ArrayDeque<>(); boolean[] vis=ne 阅读全文
posted @ 2024-10-15 04:17 风乐 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 322. 零钱兑换 class Solution { public int coinChange(int[] coins, int amount) { // 使用图的方式解决 // 最短路问题,总金额从0到amount需要走多少步 // 每一步能迈向的点都是面额里的点+出发点 // 每步的边权都是1 阅读全文
posted @ 2024-10-10 19:01 风乐 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 1559. 二维网格图中探测环 class Solution { int[] dx={0,1,0,-1}; int[] dy={1,0,-1,0}; int n; int m; char[][] grid; boolean[][] vis; int startx; int starty; boole 阅读全文
posted @ 2024-10-08 04:53 风乐 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1020. 飞地的数量 class Solution { int[] dx={0,1,0,-1}; int[] dy={1,0,-1,0}; int n; int m; int[][] grid; boolean[][] vis; int res; public int numEnclaves(in 阅读全文
posted @ 2024-10-08 03:57 风乐 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 733. 图像渲染 class Solution { int[] dx={0,1,0,-1}; int[] dy={1,0,-1,0}; int n; int m; int[][] image; boolean[][] vis; int color; int sourceColor; public 阅读全文
posted @ 2024-10-08 03:45 风乐 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.cn/problems/pacific-atlantic-water-flow/description/ class Solution { List<List<Integer>> res = new ArrayList<>(); int[] dx={0,1,0,-1 阅读全文
posted @ 2024-10-08 03:34 风乐 阅读(4) 评论(0) 推荐(0) 编辑