上一页 1 ··· 8 9 10 11 12
摘要: 复合类型:基于其他类型定义的类型。引用和指针属于其中两种。 C++11:新增右值引用。(一般所说的引用为左值引用) 新增字面值:nullptr 初始化指针 引用 引用即别名:是为一个已经存在的对象起的别名。 绑定(Bind):定义引用时,程序将引用和它的初始值绑定在一起,而不是拷贝初始值给引用。 操 阅读全文
posted @ 2018-04-16 10:31 番茄玛丽 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 史上最全Vim快捷键键位图(入门到进阶) VIM 三种模式:命令模式(Command mode) i 切换到输入模式 x 删除当前光标所在处字符 : 切换到底线命令模式:在最底一行输入命令 输入模式(Insert mode) 底线命令模式(Last line mode) 阅读全文
posted @ 2018-04-03 23:07 番茄玛丽 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 1.“\n”和endl的区别? std::endl 输出一个换行符,并立即刷新缓冲区。 对于有输出缓冲的流(例如cout、clog),如果不手动进行缓冲区刷新操作,将在缓冲区满后自动刷新输出。 对于无缓冲的流(例如标准错误输出流cerr),刷新是不必要的,可以直接使用 '\n'。 2. auto和d 阅读全文
posted @ 2018-04-03 15:25 番茄玛丽 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 总原则:能用向量矩阵解决的就不用for循环。 1. 匿名函数 @定义一个函数或变量,用括号里的字母作为变量名字。 标准格式是: fhandle=@(arglist)express (1)express是一个matlab变量表达式,比如:x+x.^2,sin(x)等(2)argilst是参数列表;(3 阅读全文
posted @ 2017-12-22 13:25 番茄玛丽 阅读(345) 评论(0) 推荐(0) 编辑
摘要: Concepts: 1)combination of random and deterministic approaches 随机和确定性方法的组合 2)the concept of clustering 聚类的概念 3)the concept of a systematic evolution o 阅读全文
posted @ 2017-10-28 21:25 番茄玛丽 阅读(523) 评论(0) 推荐(0) 编辑
摘要: SFLA=SCE+PSO SCE: shuffled complex evolution algorithm(Duan 1992) = CRS(controlled radom search Price 1978)+Competive evolution(Holland 1975)+shufflin 阅读全文
posted @ 2017-09-19 20:04 番茄玛丽 阅读(8051) 评论(0) 推荐(0) 编辑
摘要: The first use of the term memetic algorithms in the computing literature appeared in work by Moscato (1989). He presented a heuristic that combined sim 阅读全文
posted @ 2017-09-19 16:46 番茄玛丽 阅读(1182) 评论(0) 推荐(0) 编辑
摘要: In mathematical programming, a heuristic refers to a procedure that seeks a solution to an optimization problem but does not guarantee that it will fin 阅读全文
posted @ 2017-09-19 13:52 番茄玛丽 阅读(782) 评论(0) 推荐(0) 编辑
摘要: 相关学习网站: https://alistapart.com/ https://www.smashingmagazine.com/ 参考书: 《完美网页的视觉设计法则》The Principles of Beautiful Web Design, SitePoint, 2010 ———— Jason 阅读全文
posted @ 2017-07-17 15:48 番茄玛丽 阅读(135) 评论(0) 推荐(0) 编辑
摘要: Q:什么是html? A:Hypertext Markup Language 超文本标记语言。html是一个纯文本文件,用标签来描述文字的语义,这些标签在浏览器看不到,所以是“超文本”,所以是“超文本标记语言”。 HTML标签是分等级的,HTML将所有的标签分为两种:容器级、文本级。 容器级的标签, 阅读全文
posted @ 2017-07-17 12:03 番茄玛丽 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12