码迷,mamicode.com
首页 > 2015年08月04日 > 全部分享
iOS 应用隐藏状态栏
有时候在 Storyboard 和 target 里的设定并不足以使得应用能够完全隐藏状态栏。这时候需要到 Info.plist,添加一项:View controller-based status bar appearance,并把值设为 NO。
分类:移动开发   时间:2015-08-04 09:15:36    阅读次数:113
覆盆子
覆盆子(学名:Rubus idaeus)是蔷薇科悬钩子属的木本植物,其果实味道酸甜,植株的枝干上长有倒钩刺。目录[隐藏]1名称2型态3轶事4参考资料5外部链接名称[编辑]覆盆子有很多别名,例如:覆盆[1]、覆盆莓、托盘(东北)、饽饽头(东北)、公饭(广东)、野莓、野草莓、乌藨子[2]、小托盘[3]、...
分类:其他好文   时间:2015-08-04 09:17:00    阅读次数:423
LeetCode:Roman to Integer
1、题目名称 Roman to Integer (罗马数字到阿拉伯数字的转换) 2、题目地址 https://leetcode.com/problems/roman-to-integer/ 3、题目内容 英文:Given a roman numeral, convert it to an integer. Input is g...
分类:其他好文   时间:2015-08-04 08:14:55    阅读次数:229
【LeetCode-面试算法经典-Java实现】【081-Search in Rotated Sorted Array II(搜索旋转的排序数组)】
【081-Search in Rotated Sorted Array II(搜索旋转的排序数组)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Follow up for “Search in Rotated Sorted Array”:   What if duplicates are allowed?   Would this affect the run-t...
分类:编程语言   时间:2015-08-04 08:16:20    阅读次数:154
【LeetCode-面试算法经典-Java实现】【082-Remove Duplicates from Sorted List II(排序链表中删除重复元素II)】
【082-Remove Duplicates from Sorted List II(排序链表中删除重复元素II)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers f...
分类:编程语言   时间:2015-08-04 08:15:59    阅读次数:201
【LeetCode-面试算法经典-Java实现】【083-Remove Duplicates from Sorted List(排序的单链表中删除重复的结点)】
【083-Remove Duplicates from Sorted List(排序的单链表中删除重复的结点)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Given a sorted linked list, delete all duplicates such that each element appear only once.   For example,...
分类:编程语言   时间:2015-08-04 08:15:48    阅读次数:151
计算圆周率
Digits of Pi: In this problem you have to find as many digits of PI as possible. Output: Output must contain as many digits of PI as possible (not more than 1,000,000). Score: The score awarded to y...
分类:其他好文   时间:2015-08-04 08:13:37    阅读次数:168
【算法】米勒-拉宾素性检验
Prime or Not: Given the number, you are to answer the question: "Is it prime?" Input: t – the number of test cases, then t test cases follows. [t ≤ 500] Each line contains one integer: N [2 ≤ N ≤ 2...
分类:编程语言   时间:2015-08-04 08:13:41    阅读次数:480
使用nsis做软件安装
使用nis edit + nsis实现软件的安装...
分类:其他好文   时间:2015-08-04 08:13:26    阅读次数:250
回文数问题
问题描述 我在2008年6月写了一篇随笔“可以使用C#语言的在线ACM题库”,其中提到 Sphere Onlile Judge (SPOJ) 网站。现在我们来看看该网站 SPOJ Problem Set (classical) 中的“5. The Next Palindrome”。这道题目的主要内容如下所示: The Next Palindrome: A positive inte...
分类:其他好文   时间:2015-08-04 08:13:58    阅读次数:158
再谈 BigInteger - 优化
在上篇随笔“浅谈 GetHashCode”中,我实现了一个新的 Skyiv.Numeric.BigInteger.GetHashCode 方法: public override int GetHashCode() { int n = sign; for (int i = data.Length - 1; i >= 0; i -= 4) { int m = data[i]; ...
分类:其他好文   时间:2015-08-04 08:14:44    阅读次数:275
【算法】利用有限自动机进行字符串匹配
1102. Strange Dialog Time Limit: 1.0 second Memory Limit: 16 MB One entity named "one" tells with his friend "puton" and their conversation is interesting. "One" can say words "out" and "output...
分类:编程语言   时间:2015-08-04 08:14:23    阅读次数:230
用 C# 实现优先队列
优先队列(priority queue) 是很重要的数据结构。我在做 ACM 题时就经常要用到她。C++ STL 就包括 priority_queue 。Java 也有 PriorityQueue 类。遗憾的是,.NET Framework Base Class Library 中并不包括优先队列。于是,我只好自己用 C# 语言写一个,如下所示: using System; using Sy...
分类:Windows程序   时间:2015-08-04 08:13:51    阅读次数:174
使用快速傅里叶变换计算大整数乘法
我们知道,两个 N 位数字的整数的乘法,如果使用常规的算法,时间复杂度是 O(N2)。然而,使用快速傅里叶变换,时间复杂度可以降低到 O(N logN loglogN)。   假设我们要计算以下两个 N 位数字的乘积: a = (aN-1aN-2...a1a0)10 = aN-1x10N-1 + aN-2x10N-2 + ... + a1x101 + a0x100 b = ...
分类:其他好文   时间:2015-08-04 08:13:33    阅读次数:217
应用程序的性能: C# vs C/C++
最近一段时间,我在 Timus Online Judge 网站做 ACM 题。 首先,让我们看一下 Timus 1114. Boxes: 这道题要求计算出将两种颜色的球放到盒子中的各种组合的数目。我们发现用同样的算法,C# 程序居然比 C++ 程序慢 62 倍。 真的是 C# 应用程序的性能就一定很差吗?不是的。实际上在这道题中,使用的算法是非常高效的。上面的 0.0...
分类:编程语言   时间:2015-08-04 08:11:12    阅读次数:202
可以使用C#语言的在线ACM题库
俄罗斯乌拉尔大学在线题库 是一个可以使用C#语言的在线ACM题库,有兴趣的朋友可以去试试。 Problem 1000. A+B Problem 是入门,就是简单地求整数 A 和 B 的和就行了,答案如下:  1 using System;  2   3 // http://acm.timus.ru/problem.aspx?space=1&num=1000  4 clas...
分类:编程语言   时间:2015-08-04 08:13:23    阅读次数:308
数独解算器(ASP.NET 2.0)
数独游戏 在9x9的方格内进行, 分为3x3的小方格,被称为“区”。 数独游戏首先从已经填入数字的格子开始。 数独游戏的目的是根据下列规则,用1至9之间的数字填满空格: 每个数字在每一行、每一列和每一区只能出现一次。 我在 Linux 服务器(请参见“在 Linux 下运行 ASP.NET 2.0”)上用 ASP.NET 2.0 实现了一个数独解算器。 http://www.su...
分类:Web程序   时间:2015-08-04 08:13:40    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!