摘要: http://www.cppblog.com/cuijixin/archive/2008/03/14/44480.html 是不是还对用c怎么实现网络编程感到神秘莫测阿,我们这里就要撕开它神秘的面纱,呵呵。一起来:诶,不要着急,我们先来介绍一些网络程序的主要执行过程,主要是便于大家更好的理解下面的程 阅读全文
posted @ 2019-07-06 11:27 xjyxp01 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 解读I/O多路复用技术 https://www.jianshu.com/p/db5da880154a 项目开源 http://c.tedu.cn/workplace/263828.html 阅读全文
posted @ 2019-07-06 10:33 xjyxp01 阅读(147) 评论(0) 推荐(0) 编辑
摘要: //program 3-1 #include #include #include using namespace std; const int M=10000; int x,n,i; int s[M]; int BinarySearch(int n,int s[],int x) { int low=0,high=n-1; //low指向有序数组的第一个元素,high指向有序数组的最后一... 阅读全文
posted @ 2019-07-05 22:11 xjyxp01 阅读(355) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; const int M=1000005; struct three{ double w;//每个宝物的重量 double v;//每个宝物的价值 double p;;//性价比 }s[M]; bool cmp(three a, three b) { return a.p>b.p;... 阅读全文
posted @ 2019-07-05 21:16 xjyxp01 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 检索单个列 上述语句利用SELECT语句从Products表中检索一个名为pro_name的列。所需的列名需要写在SELECT关键词之后,FROM关键字指出从哪个表中检索数据。 检索多个列 检索所有列 检索不同的值 限制结果 阅读全文
posted @ 2019-07-05 17:07 xjyxp01 阅读(132) 评论(0) 推荐(0) 编辑
摘要: //program 2-1 #include #include const int N=1000005; using namespace std; double w[N]; //古董的重量数组 int main() { double c; int n; cin>>c>>n; for(int i=0; i>w[i]; //输入每个物品重量 } ... 阅读全文
posted @ 2019-07-05 16:14 xjyxp01 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 在一个二维数组中(每个一维数组的长度相同),每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。 阅读全文
posted @ 2019-07-05 11:06 xjyxp01 阅读(152) 评论(0) 推荐(0) 编辑
摘要: Q:Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are+,-,*,/. Each operand may be an integer or another exp 阅读全文
posted @ 2019-07-05 10:49 xjyxp01 阅读(205) 评论(0) 推荐(0) 编辑
摘要: https://www.nowcoder.com/discuss/203082?type=0&order=0&pos=69&page=1 https://www.nowcoder.com/discuss/193598 https://www.nowcoder.com/discuss/164781 h 阅读全文
posted @ 2019-07-04 11:25 xjyxp01 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 原 Linux网络编程——网络协议入门 2015年04月21日 14:11:40 lianghe_work 阅读数 4675 我们每天使用互联网,你是否想过,它是如何实现的? 全世界几十亿台电脑,连接在一起,两两通信。北京的某一块网卡送出信号,深圳的另一块网卡居然就收到了,两者实际上根本不知道对方的 阅读全文
posted @ 2019-06-30 10:49 xjyxp01 阅读(128) 评论(0) 推荐(0) 编辑