CCI: Find in Matrix

Given a matrix in which each row and each column is sorted, write a method to find an element in it.

第一反应是取矩阵中间元素折半,可以去掉1/4的区域,不过这样一来剩下的就是两个矩阵了。虽然也可以解决问题,有些复杂。简单一些,O(m+n)的方案吧。

注意二维数组做参数的用法,折腾了好几次,有时间再看看有没有更好的方式。

bool findInMatrix(int A[][5], int rows, int cols, int target) {
	int i = 0;
	int j = cols - 1;
	while (i < rows && j >= 0) {
		if (A[i][j] == target) {
			return true;
		}
		else if (A[i][j] > target) {
			--j;
		}
		else {
			++i;
		}
	}

	return false;
}

int _tmain(int argc, _TCHAR* argv[])
{
	int rows = 3, cols = 5;
	int A[3][5] = {
		{1, 8, 12, 20, 30},
		{4, 9, 13, 25, 32},
		{6, 11,19, 28, 40},
	};

	
	cout << "Number 0 " << (findInMatrix(A, rows, cols, 5) ? "found" : "not found") << endl;
	cout << "Number 19 " << (findInMatrix(A, rows, cols, 19) ? "found" : "not found") << endl;
	cout << "Number 25 " << (findInMatrix(A, rows, cols, 25) ? "found" : "not found") << endl;
	cout << "Number 40 " << (findInMatrix(A, rows, cols, 40) ? "found" : "not found") << endl;
	cout << "Number 45 " << (findInMatrix(A, rows, cols, 45) ? "found" : "not found") << endl;

	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这段内核日志中的错误信息涉及相机的 CCI(Camera Control Interface)和 EEPROM(Electrically Erasable Programmable Read-Only Memory)模块。根据日志信息,可以看出发生了以下错误: 1. CAM-CCI: cam_cci_read: 1453 CCI1_I2C_M1_Q1 ERROR with Slave 0xa2 这个错误表示在与从设备地址为0xa2的设备进行通信时发生了错误。 2. CAM-CCI: cam_cci_read_bytes: 1816 CCI1_I2C_M1 Failed to read rc:-22 这个错误表示在读取数据时发生了错误,返回值为-22。 3. CAM-CCI: cam_cci_core_cfg: 2023 rc: -22 这个错误表示在配置相机控制接口时发生了错误,返回值为-22。 4. CAM-EEPROM: cam_eeprom_read_memory: 114 read failed rc -22 这个错误表示在读取 EEPROM 存储器中的数据时发生了错误,返回值为-22。 5. CAM-EEPROM: cam_eeprom_pkt_parse: 1329 read_eeprom_memory failed 这个错误表示在解析 EEPROM 数据包时发生了错误。 6. CAM-EEPROM: cam_eeprom_driver_cmd: 1540 Failed in eeprom pkt Parsing 这个错误表示在 EEPROM 驱动程序命令中解析数据包时发生了错误。 7. CAM-EEPROM: cam_eeprom_subdev_ioctl: 70 Failed in Driver cmd: -22 这个错误表示在 EEPROM 子设备的 IOCTL 命令中发生了错误,返回值为-22。 总体来说,这些错误都与相机的 CCI 和 EEPROM 模块的读取、配置和通信有关。可能的原因包括硬件故障、驱动程序问题或通信问题。你可能需要仔细检查相关的硬件连接、驱动程序和配置,以解决这些错误。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值