#include <iostream> using namespace std; //循环队列(少用一个空间)长度 #define M (8+1) typedef struct node { int index; int nextIndex; } Node; Node* init(int front, int len) { //限制少用一个空间,没有限制少用一个下标,所以front>M-1 if (front > M - 1 || len > M - 1) { return
一直对函数作为参数被传递进另外一个函数理解的不是很清除.先看下这段代码吧: function test(fn){ var bar = 1; fn(); } var bar = 99; test(function foo(){ console.log(bar); }); console.log(foo); 先说下结果为99和foo is not defined.在<你不知道的JavaScript>一书中有这么一句话:无论函数在哪里被调用,也无论它如何被调用,它的词法作用域都只由函数被声明时所处的
变量赋值一种是字符串格式化,一种是通过format的方式 1.字符串格式化 s="i am %s,age %d"%('Jasper',23)print(s) 打印输出:i am Jasper,age 23 2.format格式化 s="i am {name},age {age}".format(name='jasper',age='23')print(s) 或 s2="i am {0},age {1}".format('jasper','23')
1. 用数组元素作函数实参 #include <iostream> using namespace std; int max_value(int x, int max) { return max > x ? max : x; } int main() { , y = ; ,,,},{,,,},{,,,}}; ][], i, j, ix, iy; ; i < x; i ++) { ; j < y; j++) { max = max_value(a[i][j],max); if(