摘要:
Distributed systems: for fun and profit (http://book.mixu.net/distsys/index.html) 链接:https://www.zhihu.com/question/23645117/answer/124708083 这篇文章主要试图回答以下两个个问题: 1. 近些年分布式系统领域都在做些什么。 2. 为什么现在投入分... 阅读全文
摘要:
微软数据开发技术的前世今生 (Microsoft Data Development Technologies: Past, Present, and Future) 在过去的20多年时间里,微软开发了许多的数据访问方案,这里回顾下这些技术的发展历程。 在1990s,微软主要提供两个数据库产品:Access和SQL Server。Access作为一个桌面数据库,提供了数据的一个表格形式的开发界... 阅读全文
摘要:
资源:Walkthrough: Creating a Windows Service Application in the Component Designer: https://msdn.microsoft.com/en-us/library/zt39148a(v=vs.110).aspx 注意事 阅读全文
摘要:
N皇后问题 N*N的棋盘上摆上N个皇后,使皇后不会相互攻击。 public class NQueenPuzzle { private readonly int queenAmount; private readonly int[] xLocations; private int solutionCo 阅读全文