上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 原文地址:http://blog.csdn.net/huangxy10/article/details/8120106 未验证 阅读全文
posted @ 2016-08-13 14:45 C/C++/Python/Java 阅读(888) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////////////// // // ping百度 拿到一个IP 浏览器发送一个get请求 // 百度的服务器接收到了请求 返回一些东西给你 // 返回的东西就是我们想要的 // /////////////////////////////////////////////////////... 阅读全文
posted @ 2016-08-12 17:05 C/C++/Python/Java 阅读(458) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-08-11 14:33 C/C++/Python/Java 阅读(8) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" #include <Windows.h> typedef struct tagStudent { int id; char szName[128]; tagStudent * pNext; }_STUDENT_ST; // 初始化链表头节点 _STUDENT_ 阅读全文
posted @ 2016-08-04 15:23 C/C++/Python/Java 阅读(235) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////【 链表 】//////////////////////////////////////////////////////////////// // 1.链表的概念 : 若干个对象, 用指针串联起来; // 2.链表的实现 : 必须在struct中添加一个指针作为成员, 该指针指向一个对象 // 如果该指针为NULL, 表示它是最... 阅读全文
posted @ 2016-08-01 16:47 C/C++/Python/Java 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { /////////////////////////////////////////////////////////////////////////////////////////////////// // 指针常量 : 数据类型 * const p // 1. 只能在初始... 阅读全文
posted @ 2016-07-31 11:00 C/C++/Python/Java 阅读(178) 评论(0) 推荐(0) 编辑
摘要: #include "stdafx.h" int _tmain(int argc, _TCHAR* argv[]) { /////////////////////////////////////////////////////////////////////////////////////////////////// // 常量指针: const 数据类型 *p // 1. P: 可读 ... 阅读全文
posted @ 2016-07-31 10:58 C/C++/Python/Java 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1 // Server.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <iostream> 6 #include <winsock2.h> 7 8 #pragma comment(lib, "ws2_32.lib") // 阅读全文
posted @ 2016-07-07 17:04 C/C++/Python/Java 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://hsw625728.blog.163.com/blog/static/3957072820091116114655254/ 一.各种容器的特性 vector 典型的序列容器,C++标准严格要求次容器的实现内存必须是连续的,唯一可以和标准C兼容的stl容器,任意元素的读取、修改 阅读全文
posted @ 2016-06-05 13:06 C/C++/Python/Java 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 原文地址:http://www.cnblogs.com/duzouzhe/archive/2010/01/12/1645191.html STL的容器可以分为以下几个大类: 一:序列容器 : vector, list, deque, string. 二 : 关联容器 : set, multiset, 阅读全文
posted @ 2016-06-05 07:53 C/C++/Python/Java 阅读(697) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页