Loading

随笔分类 -  0x1001 算法

摘要:斐波那契数列使用 var zero2 = new Febonacci(); var num = zero2.Shell(10); Debug.WriteLine(num); zero2.Main(14); zero2.Febon(155); 斐波那契数列 public class Febonacci 阅读全文
posted @ 2025-03-02 21:29 androllen 阅读(2) 评论(0) 推荐(0)
摘要:public class SelectionSort { public static int[] Sort(int[] array) { int[] copyArray = new int[array.Length]; Array.Copy(array, copyArray, array.Lengt 阅读全文
posted @ 2025-03-02 21:25 androllen 阅读(2) 评论(0) 推荐(0)