算法
文章平均质量分 77
tanliyoung
这个作者很懒,什么都没留下…
展开
-
C#实现常用的数据结构(一):链表
C#实现常用的数据结构(一):链表节点定义及其链表实现,代码如下://class ListNode and class list definitions.using System;namespace LinkedListLibrary{ /// /// class to represent one node in a list /// class ListNode { p转载 2007-06-20 11:00:00 · 1071 阅读 · 0 评论 -
单链表
using System;namespace ConsoleApplication23{ public class Node { private object data; private Node next; public object Data { get { return data; } set { data = value; } } pub原创 2007-06-21 10:59:00 · 606 阅读 · 0 评论 -
数据结构与算法(C#实现)系列---二叉树
using System;using System.Collections; namespace DataStructure{ /// /// BinaryTree 的摘要说明。 /// public class BinaryTree:NaryTree { //构造二叉空树 publ转载 2007-06-20 11:14:00 · 720 阅读 · 0 评论 -
C#排序
using System;namespace BubbleSorter{ public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1;转载 2007-06-02 11:18:00 · 764 阅读 · 0 评论 -
Data Structures and Algorithms
C#描述的数据结构和算法分析 http://www.brpreiss.com/books/opus6/转载 2007-06-19 10:19:00 · 1039 阅读 · 0 评论 -
贴上我珍藏的微软测试工程师面试题目
面试记录:1.面试人:一个女生,年纪20多岁,不到30面试过程:a. 先拿出一个已经出好的题目,让冶喑蹋饽渴鞘中吹模⑽奶饽浚饽渴且笤谝桓鍪橹姓页鑫ㄒ坏淖址R蟠蟾?0分钟。例如:字符串”aabbcddef”,要求输出”abcdef”我开始题目意思理解错了,写的程序有错误,经过提示,重新写了一遍。 :(b. 编程题目做完后,讨论了题目中出现的错误和修改方法。c.转载 2007-06-19 13:22:00 · 3716 阅读 · 0 评论 -
如何使用C#写.net编译器?
看到一篇文章,讲解如何利用C#编写.net编译器,觉得很有意思,先贴上来,以后慢慢研究。 Create a Language Compiler for the .NET FrameworkJoel PobarThis article discusses: Language definition The phases of a compiler Th转载 2009-03-05 12:34:00 · 1515 阅读 · 2 评论 -
算法题目汇集
非常有用的101道算法部分常见面试题 1. Given a rectangular (cuboidal for the puritans) cake with a rectangular piece removed (any size or orientation), how would you cut the remainder of the cake into two equal halve转载 2009-03-05 12:27:00 · 900 阅读 · 0 评论 -
算法的趣味题
看到一些讲解算法的趣味题,可以研究一下。http://www.kuqin.com/tiku/c100/ C/C++语言程序百例学习指南 100.数字移动 99.超长正整数的加法 98.八皇后问题 97.满足特异条件的数列 96.选美比赛 95.将阿拉伯数字转换为罗马数字 94.兎子产子(斐波那契数列)转载 2009-03-05 13:01:00 · 1255 阅读 · 0 评论