摘要: 『转贴计算机学术期刊排名:Computer Science Journal Rankings- -DISCLAIMER:The ranking of journals are taken from an informal external source. The detailed procedure behind the ranking is unknown to the author. These rankings do not necessarily represent my personal view either.There is a possibility that some of 阅读全文
posted @ 2012-09-27 15:36 georgechen_ena 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 最新的计算机方向的国际会议/期刊的排名转自http://www.core.edu.au/rankings/May 2007 UpdateAn enormous number of change templates and emails have been received for the preliminary rankings listed above.Many suggestions have been received for changing the descriptions of the top two tiers.The change templates are being pro 阅读全文
posted @ 2012-09-27 15:35 georgechen_ena 阅读(3972) 评论(0) 推荐(0) 编辑
摘要: Basic and obvious exact cover problem, using Dancing Links Algorithm (DLX).DLX reference: Dancing Links.pdf#include <stdio.h>const int MAXM = 20;const int MAXN = 400;int U[MAXM*MAXN], D[MAXM*MAXN], L[MAXM*MAXN], R[MAXM*MAXN], C[MAXM*MAXN], X[MAXM*MAXN];int H[MAXM], S[MAXN], Q[MAXM];int size, n 阅读全文
posted @ 2012-08-08 22:50 georgechen_ena 阅读(260) 评论(0) 推荐(0) 编辑
摘要: http://social.msdn.microsoft.com/Forums/en/vsx/thread/2f147cbd-4abe-464b-a665-6a166560f5c2EnvDTE.DTE applicationObject = (EnvDTE.DTE) (this.GetService(typeof(Microsoft.VisualStudio.Shell.Interop.SDTE))); 阅读全文
posted @ 2012-04-27 15:42 georgechen_ena 阅读(167) 评论(0) 推荐(0) 编辑
摘要: csapp -Computer Systems: A Programmer’s Perspective 阅读全文
posted @ 2012-02-26 14:19 georgechen_ena 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 其实和黑书没什么关系,只是刘汝佳关于图论部分的课件,不全,有些ppt内只有大概纲要下载地址: 图论 阅读全文
posted @ 2012-01-30 20:47 georgechen_ena 阅读(318) 评论(0) 推荐(0) 编辑
摘要: http://www.zlinkin.com/?p=34 这几天由于种种原因经常接触到网络流的题目,这一类型的题给人的感觉,就是要非常使劲的YY才能出来点比较正常的模型。尤其是看了Amber最小割应用的文章,里面的题目思路真是充满了绵绵不绝的YD思想。然而比赛中,当你YD到了这一层后,您不得不花比较多的时间去纠结于大量细节的实现,而冗长的代码难免会使敲错版后的调试显得异常悲伤,因此一些巧妙简短高效的网络流算法在此时便显得犹为重要了。本文力求以最简短的描述,对比较流行的网络流算法作一定的总结,并借之向读者强烈推荐一种效率与编程复杂度相适应的算法。 众所周知,在网络流的世界里,存在2类截然不同的. 阅读全文
posted @ 2011-11-07 18:52 georgechen_ena 阅读(3346) 评论(2) 推荐(0) 编辑