2010年3月9日
摘要: 公司要做进度曲线图,查了资料,看到ext可以实现,数据格式用json,返回形如代码extjsCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--varfields=['name','visits','views'];store=newExt.data.St... 阅读全文
posted @ 2010-03-09 09:44 孟凡龙 阅读(1073) 评论(0) 推荐(0)
摘要: //选择排序,从小到大public static int SelectSort(int[] a) {int count=0;// 计算时间复杂度,运行的次数int length = a.Length;int k= 0;int chan;//用来交换的中间变量for(int i=0;i<length;i++) //需要更换的位置i{k =i; //初始化最大值的下标for(int j=i;j&... 阅读全文
posted @ 2010-03-09 08:47 孟凡龙 阅读(892) 评论(0) 推荐(0)