剑指offer(1)——C++实现二维数组中的查找

/*二维数组查找*/
#include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
	bool Find(int target, vector<vector<int> > array) {
		int rows = array.size();
		int cols = array[0].size();
		int i = 0;
		int j = cols - 1;
		while (i <= rows - 1 && j >= 0)
		{
			if (target > array[i][j])
				i++;
			else if (target < array[i][j])
				j--;
			else
				return true;
		}
		return false;
	}
};
void main()
{
	vector<vector<int>> array = { {1,2,3},{4,5,6},{7,8,9} };
	Solution s;
	cout<<s.Find(4, array)<<endl;
}
<think>好的,用户之前问过关于C++中find方法的介绍,现在又询问如何在C++的二维vector中查找元素。我需要先理解用户的具体需二维数组可能指的是vector嵌套,比如vector<vector<int>>。用户可能需要在这样的结构中查找特定值,或者满足某些条件的元素。 首先,用户可能已经知道std::find的用法,但二维情况更复杂。可能需要遍历每一层vector,或者使用更高效的方法。我需要考虑不同的查找方式,比如是否存在某个值,或者找到其位置。 接下来,要分析可能的解决方案。最简单的是双重循环,逐行逐列检查。另外,可以结合算法库中的find_if,或者使用范围-based for循环。用户可能关心效率和代码简洁性,所以需要提供多种方法并比较优缺点。 还要注意正确使用迭代器,因为二维vector的结构需要外层和内层的迭代。同时,可能需要返回元素的位置,即行和列的索引,这需要处理迭代器的转换。 另外,是否有更高效的方法?比如如果每一行都是排序好的,可以用二分查找,这样时间复杂度会降低。这时候可能需要用binary_search或者lower_bound,但需要确保数据有序。 用户可能还需要知道如何处理自定义条件查找,比如使用lambda表达式作为谓词,这样可以灵活应对不同的查找。 最后,总结不同方法的适用场景,帮助用户根据具体情况选择。例如,无序数据用线性查找,有序数据用二分,或者使用STL算法简化代码。同时提醒性能差异,比如时间复杂度,以及代码的可读性。 需要注意用户可能的误区,比如直接使用std::find在二维结构上,但实际上需要逐层处理。或者错误地使用迭代器导致越界等问题。需要给出正确示例代码,并解释关键点,比如如何获取行和列的索引。 总之,要分步骤介绍多种方法,比较它们的优缺点,并给出实际示例,确保用户能够理解和应用。</think>以下是关于在 C++ 二维 `vector`(即 `vector<vector<T>>`)中查找元素的详细方法及实现示例: --- ### 一、**基础查找:线性遍历** #### 方法描述 通过双重循环遍历二维数组,逐个元素比较目标值。 #### 代码示例 ```cpp #include <vector> #include <iostream> bool findIn2DVector(const std::vector<std::vector<int>>& matrix, int target) { for (const auto& row : matrix) { // 遍历每一行 for (int num : row) { // 遍历行内元素 if (num == target) return true; // 找到目标值 } } return false; // 未找到 } int main() { std::vector<std::vector<int>> matrix = { {1, 3, 5}, {7, 9, 11}, {13, 15, 17} }; if (findIn2DVector(matrix, 9)) { std::cout << "元素存在"; } // 输出:元素存在 } ``` --- ### 二、**使用 STL 算法优化** #### 1. **逐行应用 `std::find`** ```cpp #include <algorithm> #include <vector> bool findWithSTL(const std::vector<std::vector<int>>& matrix, int target) { for (const auto& row : matrix) { // 在每行中查找 auto it = std::find(row.begin(), row.end(), target); if (it != row.end()) return true; } return false; } ``` #### 2. **结合 `std::any_of` 简化代码** ```cpp #include <algorithm> #include <vector> bool findWithAnyOf(const std::vector<std::vector<int>>& matrix, int target) { return std::any_of(matrix.begin(), matrix.end(), [target](const auto& row) { return std::find(row.begin(), row.end(), target) != row.end(); }); } ``` --- ### 三、**高效查找:针对有序二维数组** 若每行或每列已排序,可优化时间复杂度至 $O(m + n)$ 或更低。 #### 1. **从右上角开始搜索(Z 字形查找)** **适用场景**:每行从左到右递增,每列从上到下递增。 ```cpp bool searchSortedMatrix(const std::vector<std::vector<int>>& matrix, int target) { if (matrix.empty()) return false; int row = 0; int col = matrix[0].size() - 1; // 起始点为右上角 while (row < matrix.size() && col >= 0) { if (matrix[row][col] == target) { return true; } else if (matrix[row][col] > target) { col--; // 向左移动(排除当前列) } else { row++; // 向下移动(排除当前行) } } return false; } ``` #### 2. **逐行二分查找** **适用场景**:每行内部有序(但行间无序)。 ```cpp #include <algorithm> bool binarySearchRows(const std::vector<std::vector<int>>& matrix, int target) { for (const auto& row : matrix) { if (std::binary_search(row.begin(), row.end(), target)) { return true; } } return false; } ``` --- ### 四、**获取元素位置** 若需返回元素的行列索引,可记录遍历过程中的位置: ```cpp #include <vector> #include <optional> std::optional<std::pair<size_t, size_t>> findPosition( const std::vector<std::vector<int>>& matrix, int target) { for (size_t i = 0; i < matrix.size(); ++i) { for (size_t j = 0; j < matrix[i].size(); ++j) { if (matrix[i][j] == target) { return std::make_pair(i, j); // 返回行列索引 } } } return std::nullopt; // 未找到 } ``` --- ### 五、**性能对比** | 方法 | 时间复杂度 | 适用场景 | |-----------------------|------------------|------------------------| | 线性遍历 | $O(m \times n)$ | 无序二维数组 | | 逐行二分查找 | $O(m \log n)$ | 每行有序 | | Z 字形查找 | $O(m + n)$ | 全局行列有序(如剑指 Offer 04 题) | --- ### 六、**关键注意事项** 1. **空行处理**:检查每行是否非空(避免 `matrix[i][j]` 访问越界): ```cpp for (const auto& row : matrix) { if (row.empty()) continue; // 跳过空行 // 查找操作... } ``` 2. **行长度不一致**:二维 `vector` 允许各行长度不同,需用 `matrix[i].size()` 获取列数。 3. **自定义条件查找**:结合 `std::find_if` 实现复杂条件搜索: ```cpp auto it = std::find_if(row.begin(), row.end(), [](int num) { return num > 10 && num % 2 == 0; // 查找第一个大于10的偶数 }); ``` --- 通过以上方法,可根据二维数组的特性和需选择最优查找策略。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值