欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#用链式方法表达循环嵌套

程序员文章站 2023-11-25 09:56:58
一.起缘 故事缘于一位朋友的一道题: 朋友四人玩lol游戏。第一局,分别选择位置:中单,上单,adc,辅助;第二局新加入的伙伴要选上单,四人可选位置变为:中单,...

一.起缘

故事缘于一位朋友的一道题:

朋友四人玩lol游戏。第一局,分别选择位置:中单,上单,adc,辅助;第二局新加入的伙伴要选上单,四人可选位置变为:中单,打野,adc,辅助;要求,第二局四人每人不得选择和第一局相同的位置,请问两局综合考虑有多少种位置选择方式?

对于像我这边不懂游戏的人来讲,看不懂。于是有了这个版本:

有4个人,4只椅子,第一局每人坐一只椅子,第二局去掉第2只椅子,增加第5只椅子,每人坐一只椅子,而且每个人不能与第一局坐相同的椅子。问两局综合考虑,共有多少种可能的情况?

我一开始的想法是这样的,4个人就叫abcd:第1局可能数是4*3*2*1=24,如果a第1局选了第2张椅,则a有4种可能,否则a有3种可能。对b来讲,如果a选了b第一局的椅,则b有3种可能,否则b有2种可能(排队自己第一局和a第二局已选)……想到这里我就晕了,情况越分越多。

二.原始的for嵌套

本来是一道数学题,应该由知识算出来有多少种,但我突然有个想法,不如用计算机穷举出出来。一来可以为各种猜测提供一个正确的答案,二来或许可以从答案反推出(数学上的)计算方法。然后就写了第1版:

static seat data = new seat();
public static void run()
{
for (int a = 0; a < 4; a++)
{
if (data.isselected(0, a)) //第1局编号0。如果已经被人坐了。
continue;
data.selected(0, a, "a"); //第1局编号0。a坐a椅。
for (int b = 0; b < 4; b++)
{
if (data.isselected(0, b))
continue;
data.selected(0, b, "b");
for (int c = 0; c < 4; c++)
{
if (data.isselected(0, c))
continue;
data.selected(0, c, "c");
for (int d = 0; d < 4; d++)
{
if (data.isselected(0, d))
continue;
data.selected(0, d, "d");
for (int a2 = 0; a2 < 5; a2++)
{
if (a2 == 1)
continue;
if (data.isselected(1, a2)) //第2局编号1
continue;
if (data.isselected(0, a2, "a")) //如果第1局a坐了a2椅
continue;
data.selected(1, a2, "a");
for (int b2 = 0; b2 < 5; b2++)
{
if (b2 == 1)
continue;
if (data.isselected(1, b2))
continue;
if (data.isselected(0, b2, "b"))
continue;
data.selected(1, b2, "b");
for (int c2 = 0; c2 < 5; c2++)
{
if (c2 == 1)
continue;
if (data.isselected(1, c2))
continue;
if (data.isselected(0, c2, "c"))
continue;
data.selected(1, c2, "c");
for (int d2 = 0; d2 < 5; d2++)
{
if (d2 == 1)
continue;
if (data.isselected(1, d2))
continue;
if (data.isselected(0, d2, "d"))
continue;
data.selected(1, d2, "d");
data.count++; //可能的情况数加1
console.writeline("{0,5} {1}", data.count, data.current);
data.unselected(1, d2);
}
data.unselected(1, c2);
}
data.unselected(1, b2);
}
data.unselected(1, a2);
}
data.unselected(0, d);
}
data.unselected(0, c);
}
data.unselected(0, b);
}
data.unselected(0, a); //a起身(释放坐椅)
}
} 

部分运行结果:

说明:

1.abcd是人名
2.“.”代表没有人
3.位置是是座位
4.-左边是第1局,右边是第2局
5.数字是序号

1 a b c d .-b . a c d
2 a b c d .-c . a b d
3 a b c d .-d . a b c
4 a b c d .-d . a c b
5 a b c d .-b . d a c
6 a b c d .-c . b a d
7 a b c d .-d . b a c
8 a b c d .-c . d a b
9 a b c d .-b . d c a
10 a b c d .-d . b c a
11 a b c d .-c . d b a
12 a b d c .-b . a d c
...
262 d c b a .-b . c d a
263 d c b a .-b . d c a
264 d c b a .-c . d b a

