添加链接
注册
登录
link管理
链接快照平台
输入网页链接,自动生成快照
标签化管理网页链接
相关文章推荐
考研的馒头
·
深入剖析Tomcat:HTTP请求的完整执行 ...
·
1 月前
·
内向的树叶
·
批处理重命名文件名带空格的文件报错“命令语法 ...
·
4 月前
·
沉着的回锅肉
·
四川省文化和旅游厅
·
4 月前
·
刚失恋的啤酒
·
转基因生物技术在争议中前行
·
5 月前
·
一直单身的抽屉
·
Django ...
·
6 月前
·
link管理
›
用 cout 打印指针地址 — Note documentation
http://note-rtd.readthedocs.io/en/latest/source/2_%E8%AF%AD%E8%A8%80/CCpp/C++Tricks/_content.html
爱跑步的感冒药
7 月前
// 如果查找的元素比当前位置元素小, 就向左走
// 如果查找的元素比当前位置元素大, 就向下走
for
(
int
i
=
0
,
j
=
col
-
1
;
(
i
>=
0
&&
i
<
row
)
&&
(
j
>=
0
&&
j
<
col
);)
if
(
target
==
array
[
i
][
j
])
res
=
true
;
break
;
else
if
(
target
<
array
[
i
][
j
])
// 小的元素在当前位置左侧
#ifdef __tmain
display
(
array
);
#endif
// __tmain
j
--
;
#ifdef __tmain
display
(
array
);
#endif
// __tmain
i
++
;
return
res
;
void
display
(
vector
<
int
>
vec
)
int
len
=
vec
.
size
();
for
(
int
i
=
0
;
i
<
len
;
i
++
)
cout
<<
vec
[
i
]
<<
' '
;
cout
<<
endl
;
int
__main
()
int
a1
[]
=
{
1
,
2
,
8
,
9
,
};
int
a2
[]
=
{
2
,
4
,
9
,
12
,
};
int
a3
[]
=
{
4
,
7
,
10
,
13
,
};
int
a4
[]
=
{
6
,
8
,
11
,
15
,
};
vector
<
vector
<
int
>>
array
;
array
.
push_back
(
vector
<
int
>
(
a1
,
a1
+
4
));
array
.
push_back
(
vector
<
int
>
(
a2
,
a2
+
4
));
array
.
push_back
(
vector
<
int
>
(
a3
,
a3
+
4
));
array
.
push_back
(
vector
<
int
>
(
a4
,
a4
+
4
));
Solution
solu
;
cout
<<
solu
.
Find
(
array
,
7
)
<<
endl
;
system
(
"pause"
);
return
0
;
推荐文章
考研的馒头
·
深入剖析Tomcat:HTTP请求的完整执行流程解析-小易智趣 | 万维易源
1 月前
内向的树叶
·
批处理重命名文件名带空格的文件报错“命令语法不正确”如何解决 - BAT求助&讨论 - 批处理之家 BAT,CMD,批处理,PowerShell,VBS,DOS - Powered by Discu
4 月前
沉着的回锅肉
·
四川省文化和旅游厅
4 月前
刚失恋的啤酒
·
转基因生物技术在争议中前行
5 月前
一直单身的抽屉
·
Django Web开发入门——Admin后台 | 无咎
6 月前