码迷,mamicode.com
首页 > 其他好文
43. Multiply Strings
题目:Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-n...
分类:其他好文   时间:2015-04-17 23:42:10    阅读次数:130
最短路
Spfa: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 const int maxn=100000+10,INF=-1u>>1; 8 struct Tedge{int x,y,w,ne...
分类:其他好文   时间:2015-04-17 23:40:20    阅读次数:153
Place the Robots 需要较强的建图能力
Place the Robots思路:在任意一个点格子放机器人,那么它所在的行和列被控制了。我们对每一行或每一列连续的空地(草地忽视)称之为块,给每一行和每一列的块标号,每一行的快与每一列的快相交的话,才有只有一个交点。 我们把交点当边,把行块和列块连接起来。每一...
分类:其他好文   时间:2015-04-17 23:42:49    阅读次数:283
NSDate和NSString的转换
用于UIDatepicker+(NSDate*) convertDateFromString:(NSString*)uiDate{ NSDateFormatter *formatter = [[NSDateFormatter alloc] init] ; [formatter setDateForm...
分类:其他好文   时间:2015-04-17 23:40:16    阅读次数:125
Dan Zhang - Visual Studio ALM MVP
I am working for www.ssw.com.au, a Microsoft Certified Partner specialising in .NET solutions, as a senior software developer. I pecializes in develop...
分类:其他好文   时间:2015-04-17 23:39:34    阅读次数:205
Tablelayout常用的属性介绍
http://video.baomihua.com/url53525287/35346798&f=v.baidu.com&opp002主要介绍:android:collapseColumns-----隐藏指定的列android:skrinkColumns------收缩指定的列以适合屏幕,不会挤出屏...
分类:其他好文   时间:2015-04-17 23:39:12    阅读次数:137
资产三大报表
一,资产负债表 a,资产负债表反映的是一个时间点的资产负债状况 ,一般有一年,半年,一个季度(如2012/12/30 2012/6/30) b,资产 = 负债 + 股东权益 c, 资产一般分为流动资产和非流动资产 流动资产:货币,债权,存货 非流动资产 :投资,固定,无形 ...
分类:其他好文   时间:2015-04-17 23:41:30    阅读次数:152
小菜学Chromium之OpenGL学习之二
在这个教程里,我们一起来玩第一个OpenGL程序.它将显示一个空的OpenGL窗口,可以在窗口和全屏模式下切换,按ESC退出.它是我们以后应用程序的框架. 在CodeBlock里创建一个新的GLUT Win32程序(不是console控制台程序)后,我们还需要链接OpenGL库文件。 代码的前4行包...
分类:其他好文   时间:2015-04-17 23:41:30    阅读次数:199
UITableView总结
http://my.oschina.net/iq19900204/blog/292125摘要UITableViewuitableviewuitableviewcell目录[-]1.协议介绍UITableViewDataSource(11)UITableViewDelegate(常用)2.刷新下拉刷新...
分类:其他好文   时间:2015-04-17 23:38:12    阅读次数:191
做汉堡
搭档:江丹仪 http://www.cnblogs.com/JDY64/第一层(三个优点):1、 在刚看到作业时,她就已经想好了一个具体的算法框架,一边写下来还一边讲给我听。2、在丹仪写程序时,遇到不懂的问题就会立即问我,和我一起讨论。3、 丹仪写程序的时候,总会有一些创新的idea,然后使得程序更...
分类:其他好文   时间:2015-04-17 23:40:20    阅读次数:141
【Longest Consecutive Sequence】cpp
题目:Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longe...
分类:其他好文   时间:2015-04-17 23:40:26    阅读次数:127
【LeetCode】201. Bitwise AND of Numbers Range
Bitwise AND of Numbers RangeGiven a range [m, n] where 0 = (int)pow(2.0, i)) && (ind+gap <= (int)pow(2.0, i+1)-1)) //all 1's ...
分类:其他好文   时间:2015-04-17 23:38:37    阅读次数:138
元素和节点
元素和节点不一样: 的父节点、父元素都是的父节...
分类:其他好文   时间:2015-04-17 23:38:54    阅读次数:148
HBV(60)_PDF资料下载
esources > Printable Information Printable InformationThe Hepatitis B Foundation has created a variety of materials for those seeking more information...
分类:其他好文   时间:2015-04-17 23:38:27    阅读次数:125
HBV(65)_专家团队
Welcome to the Hepatitis B Foundation's Expert Speakers ForumThis forum contains presentations given by experts in the field of hepatitis B. From the ...
分类:其他好文   时间:2015-04-17 23:38:33    阅读次数:132
POJ 3278 Catch That Cow(bfs)
题意:给定n,k两个数,三种操作,加一,减一,乘2,求n到k的最少步数;思路:广搜求最少步数;#include#include#includeusing namespace std;int n,m;int q[500010];int num[500010];int bfs(){ int b=0...
分类:其他好文   时间:2015-04-17 23:36:22    阅读次数:132
Morley's Therorem(UVA11178+几何)
题意:Morley定理,求D、E、F的坐标 思路:没什么算法,就是几何的应用。注意旋转角就好了。转载请注明出处:寻找&星空の孩子题目链接:UVA11178 1 #include 2 #include 3 #define PI acos(-1.0) 4 using namespace std; 5 ....
分类:其他好文   时间:2015-04-17 23:37:51    阅读次数:181
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!