算出来是264种。从答案上来看是每11种是一组,一组中第1局的坐法是相同的,也就是说对于第一局的每一种情况,第2局都是有11种不同的可能。而第一局的可能性是24,所以答案是24*11=264。而第2局为什么是11种可能,后面再说。

三.想要链式写法

主题来了,像刚才的第1版的写法太死板太麻烦了。

如果能像这样写代码就爽了:

obj.try("a").try("b").try("c").try("d").try2("a").try2("b").try2("c").try2("d").write(); 

而这样的代码通常的逻辑是执行try("a")方法,然后执行try("a")它return的对象的try("b")方法……,即是try("b")方法只被执行1次,而我希望的是try("b")方法被try("a")内部循环调用n次,try("c")方法又被try("b")方法调用m次。想想第1版的for套for不难明白为什么要追求这样的效果。如果try("a")执行完了,再去执行try("b"),那么try("b")肯定不会被调用多次,所以得延迟try("a")的执行,同理也延迟所有try和try2的执行。由于lambda表达天生有延迟计算的特性,于是很快写出了第2版:

public static void run2()
{
try("a",
() => try("b",
() => try("c",
() => try("d",
() => try2("a",
() => try2("b",
() => try2("c",
() => try2("d",
null
)
)
)
)
)
)
)
);
}
public static void try(string name, action action) //第1局
{
for (int i = 0; i < 4; i++)
{
if (data.isselected(0, i))
continue;
data.selected(0, i, name);
if (action == null)
{
console.writeline(data.current);
}
else
{
action();
}
data.unselected(0, i);
}
}
public static void try2(string name, action action) //第2局
{
for (int i = 0; i < 5; i++)
{
if (i == 1)
continue;
if (data.isselected(1, i))
continue;
if (data.isselected(0, i, name))
continue;
data.selected(1, i, name);
if (action == null)
{
data.count++;
console.writeline("{0,5} {1}", data.count, data.current);
}
else
{
action();
}
data.unselected(1, i);
}
}

结构更合理,逻辑更清晰,但是一堆lambda嵌套,太丑了,也不是我要的效果,我要的是类似这样的:

obj.try("a").try("b").try("c").try("d").try2("a").try2("b").try2("c").try2("d").write();

四.继续向目标逼近。

由于要延迟,所以必须先把要被调用的方法的引用“告诉”上一级,当上一级执行for的时候,就能调用下一级的方法。于是我想到了一个“回调链”

所以,执行链式方法是在构造回调链,最后的方法再通过调用链头(head)的某个方法启动真正要执行的整个逻辑。

延迟计算是从linq借鉴和学习来的,构造linq的过程并没有执行,等到了执行tolist, first等方法时才真正去执行。

我想构造回调链每一步都是一个固定的方法,这里随便起用了t这个极短名称,而每一步后期计算时要执行的方法可灵活指定。于是有了第3版:

