- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在构建一个迷宫赛跑者机器人,其目标是能够从给定的起点到给定的终点穿越迷宫。我自己设计了算法 - 我坚持在查看以前的工作之前让我自己的实现工作。
部分算法涉及对方向进行排序(使用插入排序,因为数组很小)- forward, backward, up ,并且下降他们的前景如何。
我在排序时遇到了一些问题,它根据三个因素对方向进行排序
排序时,我比较因子1,如果相等,我比较因子2。如果因子2相等,我继续3。如果任何两个因子小于或< em>超过,我返回了。出于某种原因,有时状态较低的路径会被推到后面。我对路径的排序出了点问题。
enter code here
有什么想法吗?
/*------------( Getting the best direction to go in )---------------- */
/*
* 0: North
* 1: East
* 2: South
* 3: West
*/
int bestDirection(Point _curr_pos){
Vec4 statuses/*1 for unexplored(better), 2 for explored(worse)*/,
distances ,
lengths = collectDistancesToWalls(),
availablities = {POINT_REACHABLE, POINT_REACHABLE, POINT_REACHABLE, POINT_REACHABLE},
directions = {0,1,2,3};
//Give directions a length rating and distance rating and then sorts the directions, leaving the best direction in the front.
//If we discover that we have already been in a location, we should block off the passage behind us leading to that location because it must be a loop.
//Collecting the distance and length data.
for (int i=0; i < 4; i++) {
Point direction_translated = translateOnAxisInDirection(_curr_pos, i, 1);
//Converts the point to a reachable square - unnecessary to describe here. There is a domain specific problem which necessitates this function to be used.
Point heading_direction = pointToReachableSquare(direction_translated , i);
//Distance from end of path to "headinglocation", the goal
Point vec_to_end = subVec(heading_direction, headingLocation);
distances[i] = min(absv(vec_to_end.x), absv(vec_to_end.y));
statuses[i] = history[heading_direction.x][heading_direction.y].status;
//If path is unreachable because of wall or something, then mark it as unreachable.
if (cmpVec(heading_direction, _curr_pos) || history[heading_direction.x][heading_direction.y].classification == WALL || !pointInIndBounds(direction_translated)) {
availablities[i] = POINT_UNREACHABLE;
}
}
//Insertion sort the distances.
for (int i = 1; i < 4; i++) {
int j = i - 1;
while (
comparePathOptions(
statuses[i],
distances[i],
lengths[i],
statuses[j],
distances[j],
lengths[j]
) == LESS_THAN && (j >= 0)) {
int temp = directions[i];
directions[i] = directions[j];
directions[j] = temp;
j--;
}
}
//Return the first reachable direction.
int ind = 0;
int dir = directions[ind];
while (availablities[ directions[ind] ] == POINT_UNREACHABLE && (ind<4)) {
dir = directions[ind+1];
ind++;
}
return dir;
}
比较函数:
int relationship(int a, int b){
if (a < b) return LESS_THAN;
if (a > b) return MORE_THAN;
return EQUAL;
}
//Edit this function
//TODO: Edit comparePathOptions.
//NOTE: Something
int comparePathOptions(int n_explored, int n_closeness, int n_length,
int b_explored, int b_closeness, int b_length){
int objs[][3] = {
{n_explored, n_closeness, n_length},
{b_explored, b_closeness, b_length}
};
for (int i = 0; i < 3; i++){
int rel = relationship(objs[1][i],objs[0][i]);
if (rel!= EQUAL ) return rel;
}
return EQUAL;
}
多亏了@Kittsil,我的算法才起作用!您不是通过 j
和 i
访问 statuses
、lengths
和 distances
,而是通过 directions[i or j]
来完成,因为当 directions 数组改变时,i
和 j
停止引用当前方向。
编辑后的代码:
while ( (j >= 0) &&
comparePathOptions(
statuses[ directions[i] ],
distances[ directions[i] ],
lengths[ directions[i] ],
statuses[ directions[j] ],
distances[ directions[j] ],
lengths[ directions[j] ]
) == MORE_THAN ) {
int temp = directions[i];
directions[i] = directions[j];
directions[j] = temp;
j--;
}
以及解决的迷宫:
x: 0, y: 0
H: 5, W:5, Ss:1
4|#####|
3|#####|
2|#####|
1|#####|
0|*::::|
01234
4|#####|
3|#####|
2|#####|
1|#####|
0| *:::|
01234
4|#####|
3|#####|
2|#####|
1|#####|
0| *::|
01234
4|#####|
3|#####|
2|#####|
1|#####|
0| *:|
01234
4|#####|
3|#####|
2|####:|
1|####:|
0| *|
01234
4|#####|
3|#####|
2|####:|
1|####*|
0| |
01234
4|#####|
3|#####|
2|::::*|
1|#### |
0| |
01234
4|#####|
3|#####|
2|:::* |
1|#### |
0| |
01234
4|#####|
3|#####|
2|::* |
1|#### |
0| |
01234
4|#####|
3|#####|
2|:* |
1|#### |
0| |
01234
4|:####|
3|:####|
2|* |
1|#### |
0| |
01234
4|:####|
3|*####|
2| |
1|#### |
0| |
01234
4|*####|
3| ####|
2| |
1|#### |
0| |
01234
最佳答案
您正在对 directions
进行排序数组,但您无法对其他数组进行排序;一旦你进行第一次交换,statuses
, distances
, 和 lengths
不再与 directions
相关.
说明:问题出在您对比较函数的调用中。在这段代码中:
while (
comparePathOptions(statuses[i],
distances[i],
lengths[i],
statuses[j],
distances[j],
lengths[j])
== LESS_THAN &&
(j >= 0)
) {
int temp = directions[i];
directions[i] = directions[j];
directions[j] = temp;
j--;
}
您正在使用 i
和 j
访问包含排序信息的数组。一旦i
和 j
与 directions[i]
不同和 directions[j]
,这不会像您预期的那样运行。你有两个选择:一,将您的电话改为 comparePathOptions(.)
到
comparePathOptions(statuses[directions[i]],
distances[directions[i]],
lengths[directions[i]],
statuses[directions[j]],
distances[directions[j]],
lengths[directions[j]])
OR,按照惯例,将您关心的信息存储在(非常小的)对象中并对这些对象的向量进行排序。
此外,当 j=-1
时,您在循环中越界了。和你比较。你应该移动 (j>=0)
在 AND 的左侧。
说明:在几乎所有语言中,&& 和 ||是short-circuiting .如果 &&
的左侧是false
(或者 ||
的左侧是 true
),语言甚至不会评估右侧;它已经知道 bool 函数的结果。在您的实例中,您不需要 comparePathOptions(.)
在 j<0
时进行评估,因为这会让你出界。因此,你应该比较j
至 0
在你使用j
之前作为索引。
关于algorithm - 自主解迷宫机器人与故障路径排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30174963/
我在一本书(Interview Question)中读到这个问题,想在这里详细讨论这个问题。请点亮它。 问题如下:- 隐私和匿名化 马萨诸塞州集团保险委员会早在 1990 年代中期就有一个绝妙的主意
我最近接受了一次面试,面试官给了我一些伪代码并提出了相关问题。不幸的是,由于准备不足,我无法回答他的问题。由于时间关系,我无法向他请教该问题的解决方案。如果有人可以指导我并帮助我理解问题,以便我可以改
这是我的代码 public int getDist(Node root, int value) { if (root == null && value !=0) return
就效率而言,Strassen 算法应该停止递归并应用乘法的最佳交叉点是多少? 我知道这与具体的实现和硬件密切相关,但对于一般情况应该有某种指南或某人的一些实验结果。 在网上搜索了一下,问了一些他们认为
我想学习一些关于分布式算法的知识,所以我正在寻找任何书籍推荐。我对理论书籍更感兴趣,因为实现只是个人喜好问题(我可能会使用 erlang(或 c#))。但另一方面,我不想对算法进行原始的数学分析。只是
我想知道你们中有多少人实现了计算机科学的“ classical algorithms ”,例如 Dijkstra's algorithm或现实世界中的数据结构(例如二叉搜索树),而不是学术项目? 当有
我正在解决旧编程竞赛中的一些示例问题。在这个问题中,我们得到了我们有多少调酒师以及他们知道哪些食谱的信息。制作每杯鸡尾酒需要 1 分钟,我们需要使用所有调酒师计算是否可以在 5 分钟内完成订单。 解决
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 8 年前。 Improve
我开始学习 Nodejs,但我被困在中间的某个地方。我从 npm 安装了一个新库,它是 express -jwt ,它在运行后显示某种错误。附上代码和错误日志,请帮助我! const jwt = re
我有一个证书,其中签名算法显示“sha256rsa”,但指纹算法显示“sha1”。我的证书 SHA1/SHA2 的标识是什么? 谢谢! 最佳答案 TL;TR:签名和指纹是完全不同的东西。对于证书的强度
我目前在我的大学学习数据结构类(class),并且在之前的类(class)中做过一些算法分析,但这是我在之前的类(class)中遇到的最困难的部分。我们现在将在我的数据结构类(class)中学习算法分
有一个由 N 个 1x1 方格组成的区域,并且该区域的所有部分都是相连的(没有任何方格无法到达的方格)。 下面是一些面积的例子。 我想在这个区域中选择一些方块,并且两个相邻的方块不能一起选择(对角接触
我有一些多边形形状的点列表,我想将其包含在我页面上的 Google map 中。 我已经从原始数据中删除了尽可能多的不必要的多边形,现在我剩下大约 12 个,但它们非常详细以至于导致了问题。现在我的文
我目前正在实现 Marching Squares用于计算等高线曲线,我对此处提到的位移位的使用有疑问 Compose the 4 bits at the corners of the cell to
我正在尝试针对给定算法的约束满足问题实现此递归回溯函数: function BACKTRACKING-SEARCH(csp) returns solution/failure return R
是否有包含反函数的库? 作为项目的一部分,我目前正在研究测向算法。我正在使用巴特利特相关性。在 Bartlett 相关性中,我需要将已经是 3 次矩阵乘法(包括 Hermitian 转置)的分子除以作
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
问题的链接是UVA - 1394 : And There Was One . 朴素的算法是扫描整个数组并在每次迭代中标记第 k 个元素并在最后停止:这需要 O(n^2) 时间。 我搜索了一种替代算法并
COM 中创建 GUID 的函数 (CoCreateGUID) 使用“分散唯一性算法”,但我的问题是,它是什么? 谁能解释一下? 最佳答案 一种生成 ID 的方法,该 ID 具有一定的唯一性保证,而不
在做一个项目时我遇到了这个问题,我将在这个问题的实际领域之外重新措辞(我想我可以谈论烟花的口径和形状,但这会使理解更加复杂).我正在寻找一种(可能是近似的)算法来解决它。 我有 n 个不同大小的容器,
我是一名优秀的程序员,十分优秀!