1. 指向数组的指针 balance和ptr的区别是ptr是变量,balance是常量: 2. 指针作为函数返回值 根据菜鸟教程:http://www.runoob.com/cplusplus/cpp-return-pointer-from-functions.html “C++ 不支持在函数外返回 ...
分类:
编程语言 时间:
2017-11-02 14:25:48
阅读次数:
131
按照安装文档操作; 主要讲述在这期间遇到的问题: 1.代码上传到服务器速度相当慢,在教学楼大概8个小时,在宿舍需要12个小时; 2.开启exec函数,首先需要在服务器找到php.ini(也可百度,关键字:php.ini删除exec),然后 disable_functions = exec,syste ...
分类:
其他好文 时间:
2017-11-01 22:12:17
阅读次数:
146
批量分发脚本内容 #!/bin/bash. /etc/rc.d/init.d/functions # 创建密钥\rm ~/.ssh/id_rsa* -fssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" -q# 分发公钥for ip in 31 41 8dosshpas ...
分类:
系统相关 时间:
2017-11-01 16:29:00
阅读次数:
207
Write a program to find the topological order in a digraph. Format of functions: bool TopSort( LGraph Graph, Vertex TopOrder[] ); where LGraph is defi ...
分类:
其他好文 时间:
2017-10-30 01:31:59
阅读次数:
435
out 可以写在里面了 Local functions, 终于有了, 写习惯 js 的我超爱 getter setter ...
Python之调用函数 Python内置了很多有用的函数,我们可以直接调用。 要调用一个函数,需要知道函数的名称和参数,比如求绝对值的函数 abs,它接收一个参数。 可以直接从Python的官方网站查看文档: http://docs.python.org/2/library/functions.ht ...
分类:
编程语言 时间:
2017-10-27 11:31:33
阅读次数:
260
系统函数使用,自定义函数,函数的参数。 一、系统函数 Python内置很多函数供开发这调用,如abs()求绝对值。help()查看某个函数的使用等。 调用系统函数如下: 如下是摘自官方网站一张系统函数表格:https://docs.python.org/3/library/functions.htm ...
分类:
编程语言 时间:
2017-10-26 20:59:46
阅读次数:
287
Write the routines to do a "percolate up" and a "percolate down" in a binary min-heap. Format of functions: void PercolateUp( int p, PriorityQueue H ) ...
分类:
其他好文 时间:
2017-10-26 19:04:24
阅读次数:
1388
https://stackoverflow.com/questions/6770898/unknown-escape-sequence-error-in-go 例如以上链接中的错误 编译 g++ -std=c++14 -Wall -O3 -finline-functions -lboost_rege ...
分类:
其他好文 时间:
2017-10-23 23:03:05
阅读次数:
238
测试代码的覆盖率要求80%以上 Statements: 语句覆盖率,执行到每个语句; Branches: 分支覆盖率,执行到每个if代码块; Functions: 函数覆盖率,调用到程式中的每一个函数; Lines: 行覆盖率, 执行到程序中的每一行。 Statements: 语句覆盖率,执行到每个 ...
分类:
其他好文 时间:
2017-10-23 21:49:26
阅读次数:
442