独特蜜蜂

文章
5
资源
0
加入时间
2年10月18天

JS继承复习20190110

1.原型链继承function Parent() { this.parentValue = 'parent'}Parent.prototype.go = function() {}function Son() { this.sonValue = 'son'}Son.prototype = new Parent()Son.prototype.say = functi...

紫书上的例题,关于BFS

不知道该说些啥#include#include#include#includeusing namespace std;struct Node { int r, c, dir; // 站在(r,c),面朝方向dir(0~3分别表示N, E, S, W) Node(int r=0, int c=0, int dir=0):r(r),c(c),dir(dir) {}};co