#ET

LeetCode 191. Number of 1 Bits Question

题意:给你一个整数,计算该整数的二进制形式里有多少个“1”。比如6(110),就有2个“1”。 一开始我就把数字n不断右移,然后判定最右位是否为1,是就cnt++,否则就继续右移直到n为0。可是题目说了是无符号整数,所以给了2147483648,就WA了。因为j...

LeetCode 100. Same Tree

题意:给你两个二叉树,然后判定两棵树是否完全相等。 大意:用递归,先判定两个根的val值是否相等,不等就returnfalse,相等就判定两棵树的左子树和右子树是否相等。 /***Definitionforabinarytreenode.*publicclassTreeNode{*intval;*T...
代码星球 ·2020-04-05

LeetCode 401 Binary Watch

 题意:  一块表,上面有四个灯,分别显示8、4、2、1;下面有六个灯,分别显示32、16、8、4、2、1。    上面的灯代表小时,下面的灯代表分钟,给你数字n,代表有n个灯亮,让你求出n个灯亮可能代表的时间是多少。    (小时范围是0到11,分钟范围是0到59) 我的思路:  用数组记录一定数...
代码星球 ·2020-04-05

Android Studio:Error:Execution failed for task ':app:mergeDebugResources'. > Some file crunching failed, see logs for details

Gradle编译错误:14:39:58Executingtasks:[clean,:app:generateDebugSources,:app:mockableAndroidJar,:app:prepareDebugUnitTestDependencies,:app:generateDebugAndroidTestSo...

poj 1017 Packets 贪心

题意:所有货物的高度一样,且其底面积只有六种,分别为1*12*23*34*45*56*6的,货物的个数依次为p1,p2,p3,p4,p5,p6,   包裹的高度与货物一样,且底面积就为6*6,然后求最少要多少个包裹包含以上所有货物 思路:  由于高度一样,所以忽略高度,只用讨论底面积。  分类讨论:    底...
代码星球 ·2020-04-05

Windbg查看w3wp进程占用的内存及.NET内存泄露,死锁分析

https://www.cnblogs.com/startpoint/p/4194052.html https://www.cnblogs.com/lyl6796910/p/7613664.html https://www.cnblogs.com/dubing/p/3878591.html ...

Autofac ASP.NET Web API (Beta) Integration

WiththebetareleaseofASP.NETMVC4andtheASP.NETWebAPIbeingreleasedafewweeksago,IdecideditwasabouttimetohavealookatwhattheintegrationstorywouldlikeforAutofac.Thepac...

Custom Exception in ASP.NET Web API 2 with Custom HttpResponse Message

AbenefitofusingASP.NETWebAPIisthatitcanbeconsumedbyanyclientwiththecapabilityofmakingHTTPcallsandprocessingJSONdata.TheclientcanuseHTTPmethodstoperformRead/Writ...

8 ways to improve ASP.NET Web API performance

ASP.NETWebAPIisagreatpieceoftechnology.WritingWebAPIissoeasythatmanydevelopersdon’ttakethetimetostructuretheirapplicationsforgreatperformance.Inthisarticl...
代码星球 ·2020-04-05

Replace JSON.NET with Jil JSON serializer in ASP.NET Web API

IhaverecentlycomeacrossacomparisonoffastJSONserializersin.NET,whichshowsthat JilJSONserializer isoneofthefastest.JiliscreatedbyKevinMontrosedevelopera...

Autofac log4net Integration Module

Whilethereisnospecificassemblyforlog4netsupport,youcaneasilyinject log4net.ILog valuesusingaverysmallcustommodule.Thismoduleisalsoagoodexampleofhowtou...

Autofac Property Injection and Method Injection

Whileconstructorparameterinjectionisthepreferredmethodofpassingvaluestoacomponentbeingconstructed,youcanalsousepropertyormethodinjectiontoprovidevalues.Property...

ASP.NET Web API身份验证和授权

英语原文地址:http://www.asp.net/web-api/overview/security/authentication-and-authorization-in-aspnet-web-api中文原文地址:https://www.cnblogs.com/youring2/archive/2013/03/09...

Lifecycle of an ASP.NET Web API Message

ASP.NETWebAPI,asweknownow,isaframeworkthathelpsbuildServicesoverHTTP.WebAPIwasintroducedasalightweightserviceframeworkkeepinginmindthemodernwebdevelopmentparadi...
代码星球 ·2020-04-05

打造属于自己的支持版本迭代的Asp.Net Web Api Route

 在目前的主流架构中,我们越来越多的看到webApi的存在,小巧,灵活,基于Http协议,使它在越来越多的微服务项目或者移动项目充当很好的serviceendpoint。   以Asp.NetWebApi为例,随着业务的扩展,产品的迭代,我们的webapi也在随之变化,很多时候会...
首页上一页...593594595596597...下一页尾页