Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
contest_exercises_template
提交
fb633d2c
C
contest_exercises_template
项目概览
CSDN 技术社区
/
contest_exercises_template
通知
79
Star
2
Fork
18
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
4
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
C
contest_exercises_template
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
fb633d2c
编写于
2月 24, 2023
作者:
F
feilong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
format
上级
a9e0489c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
0 addition
and
7 deletion
+0
-7
exercises/huanhuilong/中等/查找点在自然区间的坐标/solution.cpp
exercises/huanhuilong/中等/查找点在自然区间的坐标/solution.cpp
+0
-7
未找到文件。
exercises/huanhuilong/中等/查找点在自然区间的坐标/solution.cpp
浏览文件 @
fb633d2c
...
...
@@ -60,12 +60,10 @@ size_t findNatureRangeIndex(std::vector<Range>& rangeList, uint64_t point){
size_t
idx
=
SIZE_MAX
;
while
(
first
<=
last
)
{
size_t
mid
=
(
first
+
last
)
/
2
;
// compute mid point.
std
::
cout
<<
"xx:"
<<
mid
;
// 处理右边界
if
(
mid
>=
max
-
1
)
{
uint64_t
lastEnd
=
rangeList
[
n
-
1
].
m_pos
+
rangeList
[
n
-
1
].
m_length
;
std
::
cout
<<
"point:"
<<
point
<<
"lastEnd:"
<<
lastEnd
<<
"max:"
<<
max
;
if
(
point
>=
lastEnd
)
{
idx
=
max
-
1
;
}
else
{
...
...
@@ -100,20 +98,15 @@ size_t findNatureRangeIndex(std::vector<Range>& rangeList, uint64_t point){
// 二分查找
if
(
point
>=
testEnd
)
{
std
::
cout
<<
"->"
<<
point
<<
","
<<
testBeg
<<
","
<<
testEnd
<<
std
::
endl
;
first
=
mid
+
1
;
// repeat search in top half.
}
else
if
(
point
<
testBeg
)
{
std
::
cout
<<
"<-"
<<
point
<<
","
<<
testBeg
<<
","
<<
testEnd
<<
std
::
endl
;
last
=
mid
-
1
;
// repeat search in bottom half.
}
else
{
std
::
cout
<<
point
<<
","
<<
testBeg
<<
","
<<
testEnd
<<
std
::
endl
;
idx
=
mid
;
break
;
}
}
std
::
cout
<<
std
::
endl
;
return
idx
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录