摘要: public class Search { /**1.顺序查找 时间复杂度为:O(n) */ public static int SequenceSearch(int[] a, int x) { for(i... 阅读全文
posted @ 2018-03-24 14:32 VictorChang 阅读(121) 评论(0) 推荐(0) 编辑