题目链接:点击打开链接
学弟是厉害啊。。
#include
#include
#include
#include
#include
using namespace std;
int vis[110][110],a[110][110],n;
void fuck1()
{
for(int ii=1;ii<=n/2;ii++)//7
{
int i=n,j=ii;
in...
分类:
其他好文 时间:
2014-09-09 13:22:28
阅读次数:
159
修改if else 最忌惮的是天马行空,自负自己对代码的理解,直接重新改写条件语句。但另一方面,相信各位看官也注意到了,理解又是必不可少的,完全死死的做逻辑变形是异常繁琐的(这个在第二个例子中尤为明显),具体如何操作,不好意思,这就是"修改代码的艺术"。口才不行,修行还靠个人。
不要做不成熟的优化。相对来说,代码的清晰度高于性能的优化,而且很多时候两者并不是冲突的,当代码更清新了,往往有更好的优化方案。
举例中的一些代码风格,比如return快速返回,不是每个人都能接受。求同存异,这也是个人座右铭。
...
分类:
其他好文 时间:
2014-09-09 12:57:38
阅读次数:
199
[leetcode]Pascal's Triangle II...
分类:
其他好文 时间:
2014-09-09 12:45:05
阅读次数:
118
第一、开发原因:MOSS网站预热算是一个不大不小的问题,网上的解决方案也不少,但后来才知道原来ASP网站都有这个问题。这涉及到IIS的应用程序池的回收,具体的问题我也没有搞清楚,不过不重要。第二、方案:软件是网上博友写的,并且公布了源码。我在其基础上稍微改了一点。把应用程序设在定时任务里,看一下II...
分类:
Web程序 时间:
2014-09-09 12:27:28
阅读次数:
199
Follow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted array A =[1,1,1,2,2,3],Your function should ret...
分类:
其他好文 时间:
2014-09-09 12:23:58
阅读次数:
176
Given an integern, generate a square matrix filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should return the following matri...
分类:
其他好文 时间:
2014-09-09 11:38:08
阅读次数:
204
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?算法:...
分类:
其他好文 时间:
2014-09-09 11:30:08
阅读次数:
188
每当浏览器向IIS发送一个页面请求的时候,相应的网页就会被编译成DLL文件,然后由JIT来运行这个DLL文件,最后将运行结果发送给客户端。一旦网页发送了变化,下次再请求页面的话,网页又会被重新被编译成DLL文件,再由JIT来运行。为了防止发生文件重名,生成的DLL文件采用了随机命名。 当向II...
分类:
Web程序 时间:
2014-09-09 10:50:38
阅读次数:
160