《编程之美——微软技术面试心得》的C#实现
崔鹏飞
但行好事 莫问前程
展开
-
《编程之美——微软技术面试心得》的C#实现---电梯调度问题解法一
class Program { static void Main(string[] args) { int[] person = { 0,1,1,1,1,1,15};//总共六层楼,没有0层 int needed = 0; int min = 0;原创 2008-09-11 00:22:00 · 2652 阅读 · 4 评论 -
cpu占用率为正弦曲线(C#实现)基本照抄书上的C++
internal值根据配置调整 using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { static void Mai原创 2008-09-17 11:39:00 · 1387 阅读 · 0 评论 -
编程之美---1的个数C#笨(效率低)方法实现
编程之美---1的个数C#笨(效率低)的方法实现class Program { static void Main(string[] args) { Program p = new Program(); Console.WriteLine(p.count_1_in_a_bounch_of_n原创 2008-09-18 00:28:00 · 1130 阅读 · 0 评论 -
编程之美---阶乘末尾有几个"零"?(C#实现)
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { delegate long DoMath(long num);原创 2008-09-18 21:57:00 · 1548 阅读 · 1 评论