Can you bind arrow functions? https://stackoverflow.com/questions/33308121/can-you-bind-arrow-functions You cannot "rebind" an arrow function. It will ...
分类:
其他好文 时间:
2019-03-21 09:13:12
阅读次数:
161
https://pintia.cn/problem-sets/994805046380707840/problems/994805055176163328 对于在中国大学MOOC(http://www.icourse163.org/ )学习“数据结构”课程的学生,想要获得一张合格证书,总评成绩必须达 ...
分类:
其他好文 时间:
2019-03-19 01:22:17
阅读次数:
171
前情提要:蒟蒻于2019-1-29开始学习数据结构,开此系列作为学习后的整理。 当然,蒟蒻的学习主要还是来自[MOOC](https://www.icourse163.org/?from=study)上的数据结构一课 数据结构没有标准定义(相关定义网上有很多),但它与算法有着密切联系 在听课后,主要 ...
分类:
其他好文 时间:
2019-03-16 19:14:48
阅读次数:
183
参考资料: https://www.icourse163.org/course/ISCAS-1002580008?tid=1003713012 //中国大学MOOC https://www.bilibili.com/video/av23401751 //B站 《ROS操作系统入门讲义》PDF下载 链 ...
分类:
其他好文 时间:
2019-03-14 00:46:09
阅读次数:
467
灯塔(LightHouse) 题目见https://dsa.cs.tsinghua.edu.cn/oj/problem.shtml?id=1144 最近复习DSA,便在看邓老师的mooc,顺便做做配套的题目,挺有意思的。 一、题目分析 简述思路:两次排序,第一次是对结构体的x坐标进行排序,第二次是计 ...
分类:
编程语言 时间:
2019-03-03 21:03:48
阅读次数:
242
```C++ include int main(){ int result = 0,thissum = 0, N, digit; scanf("%d", &N); for(int i = 0; i result) result = thissum; if(thissum ...
分类:
其他好文 时间:
2019-02-24 01:03:14
阅读次数:
180
```C++ include int main(){ int n, flag = 1, first_flag = 1, positive_flag = 0; int sum = 0, summax = 0; int st = 0, end = 0, st_max = 0, end_max = 0, ...
分类:
其他好文 时间:
2019-02-24 00:54:19
阅读次数:
163
```C++ #include #include #define MAXSIZE 10 #define NotFound 0 typedef int ElementType; typedef int Position; typedef struct LNode *List; struct LNode... ...
分类:
编程语言 时间:
2019-02-24 00:41:51
阅读次数:
190
1 #include 2 #include 3 #define MAXSIZE 10 4 #define NotFound 0 5 typedef int ElementType; 6 typedef int Position; 7 typedef struct LNode *List; 8 str... ...
分类:
编程语言 时间:
2019-02-23 18:23:03
阅读次数:
280
聊聊本文内容 之前讲过php简单的内容,但是原生永远是不够看的,这次用框架做一些功能性的事情。 但是公司用自己的框架不能拿出来,用了用一些流行的框架比如tp,larveral之类的感觉太重,CI也不顺手,于是整体框架就用之前在幕客上看的这个,顺便自己手动改吧改吧,看哪不爽改哪里,一个精简的框架就出来 ...
分类:
Web程序 时间:
2019-02-22 21:31:10
阅读次数:
203