免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2809 | 回复: 0
打印 上一主题 下一主题

如何在图中搜索相同的点? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-05-03 21:39 |只看该作者 |倒序浏览
24111452
11355551
33451543
11444533
11311413
54353141
14134141
25133152

如上面所示,搜索出个数大于3的相同的相邻点, 例如第一行第三,四,五个'1'
除了广度和深度搜索,还有其它吗?

这是我用的算法
def search(matrix, remove, x, y):

    v = matrix[x][y]

    #left, do not search right
    if y - 1 >= 0 and (x,y-1) not in remove:
        if matrix[x][y-1] == v :
            remove.append((x,y-1))
            temp = click(matrix, remove, x,y-1)
            if len(temp) > 0: remove.extend(temp)
        
    #right, do not search left
    if y + 1 < N and (x,y+1) not in remove:
        if matrix[x][y+1] == v:
            remove.append((x,y+1))
            temp = click(matrix, remove, x,y+1)
            if len(temp) > 0: remove.extend(temp)
        
    #up, do not search down
    if x - 1 >= 0 and (x-1,y) not in remove:
        if matrix[x-1][y] == v:
            remove.append((x-1,y))
            temp = click(matrix, remove, x-1,y)
            if len(temp) > 0: remove.extend(temp)

    #down, do not search up
    if x + 1 < N and (x+1,y) not in remove:
        if matrix[x+1][y] == v:
            remove.append((x+1,y))
            temp = click(matrix, remove, x+1,y)
            if len(temp) > 0: remove.extend(temp)

    return remove   

matrix就是上面的矩阵,remove保存相同的点.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP