摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-10-18 16:31 caocx 阅读(169) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-10-16 22:38 caocx 阅读(3512) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-10-16 21:39 caocx 阅读(2163) 评论(0) 推荐(1) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-10-15 17:15 caocx 阅读(363) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>小狗</title> <script type="text\javascript"> wind 阅读全文
posted @ 2016-09-26 17:08 caocx 阅读(809) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html><head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <script type="text/javascript"> window.onload=function( 阅读全文
posted @ 2016-09-26 13:20 caocx 阅读(5441) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-09-23 18:16 caocx 阅读(133) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" cont 阅读全文
posted @ 2016-09-23 10:46 caocx 阅读(4518) 评论(0) 推荐(0) 编辑
摘要: /**算法:选择排序1,从当前未排序的正数中找一个最小的整数,将它放在已排序的整数列表的最后2.要点:选择排序选最小的,往左边选*/ #include <stdio.h>void SelectionBort(int *a,int n);int main(){ int k; int a[10]={2, 阅读全文
posted @ 2016-08-23 17:58 caocx 阅读(203) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>void BubbleSort(int *a,int n);int main(void){ int arr[10] = {2,4,6,8,0,1,3,5,7,9}; int k; for(k=0;k<10;k++){ if(k==9) printf("%d\n", 阅读全文
posted @ 2016-08-23 11:06 caocx 阅读(190) 评论(0) 推荐(0) 编辑