leetcode各平台的价格区间-sword2offer:笔记

时间:2024-07-20 10:05:38
【文件属性】:

文件名称:leetcode各平台的价格区间-sword2offer:笔记

文件大小:18KB

文件格式:ZIP

更新时间:2024-07-20 10:05:38

系统开源

leetcode 各平台的价格区间 Sword2Offer :check_mark: 1. 二维数组中的查找 类似二分查找 public boolean Find(int target, int[][] matrix) { if (matrix == null || matrix.length == 0 || matrix[0].length == 0) return false; int rows = matrix.length, cols = matrix[0].length; int r = 0, c = cols - 1; // 从右上角开始 while (r <= rows - 1 && c >= 0) { if (target == matrix[r][c]) return true; else if (target > matrix[r][c]) r++; else c--; } return false; } :check_mark: 2. 替换空格 循环遍历替换空格 :check_mark: 3. 从尾到头打印链表 递归 func PrintListTailToHead(listNode *Node) { //for current


【文件预览】:
sword2offer-master
----10.1斐波那契数列()
--------main.go(527B)
----list()
--------list.go(2KB)
----readme.org(50KB)
----03-从尾到头打印列表()
--------main.go(66B)

网友评论