数据结构
程序员查理
这个作者很懒,什么都没留下…
展开
-
扫雷算法(C#版)
本人在课堂作业写的一个扫雷算法程序,调试运行正常结果正确 是用C#语言写的,分享出来供大家参考 ^_^ 希望感兴趣的朋友可以提出意见共同讨论~ using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication_SL{ class Program原创 2010-05-18 22:33:00 · 1174 阅读 · 0 评论 -
斐波那契数列算法实现
static private int fbnlList(int n) { if (n == 1 || n == 2) return 1; return fbnlList(n - 1) + fbnlList(n - 2); }原创 2010-05-18 22:49:00 · 544 阅读 · 0 评论