摘要: 每次循环把最小的值往前移C++代码:Sorter.hpp#ifndef _Algorithm_Sorter_H_#define _Algorithm_Sorter_H_template class Sorter{public: static void selectionSort(Item a[... 阅读全文
posted @ 2015-09-29 20:15 Master HaKu 阅读(301) 评论(0) 推荐(0) 编辑
摘要: UDP provides an end-to-end service different from that of TCP.In fact, UDP performs only two functions:(1) it adds another layer of addressing (ports)... 阅读全文
posted @ 2015-09-29 16:22 Master HaKu 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 1. 预定义函数对象C++标准库内含许多预定义的函数对象,也就是内置的函数对象。你可以充分利用他们,不必自己费心去写一些自己的函数对象。要使用他们,你只要包含如下头文件#include eg:set> coll; // sort elements with > coll; // sort eleme... 阅读全文
posted @ 2015-09-29 14:49 Master HaKu 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 1. 赋值和显示采用$(info $(variable_name))显示内部变量eg:FOO=bar$(info $(FOO))运行结果:#: makebar2. 从命令行外部改变BUILD_DEBUG := yes.PHONY: allall: @echo BUILD_DEBUG is $(... 阅读全文
posted @ 2015-09-29 11:28 Master HaKu 阅读(323) 评论(0) 推荐(0) 编辑