摘要: public class Bubble { // 冒泡排序函数1 public static void bubbleSort1(Comparable []data){ int position,scan; Comparable temp; for(position = data.length-1;p 阅读全文
posted @ 2012-12-28 22:31 栗子·无限意志 阅读(169) 评论(0) 推荐(0) 编辑
摘要: static long GetNPrime(int count)//返回第count个素数 { List<long> list = new List<long>();//顺序存放素数 long startNumber = 1; while (list.Count < count) { if (IsP 阅读全文
posted @ 2012-12-28 21:21 栗子·无限意志 阅读(598) 评论(0) 推荐(0) 编辑
摘要: Android应用程序四大组件 Android应用程序四大组件 在Android中,一个应用程序可以使用其它应用程序的组件,这是Android系统一个非常重要的特性。例如,你编写的应用程序需要显示一个可以滚动的图片列表,如果其它某个应用程序已经开发了具有此功能的组件并对外发布了此组件以使其它应用程序 阅读全文
posted @ 2012-12-28 21:19 栗子·无限意志 阅读(245) 评论(0) 推荐(0) 编辑