原与紫书。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
struct Point
{
int x, y;
Point( int x=0, int y=0 ) : x(x), y(y){}...
分类:
其他好文 时间:
2014-08-11 18:04:12
阅读次数:
284
A synchronization point at which threads can pair and swap elements within pairs. Each thread presents some object on entry to the
exchange method, matches with a partner thread, and receives its par...
分类:
其他好文 时间:
2014-08-11 17:57:12
阅读次数:
303
基本小圆覆盖模板题#include #include #include using namespace std;int X,Y; int n;const double eps=0.00000001;struct point{ double x,y;}p[550]; struct Circle{...
分类:
其他好文 时间:
2014-08-11 14:25:02
阅读次数:
228
WDS是无线分布式系统(Wireless Distribution System)的简称可以利用无线路由器的wds功能进行无线扩展无线连接两个接入点(AP,Acess Point)的协议无线桥接只是WDS的一种常用应用模式,而另外一种常用的模式则是无线中继模式无线桥接通常指的是一对一的情况,桥接两端...
分类:
其他好文 时间:
2014-08-11 11:52:32
阅读次数:
186
/**
* 功能:按值传递,拷贝复制过去
* 时间:2014年7月31日14:51:45
* 作者:cutter_point
*/
#include
using namespace std;
void fun1(int x)
{
cout<<" x= "<<x<<endl;
x=7;
cout<<" x= "<<x<<endl;
}
int main()
{...
分类:
编程语言 时间:
2014-08-11 10:12:17
阅读次数:
215
/**
* 功能:全局变量的使用
* 时间:2014年8月11日09:34:26
* 作者:cutter_point
*/
#include
using namespace std;
int cutter_point;
void fun1();
int main()
{
cutter_point=94;
cout<<"cutter_point:"<<cutter_poin...
分类:
编程语言 时间:
2014-08-11 10:12:08
阅读次数:
189
/**
* 功能:全局变量的使用
* 时间:2014年7月31日15:14:30
* 作者:cutter_point
*/
#include
using namespace std;
int cutter_point;
void fun1();
int main()
{
cutter_point=94;
cout<<"cutter_point:"<<cutter_poin...
分类:
编程语言 时间:
2014-08-11 10:10:52
阅读次数:
150
HDU 4932 BestcoderProblem DescriptionThere are N point on X-axis . Miaomiao would like to cover them ALL by using segments with same length.There ar.....
分类:
其他好文 时间:
2014-08-11 10:05:42
阅读次数:
203
Problem Description
There are N point on X-axis . Miaomiao would like to cover them ALL by using segments with same length.
There are 2 limits:
1.A point is convered if there is a segments T , ...
分类:
其他好文 时间:
2014-08-11 02:56:41
阅读次数:
229
/**
* 功能:内存存放地址的地方
* 时间:2014年7月31日09:50:10
* 作者:cutter_point
*/
#include
using namespace std;
//全局变量的存放地点
int dog, cat, bird, fish;
//函数存放内存地点
void f(int pet)
{
cout<<"pet id number: "<<pet<<e...
分类:
编程语言 时间:
2014-08-10 13:05:40
阅读次数:
249