上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: #include #define MAXSIZE 101#define N 10typedef struct SeqList{ int data[MAXSIZE]; int length;}SeqList;void initList(SeqList *L);int Listinsert(Seq... 阅读全文
posted @ 2016-06-22 19:04 岳麓丹枫 阅读(225) 评论(0) 推荐(0) 编辑
摘要: #include #define MAXSIZE 101#define N 10typedef struct SeqList{ int data[MAXSIZE]; int length;}SeqList;voi... 阅读全文
posted @ 2016-06-22 19:04 岳麓丹枫 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #include #include #define N 10typedef struct Node{ int data; struct Node *next;}Node, *LinkedList;void initList(LinkedList *L);int ListInsert(Link... 阅读全文
posted @ 2016-06-22 19:00 岳麓丹枫 阅读(189) 评论(0) 推荐(0) 编辑
摘要: #include #include #define N 10typedef struct Node{ int data; struct Node *next;}Node, *LinkedList;void i... 阅读全文
posted @ 2016-06-22 19:00 岳麓丹枫 阅读(89) 评论(0) 推荐(0) 编辑
摘要: import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public cla... 阅读全文
posted @ 2016-06-22 17:49 岳麓丹枫 阅读(90) 评论(0) 推荐(0) 编辑
摘要: import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; public class SimpleDateFormatTest { public stat... 阅读全文
posted @ 2016-06-22 17:48 岳麓丹枫 阅读(861) 评论(0) 推荐(0) 编辑
摘要: (接上文) 七、一个小结 先对前面的内容,做一个小结。 我们已经知道,网络通信就是交换数据包。电脑A向电脑B发送一个数据包,后者收到了,回复一个数据包,从而实现两台电脑之间的通信。数据包的结构,基本上是下面这样: 发送这个包,需要知道两个地址: * 对方的MAC地址 ... 阅读全文
posted @ 2016-06-22 17:38 岳麓丹枫 阅读(128) 评论(0) 推荐(0) 编辑
摘要: (接上文)七、一个小结先对前面的内容,做一个小结。我们已经知道,网络通信就是交换数据包。电脑A向电脑B发送一个数据包,后者收到了,回复一个数据包,从而实现两台电脑之间的通信。数据包的结构,基本上是下面这样:发送这... 阅读全文
posted @ 2016-06-22 17:38 岳麓丹枫 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 打开CMD窗口win+R–>cmd根据端口号... 阅读全文
posted @ 2016-06-22 16:58 岳麓丹枫 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 打开CMD窗口win+R–>cmd根据端口号查找进程号netstat -nao|grep 端口号根据进程号得到进程名tasklist |findstr 进程号杀进程taskkill -f -t -im 进程名 阅读全文
posted @ 2016-06-22 16:57 岳麓丹枫 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 我们每天使用互联网,你是否想过,它是如何实现的?全世界几十亿台电脑,连接在一起,两两通信。上海的某一块网卡送出信号,洛杉矶的另一块网卡居然就收到了,两者实际上根本不知道对方的物理位置,你不觉得这是很神奇的事情吗?... 阅读全文
posted @ 2016-06-22 16:47 岳麓丹枫 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 我们每天使用互联网,你是否想过,它是如何实现的? 全世界几十亿台电脑,连接在一起,两两通信。上海的某一块网卡送出信号,洛杉矶的另一块网卡居然就收到了,两者实际上根本不知道对方的物理位置,你不觉得这是很神奇的事情吗? 互联网的核心是一系列协议,总称为"互联网协议"(Internet Prot... 阅读全文
posted @ 2016-06-22 16:46 岳麓丹枫 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 私有属性(私有变量和私有方法)实例属性(实例... 阅读全文
posted @ 2016-06-21 18:35 岳麓丹枫 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 私有属性(私有变量和私有方法)实例属性(实例变量和实例方法)静态属性(静态变量和静态方法) 阅读全文
posted @ 2016-06-21 18:34 岳麓丹枫 阅读(131) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2016-06-21 18:13 岳麓丹枫 阅读(66) 评论(0) 推荐(0) 编辑
摘要: java String.split()函数的用法分析栏目:Java基础 作者:admin 日期:2015-04-06 评论:0 点击: 3,195 次在java.lang包中有String.split()方法的原型是:public String[] split(String regex, int limit)split函数是用于使用特定的切割符(regex)来分隔字符串成一个字符串数组,函数返回是... 阅读全文
posted @ 2016-05-24 16:29 岳麓丹枫 阅读(205) 评论(0) 推荐(0) 编辑
摘要: #include #include void... 阅读全文
posted @ 2016-05-24 15:40 岳麓丹枫 阅读(108) 评论(0) 推荐(0) 编辑
摘要: #include #include void swap2(int a, int b);void swap(int* data, int m, int n);void printArray(int* data, int n);void bubble1(int* data, int n... 阅读全文
posted @ 2016-05-24 15:39 岳麓丹枫 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1. 修改配置文件/etc/network/interfacesroot@ubuntu:~# sudo gedit /etc/network/interfaces添加以下内容:auto eth0 #设置自动启动eth0接口iface eth0 inet static #配置静态IPaddress 192.168.11.88 #IP地址netmas... 阅读全文
posted @ 2016-05-20 13:30 岳麓丹枫 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 原文地址: https://github.com/ZhaoKaiQiang/AndroidDifficultAnalysis/blob/master/10.ART%E3%80%81JIT%E3%80%81AOT%E3%80%81Dalvik%E4%B9%8B%E9%97%B4%E6... 阅读全文
posted @ 2016-05-13 18:23 岳麓丹枫 阅读(202) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页