- 博客(5)
- 收藏
- 关注
转载 我的Base64编码,去掉等号特殊字符
1 /// <summary>自定义包含指定字符的base64工具</summary> 2 internal static class Base64Helper 3 { 4 static readonly string base64Table = "ABCDEFGHIJKLMNOPQRSTUVWXY...
2013-04-04 21:26:00
3379
转载 电路或非门公式化简与程序逻辑
Y=(A+B)'=A'*B' Y=(A*B)'=A'+B' Y=AB+BC=(A+C)*B 等等,例子:if((A&&B)||(B&&C))=if((A||C)&&B)转载于:https://www.cnblogs.com/softcreator/articles/softcreator_8627557.html...
2013-04-04 21:25:00
3736
转载 简单Hashtable实现
1 public class Map<TKey, TValue> 2 { 3 int listindex = 0; 4 5 const int HASHSIZE = 100;//容量最大100 6 Entry[] entries = new Entry[HASHSIZE]; 7 ...
2013-04-04 21:24:00
133
转载 俄罗斯方块
using System;using System.Drawing;using System.Windows.Forms;namespace MyGame{ public delegate void KillWoodEventHandler(); public interface IGameBo { int[,]...
2013-04-04 21:22:00
144
转载 重现死锁,数据库或程序代码类似
//方式一,写交替死锁,Test1,Test2不会被输出using System.Threading;using System;public static class Program{ static object obj1 = new object(); static object obj2 = new object(); sta...
2013-04-04 21:18:00
124
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人