2025年2月25日
摘要: 1.使用vector辅助反转 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode() : val(0), next(nullp 阅读全文
posted @ 2025-02-25 21:52 Coder何 阅读(12) 评论(0) 推荐(0)
摘要: 需要两次二分查找,一次用于确定行,另一次用于确定列 1 class Solution { 2 public: 3 int m, n; 4 vector<vector<int>> matrix; 5 int binaryRowFind(int left, int right, int key) { 6 阅读全文
posted @ 2025-02-25 20:29 Coder何 阅读(44) 评论(0) 推荐(0)