- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
给定以下重定向列表
[
{
"old": "a",
"target": "b"
},
{
"old": "b",
"target": "c"
},
{
"old": "c",
"target": "d"
},
{
"old": "d",
"target": "a"
},
{
"old": "o",
"target": "n"
},
{
"old": "n",
"target": "b"
},
{
"old": "j",
"target": "x"
},
{
"old": "whatever",
"target": "something"
}
]
在这里我们可以看到第一个项目“a”应该重定向到“b”。如果我们按照列表进行操作,我们可以看到以下模式:
a -> b
b -> c
c -> d
d -> a
所以我们最终会得到一个循环引用,因为“a”最终会指向“d”,而“d”会指向“a”。
查找循环引用的最有效方法是什么?
我在 C# 中提出了以下算法
var items = JsonConvert.DeserializeObject<IEnumerable<Item>>(json)
.GroupBy(x => x.Old)
.Select(x => x.First())
.ToDictionary(x => x.Old, x => x.Target);
var circulars = new Dictionary<string, string>();
foreach (var item in items)
{
var target = item.Value;
while (items.ContainsKey(target))
{
target = items[target];
if (target.Equals(item.Key))
{
circulars.Add(target, item.Value);
break;
}
}
}
这将给我一个包含 4 个项目的列表,如下所示:
[
{
"old": "a",
"target": "b"
},
{
"old": "b",
"target": "c"
},
{
"old": "c",
"target": "d"
},
{
"old": "d",
"target": "a"
}
]
但我只对告诉用户类似的事情感兴趣
“嘿,你不能那样做,这将是一个循环引用,因为“a”指向“b”,“b”指向“c”,“c”指向“d”,“d”指向“a”
那么,你们有什么建议吗?我确定存在其他一些(更好的)算法来执行此操作...:)
最佳答案
虽然通用图循环查找算法会起作用,但由于“旧的是唯一的,目标不是” 约束,您的情况有点特殊。它实际上意味着,每个节点只能有一个后继节点,因此它最多只能是一个循环的一部分。另外,DFS-Traversing节点时,不会有任何 fork ,因此迭代DFS实现变得非常容易。
给定任意起始节点,此函数可以找到从起始节点可达的环:
/// <summary>
/// Returns a node that is part of a cycle or null if no cycle is found
/// </summary>
static string FindCycleHelper(string start, Dictionary<string, string> successors, HashSet<string> stackVisited)
{
string current = start;
while (current != null)
{
if (stackVisited.Contains(current))
{
// this node is part of a cycle
return current;
}
stackVisited.Add(current);
successors.TryGetValue(current, out current);
}
return null;
}
为了保持效率,可以扩展到到达一个已经检查过的节点时提前返回(使用previouslyVisited
):
/// <summary>
/// Returns a node that is part of a cycle or null if no cycle is found
/// </summary>
static string FindCycleHelper(string start, Dictionary<string, string> successors, HashSet<string> stackVisited, HashSet<string> previouslyVisited)
{
string current = start;
while (current != null)
{
if (previouslyVisited.Contains(current))
{
return null;
}
if (stackVisited.Contains(current))
{
// this node is part of a cycle
return current;
}
stackVisited.Add(current);
successors.TryGetValue(current, out current);
}
return null;
}
下面的函数用来维护访问集的一致性
static string FindCycle(string start, Dictionary<string, string> successors, HashSet<string> globalVisited)
{
HashSet<string> stackVisited = new HashSet<string>();
var result = FindCycleHelper(start, successors, stackVisited, globalVisited);
// update collection of previously processed nodes
globalVisited.UnionWith(stackVisited);
return result;
}
为每个old
节点调用它以检查循环。当检测到循环起始节点时,可以单独创建循环信息:
// static testdata - can be obtained from JSON for real code
IEnumerable<Item> items = new Item[]
{
new Item{ Old = "a", Target = "b" },
new Item{ Old = "b", Target = "c" },
new Item{ Old = "c", Target = "d" },
new Item{ Old = "d", Target = "a" },
new Item{ Old = "j", Target = "x" },
new Item{ Old = "w", Target = "s" },
};
var successors = items.ToDictionary(x => x.Old, x => x.Target);
var visited = new HashSet<string>();
List<List<string>> cycles = new List<List<string>>();
foreach (var item in items)
{
string cycleStart = FindCycle(item.Old, successors, visited);
if (cycleStart != null)
{
// cycle found, get detail information about involved nodes
List<string> cycle = GetCycleMembers(cycleStart, successors);
cycles.Add(cycle);
}
}
以您想要的任何方式输出您找到的循环。例如
foreach (var cycle in cycles)
{
Console.WriteLine("Cycle:");
Console.WriteLine(string.Join(" # ", cycle));
Console.WriteLine();
}
GetCycleMembers
的实现非常简单 - 它取决于正确的起始节点:
/// <summary>
/// Returns the list of nodes that are involved in a cycle
/// </summary>
/// <param name="cycleStart">This is required to belong to a cycle, otherwise an exception will be thrown</param>
/// <param name="successors"></param>
/// <returns></returns>
private static List<string> GetCycleMembers(string cycleStart, Dictionary<string, string> successors)
{
var visited = new HashSet<string>();
var members = new List<string>();
var current = cycleStart;
while (!visited.Contains(current))
{
members.Add(current);
visited.Add(current);
current = successors[current];
}
return members;
}
关于c# - 在列表中查找循环引用的最有效方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46484725/
我遇到了一个奇怪的问题。我有这个: $(document).ready(function () {
我正在编写一个程序,它从列表中读取一些 ID,从中找出不同的 URL,然后将图像保存到我的 C: 驱动器中。 如果我在浏览器中导航到图像 URL,它们就会起作用。此外,如果我尝试从不同的服务器获取图像
我编写了一个 REST WCF RIA Silverlight 4.0 兼容服务,我可以从 javascript + jQuery.1.4.2.js + JSON2.js(当然,还可以从 .NET 4
我很确定这个网站实际上还没有得到回答。一劳永逸地,与 32 位有符号整数范围内的数字字符串匹配的最小正则表达式是什么,范围是 -2147483648至 2147483647 . 我必须使用正则表达式进
我有两个data.table;我想从那些与键匹配的元素中随机分配一个元素。我现在这样做的方式相当慢。 让我们具体点;这是一些示例数据: dt1<-data.table(id=sample(letter
我已经安装了 celery 、RabitMQ 和花。我可以浏览到花港。我有以下简单的工作人员,我可以将其附加到 celery 并从 python 程序调用: # -*- coding: utf-8 -
我正在使用 ScalaCheck 在 ScalaTest 中进行一些基于属性的测试。假设我想测试一个函数,f(x: Double): Double仅针对 x >= 0.0 定义的, 并返回 NaN对于
我想检查文件是否具有有效的 IMAGE_DOS_SIGNATURE (MZ) function isMZ(FileName : String) : boolean; var Signature: W
在 Herbert Schildt 的“Java:完整引用,第 9 版”中,有一个让我有点困惑的例子。它的关键点我无法理解可以概括为以下代码: class Test { public stat
我在工作中查看了一些代码,发现了一些我以前没有遇到过的东西: for (; ;) { // Some code here break; } 我们一直调用包含这个的函数,我最近才进去看看它是
在 Herbert Schildt 的“Java:完整引用,第 9 版”中,有一个让我有点困惑的例子。它的关键点我无法理解可以概括为以下代码: class Test { public stat
我试图编写一个函数,获取 2D 点矩阵和概率 p 并以概率 p 更改或交换每个点坐标 所以我问了一个question我试图使用二进制序列作为特定矩阵 swap_matrix=[[0,1],[1,0]]
这个问题在这里已经有了答案: Using / or \\ for folder paths in C# (5 个答案) 关闭 7 年前。 我在某个Class1中有这个功能: public v
PostgreSQL 10.4 我有一张 table : Column | Type ------------------------- id | integer| title
我正在 Postgresql 中编写一个函数,它将返回一些针对特定时区(输入)计算的指标。 示例结果: 主要问题是这只是一个指标。我需要从其他表中获取其他 9 个指标。 对于实现此目标的更简洁的方法有
我需要在 python 中模拟超几何分布(用于不替换采样元素的花哨词)。 设置:有一个装满人口许多弹珠的袋子。弹珠有两种类型,红色和绿色(在以下实现中,弹珠表示为 True 和 False)。从袋子中
我正在使用 MaterializeCSS 框架并动态填充文本输入。我遇到的一个问题是,在我关注该字段之前,valid 和 invalid css 类不会添加到我的字段中。 即使我调用 M.update
是否有重叠 2 个 div 的有效方法。 我有以下内容,但无法让它们重叠。 #top-border{width:100%; height:60px; background:url(image.jpg)
我希望你们中的一位能向我解释为什么编译器要求我在编译单元中重新定义一个静态固定长度数组,尽管我已经在头文件中这样做了。这是一个例子: 我的类.h: #ifndef MYCLASS_H #define
我正在使用旧线程发布试图解决相同问题的新代码。什么是安全 pickle ? this? socks .py from socket import socket from socket import A
我是一名优秀的程序员,十分优秀!