循环cin的输出如何终止本文地址: http://blog.csdn.net/caroline_wendyEclipse中, 使用CDT编写C++代码时, 循环(while)cin输入程序, 需要终止, 如: while (cin>>i)
S.insert(i);Eclipse的终止方法是:首先在输入数据框内, 使用回车(Enter) -> 再终止(terminate)程序, 即输出结果....
分类:
系统相关 时间:
2014-06-18 07:51:45
阅读次数:
725
[1.1]使用库语言排序算法本文地址: http://blog.csdn.net/caroline_wendy如果不缺少内存, 可以直接使用库的排序算法.使用库语言的排序程序:C语言性能最好的算法是快速排序(quick sort).C++性能最好的是集合(set)的排序算法.C语言代码:/*
* main.cpp
*
* Created on: 2014.6.12
* Auth...
分类:
其他好文 时间:
2014-06-18 00:40:02
阅读次数:
269
命令模式(command pattern) 宏命令(macro command) 详解本文地址: http://blog.csdn.net/caroline_wendy参考: 命名模式(撤销): http://blog.csdn.net/caroline_wendy/article/details/31419101命令模式可以执行宏命令(macro command), 即多个命令的组合操作.具体方...
分类:
其他好文 时间:
2014-06-17 23:14:44
阅读次数:
324
命令模式(command pattern) 详解本文地址: http://blog.csdn.net/caroline_wendy命令模式: 将请求封装成对象, 以便使用不同的请求\队列\日志来参数化其他对象. 命令模式也支持可撤销操作.命令模式:调用者(Invoker);命令(Command): 可执行方法(execute), 具体命令(Concrete Command);接受者(Receive...
分类:
其他好文 时间:
2014-06-17 22:53:01
阅读次数:
359
命令模式(command pattern) 多命令 详解本文地址: http://blog.csdn.net/caroline_wendy参考命令模式: http://blog.csdn.net/caroline_wendy/article/details/313799771. 多命令, 把未使用的命令, 初始化为空对象(NoCommand), 根据参数(slot), 选择输出命令./**
*...
分类:
其他好文 时间:
2014-06-17 22:42:59
阅读次数:
253
命令模式(command pattern) 撤销(undo) 详解本文地址: http://blog.csdn.net/caroline_wendy参考命令模式: http://blog.csdn.net/caroline_wendy/article/details/31379977命令模式可以用于执行撤销(undo)操作.具体方法:1. 对象类中需要保存状态, 如level.package co...
分类:
其他好文 时间:
2014-06-17 22:19:07
阅读次数:
229
Internet缓存文件本文地址: http://blog.csdn.net/caroline_wendy互联网上所有的使用记录, 图片, 音乐, 视频, 都会缓存在本地.1. 位置: IE->工具->Internet选项->设置->查看文件2. 在搜索框中, 搜索需要扩展名, 即可发现文件....
分类:
Web程序 时间:
2014-06-17 18:44:05
阅读次数:
224
使用copy函数打印容器(container)元素本文地址: http://blog.csdn.net/caroline_wendyC++可以使用copy函数输出容器(container)中的元素, 可以代替for循环.头文件: #include #include 格式: std::copy(cont.begin(), cont.end(),std::ostream_iterator(std::c...
分类:
编程语言 时间:
2014-06-17 16:40:32
阅读次数:
446
归并排序(merging Sort) 详解 及 代码本文地址: http://blog.csdn.net/caroline_wendy归并排序(merging sort): 包含2-路归并排序, 把数组拆分成两段, 使用递归, 将两个有序表合成一个新的有序表.归并排序(merge sort)的时间复杂度是O(nlogn), 实际效果不如快速排序(quick sort)和堆排序(heap sort)...
分类:
其他好文 时间:
2014-06-17 16:19:56
阅读次数:
232
复制容器(container)的元素至另一个容器本文地址: http://blog.csdn.net/caroline_wendyC++复制容器(container)元素, 可以使用标准库(STL)的copy()和copy_n()函数.函数样式: OutputIterator copy (InputIterator first, InputIterator last, OutputIterator...
分类:
编程语言 时间:
2014-06-17 16:06:13
阅读次数:
333