11 2011 档案
摘要:微软的一道面试算法题:将数组中指定的前N位移动到数组的最后面。
传入一个数组如 {1,2,3,4,5,6,7}
将数组前面 head的一个子集移到数组末尾end
如input numberOfElements=3,则{1,2,3,4,5,6,7}=>{4,5,6,7,1,2,3}
input numberOfElements=5,则{1,2,3,4,5,6,7}=>{6,7,1,2,3,4,5}
如何写出该算法?
阅读全文
摘要:1:Server ErrorInternet Information Services 7.5Error SummaryHTTP Error 500.19 - Internal Server ErrorThe requested page cannot be accessed because the related configuration data for the page is invalid.Detailed Error InformationModuleIIS Web CoreNotificationUnknownHandlerNot yet determinedError Code
阅读全文