码迷,mamicode.com
首页 >  
搜索关键字:dig    ( 2020个结果
Reverse Integer Leetcode
Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 这道题要考虑反转之后overflow的问题,感觉我的写法很非主流啊。 还是用主流写法又写了一下 ...
分类:其他好文   时间:2017-01-20 09:45:38    阅读次数:219
TOJ-1203 Factoring Large Numbers
One of the central idea behind much cryptography is that factoring large numbers is computationally intensive. In this context one might use a 100 dig ...
分类:其他好文   时间:2017-01-19 14:19:39    阅读次数:187
使用MDI窗体实现多窗口效果
本文章已收录于: 本文章已收录于: 本文章已收录于: // <![CDATA[ $(function () { try { var lib = eval("("+$("#lib").attr("value")+")"); var html = ""; if (lib.err == 0) { $.ea ...
分类:Windows程序   时间:2017-01-19 01:12:09    阅读次数:254
POJ 3744 Scout YYF I
概率$dp$,矩阵优化。 设$dp[i]$为到位置$i$存活的概率,那么如果位置$i$是雷区,$dp[i]=0$,否则$dp[i]=p*dp[i-1]+(1-p)*dp[i-2]$。求出最后一个雷区位置的后一个位置的$dp$值就是答案。长度较大,可以矩阵优化加速一下。输出%$lf$不让过,%$f$过 ...
分类:其他好文   时间:2017-01-18 12:03:57    阅读次数:177
敏感词过滤
原文:http://blog.csdn.net/u011698346/article/details/46350461 三步工作 一:敏感词过滤核心算法,参考这篇文章的DFA算法,http://blog.csdn.net/chenssy/article/details/26961957 实现两个类 ...
分类:其他好文   时间:2017-01-17 18:51:28    阅读次数:315
Python number
1. Basic 2. convert 3. Mathematical function 4. Random number function 5. Trigonometric functions ...
分类:编程语言   时间:2017-01-17 12:35:10    阅读次数:207
Using 1-Wire device with Intel Galileo
Using 1-Wire device with Intel Galileo 3 Replies Many people have had trouble with getting 1-Wire devices to work with the Galileo and Galileo Gen2 bo ...
分类:其他好文   时间:2017-01-12 19:06:11    阅读次数:486
NSURLConnection(iOS2.0-iOS9.0)简单介绍
NSURLConnection使用的四个步骤: 1、准备URL - NSURL 2、创建请求 - NSRequest 3、发送请求(包括异步和同步) 4、回调 下面上一个完整的小demo,使用NSURLConnection加载百度,并使用WebView进行展示: ...
分类:移动开发   时间:2017-01-12 18:47:05    阅读次数:246
LeetCode - 7 Reverse Integer
题目: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 Have you thought about this? Here are some good questio ...
分类:其他好文   时间:2017-01-12 12:10:04    阅读次数:107
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!