摘要:
如题。 可以为以后统一的实体类操作做准备。 以下代码.net5调试通过。 实体类Person: using System; using System.Collections.Generic; using System.Text; using System.ComponentModel.DataAnn 阅读全文
摘要:
字典,即“键-值”对,形容可以像翻字典一样,根据索引找到内容。 c#用dictionary实现,java用map实现。 内部算法的关键就是快速查找键值,微软和甲骨文公司会去考虑。 用法例程如下: c#: var a = new Dictionary<string, string>(); a.Add( 阅读全文
摘要:
可以使用实现比较接口的方法,直接用sort排序。 如c#: class Person1:IComparable<Person1> { public string Xm { get; set; } public int Nl { get; set; } public int CompareTo(Per 阅读全文
摘要:
如题: 顺序队列,数组实现: public class Array_Queue { int[] a=new int[5]; int front=0,rear=0,count=0; public boolean isEmpty() { if(front==rear&&count==0) { retur 阅读全文