利用委托实现冒泡法
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace BubbleSort{ delegate bool CompareOp(object lhs, object rhs); class BubbleSort { static public void Sort(object[] sortArray, CompareOp getMethod) { for(int i=0;i<sortArray.Len... 阅读全文
posted @ 2010-08-03 21:33 java课程设计 阅读(155) 评论(0) 推荐(0) 编辑