转载c
Wen_de_ll
编程 未来的程序猿。。。。。。
展开
-
linux下C语言socket网络编程简例
转自 http://blog.csdn.net/kikilizhm/article/details/7858405 这里给出在linux下的简单socket网络编程的实例,使用tcp协议进行通信,服务端进行监听,在收到客户端的连接后,发送数据给客户端;客户端在接受到数据后打印出来,然后关闭。程序里有详细的说明,其中对具体的结构体和函数的实现可以参考其他资料。 程序说明: 这里服务转载 2013-11-12 19:57:21 · 731 阅读 · 0 评论 -
求1+2+3+...+n,要求不能使用乘除法,for,while,if,else,switch,case等关键字以及条件判断语句
方法一:利用构造函数和静态数据成员 #include using namespace std; class Temp { public: Temp() { ++N; Sum+=N; } static void Reset() { N=0; Sum=0; } static int GetSum() { return Sum; } private: s转载 2014-07-16 09:56:22 · 628 阅读 · 0 评论 -
二分实现
In Quicksort algorithm implementation, the partition method is the key to make average performance as O(nlgn). As written in different algorithm textbook, it has different implementations, in many dom转载 2014-07-27 13:47:18 · 371 阅读 · 0 评论