static seat data = new seat(); //借用seat保存数据
public seat2(string name, seat2 parent, action<seat2> method)
{
this.name = name;
this.parent = parent;
if (parent != null)
parent.child = this;
this.method = method;
}
public static void run()
{
new seat2("a", null, me => me.try())
.t("b", me => me.try())
.t("c", me => me.try())
.t("d", me => me.try())
.t("a", me => me.try2())
.t("b", me => me.try2())
.t("c", me => me.try2())
.t("d", me => me.try2())
.p().start();
}
public seat2 t(string name, action<seat2> method)
{
return new seat2(name, this, method);
}
public void try()
{
for (int i = 0; i < 4; i++)
{
if (data.isselected(0, i))
continue;
data.selected(0, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(0, i);
}
}
public void try2()
{
for (int i = 0; i < 5; i++)
{
if (i == 1)
continue;
if (data.isselected(1, i))
continue;
if (data.isselected(0, i, this.name))
continue;
data.selected(1, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(1, i);
}
} 

五.解耦

这种调用方式,是满意了。但是运算框架与具体的算法耦合在一起,如果能把运算框架提取出来,以后写具体的算法也方便许多。于是经过苦逼的提取,测试,踩坑,最终出现了第4版:

//运算框架
class computelink<t> where t : iseat
{
computelink<t> parent { get; set; } //父节点,即上一级节点
computelink<t> child { get; set; } //子节点,即下一级节点
t obj { get; set; } //当前节点对应的算法对象,可以看作业务对象
public computelink(t obj, computelink<t> parent, action<t> method)
{
if (obj == null)
throw new argumentnullexception("obj");
this.obj = obj;
this.obj.method = x => method((t)x);
if (parent != null)
{
this.parent = parent;
parent.child = this;
parent.obj.child = this.obj;
}
}
public static computelink<t> new(t obj, action<t> method)
{
return new computelink<t>(obj, null, method);
}
public computelink<t> do(t obj, action<t> method)
{
return new computelink<t>(obj, this, method);
}
public computelink<t> head //链表的头
{
get
{
if (null != this.parent)
return this.parent.head;
return this;
}
}
public void action() //启动(延迟的)整个计算
{
var head = this.head;
head.obj.method(head.obj);
}
}
interface iseat
{
iseat child { get; set; }
action<iseat> method { get; set; }
}

p.s.为什么第4版是iseat3而不是iseat4呢,因为我本不把第1版当作1个版本,因为太原始了,出现第2版后,我就把第1版给删除了。为了写这篇文章才重新去写第1版。于是原本我当作第3版的iseat3自然地排到了第4版。

具体的"算法"就很简单了:

class seat3 : iseat3
{
static seat data = new seat();
string name { get; set; }
public seat3(string name)
{
this.name = name;
}
/// <summary>
/// 解耦的版本
/// </summary>
public static void run()
{
var sql = computelink<seat3>
.new(new seat3("a"), m => m.try())
.do(new seat3("b"), m => m.try())
.do(new seat3("c"), m => m.try())
.do(new seat3("d"), m => m.try())
.do(new seat3("a"), m => m.try2())
.do(new seat3("b"), m => m.try2())
.do(new seat3("c"), m => m.try2())
.do(new seat3("d"), m => m.try2())
.do(new seat3(""), m => m.print());
sql.action();
}
public action<iseat3> method { get; set; }
public iseat3 child { get; set; }
public void try()
{
for (int i = 0; i < 4; i++)
{
if (data.isselected(0, i))
continue;
data.selected(0, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(0, i);
}
}
public void try2()
{
for (int i = 0; i < 5; i++)
{
if (i == 1)
continue;
if (data.isselected(1, i))
continue;
if (data.isselected(0, i, this.name))
continue;
data.selected(1, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(1, i);
}
}
public void print()
{
data.count++;
console.writeline("{0,5} {1}", data.count, data.current);
}
}

seat3写起来简单,(run方法内部)看起来舒服。通过链式写法达到嵌套循环的效果。对,这就是我要的!

它很像linq,所以我直接给变量命名为sql。

•对于try和try2来讲,要调用的方法最好从参数传来,但是这样就会增加run方法中new和do的参数复杂性,破坏了美感,所以经过权衡,child和method通过属性传入。这个我也不确定这样做好不好,请各位大侠指点。

•还有一个细节,就是computelink构造方法中的(行号12的)代码 this.obj.method = x => method((t)x); 。我原来是这样写的 this.obj.method = method; 编译不通过,原因是不能把 action<iseat3> 转化为 action<t> ,虽然t一定实现了iseat3,强制转化也不行,想起以前看过的一篇文章里面提到希望c#以后的版本能拥有的一特性叫“协变”,很可能指的就是这个。既然这个 action<iseat3> 不能转化为 action<t> 但是iseat3是可以强制转化为t的,所以我包了一层薄薄的壳,成了 this.obj.method = x => method((t)x); ,如果有更好的办法请告诉我。

六.第2局为什么是11种可能

回过头来解决为什么对于一个确定的第1局,第2局有11种可能。

不妨假设第1局的选择是a选1号椅,b选2号椅,c选3号椅,d选4号椅。

第2局分为两大类情况:

如果b选了第5号椅

则只有2种可能:

a b c d .-d . a c b
a b c d .-c . d a b

如果b选了不是第5号椅,

则acd都有可能选第5号椅,有3种可能。b有3种选的可能(1,3,4号椅),b一旦确定,a和c也只有一种可能

所以11 = 2 + 3 * 3

七.结论

由一道数学题牵引出多层循环嵌套,最终通过封装达到了我要的链式调用的效果,我是很满意的。这也是我第一次设计延迟计算,感觉强烈。如果新的场景需要用到延迟计算我想有了这次经验写起来会顺手许多。如果是需要多层for的算法题都可以比较方便的实现了。

你都看到这里了,为我点个赞吧,能说一下看法就更好了。

完整代码:

using system;
using system.linq;
using system.diagnostics;
namespace consoleapplication
{
class seat
{
static seat data = new seat();
public static void run()
{
//seat.run();
//return;
for (int a = ; a < ; a++)
{
if (data.isselected(, a)) //第局编号。如果已经被人坐了。
continue;
data.selected(, a, "a"); //第局编号。a坐a椅。
for (int b = ; b < ; b++)
{
if (data.isselected(, b))
continue;
data.selected(, b, "b");
for (int c = ; c < ; c++)
{
if (data.isselected(, c))
continue;
data.selected(, c, "c");
for (int d = ; d < ; d++)
{
if (data.isselected(, d))
continue;
data.selected(, d, "d");
for (int a = ; a < ; a++)
{
if (a == )
continue;
if (data.isselected(, a)) //第局编号
continue;
if (data.isselected(, a, "a")) //如果第局a坐了a椅
continue;
data.selected(, a, "a");
for (int b = ; b < ; b++)
{
if (b == )
continue;
if (data.isselected(, b))
continue;
if (data.isselected(, b, "b"))
continue;
data.selected(, b, "b");
for (int c = ; c < ; c++)
{
if (c == )
continue;
if (data.isselected(, c))
continue;
if (data.isselected(, c, "c"))
continue;
data.selected(, c, "c");
for (int d = ; d < ; d++)
{
if (d == )
continue;
if (data.isselected(, d))
continue;
if (data.isselected(, d, "d"))
continue;
data.selected(, d, "d");
data.count++; //可能的情况数加
console.writeline("{,} {}", data.count, data.current);
data.unselected(, d);
}
data.unselected(, c);
}
data.unselected(, b);
}
data.unselected(, a);
}
data.unselected(, d);
}
data.unselected(, c);
}
data.unselected(, b);
}
data.unselected(, a); //a起身(释放坐椅)
}
}
public static void run()
{
try("a",
() => try("b",
() => try("c",
() => try("d",
() => try("a",
() => try("b",
() => try("c",
() => try("d",
null
)
)
)
)
)
)
)
);
}
public static void try(string name, action action)
{
for (int i = ; i < ; i++)
{
if (data.isselected(, i))
continue;
data.selected(, i, name);
if (action == null)
{
console.writeline(data.current);
}
else
{
action();
}
data.unselected(, i);
}
}
public static void try(string name, action action)
{
for (int i = ; i < ; i++)
{
if (i == )
continue;
if (data.isselected(, i))
continue;
if (data.isselected(, i, name))
continue;
data.selected(, i, name);
if (action == null)
{
data.count++;
console.writeline("{,} {}", data.count, data.current);
}
else
{
action();
}
data.unselected(, i);
}
}
public seat()
{
seats[, ] = ".";
seats[, ] = ".";
}
private string[,] seats = new string[, ];
public void unselected(int game, int i)
{
debug.assert(game == && i != || game == && i != );
debug.assert(seats[game, i] != null);
seats[game, i] = null;
}
public void selected(int game, int i, string name)
{
debug.assert(game == && i != || game == && i != );
debug.assert(seats[game, i] == null);
seats[game, i] = name;
}
public bool isselected(int game, int a)
{
return seats[game, a] != null && seats[game, a] != ".";
}
public bool isselected(int game, int a, string name)
{
return seats[game, a] == name;
}
public string current
{
get
{
return string.format("{} {} {} {} {}-{} {} {} {} {}",
seats[, ], seats[, ], seats[, ], seats[, ], seats[, ],
seats[, ], seats[, ], seats[, ], seats[, ], seats[, ]);
}
}
public int count { get; set; }
}
class seat
{
static seat data = new seat(); //借用seat保存法的数据
seat parent { get; set; }
seat child { get; set; }
string name { get; set; }
action<seat> method { get; set; }
public seat(string name, seat parent, action<seat> method)
{
this.name = name;
this.parent = parent;
if (parent != null)
parent.child = this;
this.method = method;
}
/// <summary>
/// 耦合的版本
/// </summary>
public static void run()
{
new seat("a", null, me => me.try())
.t("b", me => me.try())
.t("c", me => me.try())
.t("d", me => me.try())
.t("a", me => me.try())
.t("b", me => me.try())
.t("c", me => me.try())
.t("d", me => me.try())
.p().start();
}
public seat t(string name, action<seat> method)
{
return new seat(name, this, method);
}
public seat p()
{
return new seat("print", this, me => me.print());
}
public void start()
{
var head = this.head;
head.method(head);
}
public seat head
{
get
{
if (null != this.parent)
return this.parent.head;
return this;
}
}
public void try()
{
for (int i = ; i < ; i++)
{
if (data.isselected(, i))
continue;
data.selected(, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(, i);
}
}
public void try()
{
for (int i = ; i < ; i++)
{
if (i == )
continue;
if (data.isselected(, i))
continue;
if (data.isselected(, i, this.name))
continue;
data.selected(, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(, i);
}
}
public void print()
{
data.count++;
console.writeline("{,} {}", data.count, data.current);
}
public override string tostring()
{
return this.name.tostring();
}
}
class computelink<t> where t : iseat
{
computelink<t> parent { get; set; } //父节点,即上一级节点
computelink<t> child { get; set; } //子节点,即下一级节点
t obj { get; set; } //当前节点对应的算法对象,可以看作业务对象
public computelink(t obj, computelink<t> parent, action<t> method)
{
if (obj == null)
throw new argumentnullexception("obj");
this.obj = obj;
this.obj.method = x => method((t)x);
if (parent != null)
{
this.parent = parent;
parent.child = this;
parent.obj.child = this.obj;
}
}
public static computelink<t> new(t obj, action<t> method)
{
return new computelink<t>(obj, null, method);
}
public computelink<t> do(t obj, action<t> method)
{
return new computelink<t>(obj, this, method);
}
public computelink<t> head //链表的头
{
get
{
if (null != this.parent)
return this.parent.head;
return this;
}
}
public void action() //启动(延迟的)整个计算
{
var head = this.head;
head.obj.method(head.obj);
}
}
interface iseat
{
iseat child { get; set; }
action<iseat> method { get; set; }
}
class seat : iseat
{
static seat data = new seat();
string name { get; set; }
public seat(string name)
{
this.name = name;
}
/// <summary>
/// 解耦的版本
/// </summary>
public static void run()
{
var sql = computelink<seat>
.new(new seat("a"), m => m.try())
.do(new seat("b"), m => m.try())
.do(new seat("c"), m => m.try())
.do(new seat("d"), m => m.try())
.do(new seat("a"), m => m.try())
.do(new seat("b"), m => m.try())
.do(new seat("c"), m => m.try())
.do(new seat("d"), m => m.try())
.do(new seat(""), m => m.print());
sql.action();
}
public action<iseat> method { get; set; }
public iseat child { get; set; }
public void try()
{
for (int i = ; i < ; i++)
{
if (data.isselected(, i))
continue;
data.selected(, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(, i);
}
}
public void try()
{
for (int i = ; i < ; i++)
{
if (i == )
continue;
if (data.isselected(, i))
continue;
if (data.isselected(, i, this.name))
continue;
data.selected(, i, this.name);
if (this.child != null)
{
this.child.method(this.child);
}
data.unselected(, i);
}
}
public void print()
{
data.count++;
console.writeline("{,} {}", data.count, data.current);
}
public override string tostring()
{
return this.name.tostring();
}
}
}

以上内容是小编给大家介绍的c#用链式方法表达循环嵌套的相关知识,希望对大家有所帮助!