码迷,mamicode.com
首页 >  
搜索关键字:缩减 mysql 空间    ( 149917个结果
MySQL : interactive_timeout v/s wait_timeout
Most of the database intensive applications are worring about the default values of these variables obviously. Developers used to inform me that they ...
分类:数据库   时间:2014-04-29 15:26:38    阅读次数:739
生产环境中的PHP WEB 简单架构
使用三台虚拟机器, Ubuntu1(nginx) 192.168.226.128 Ubuntu2(php-fpm+memcached)192.168.226.132 CentOS(MySQL)192.169.226.130PHP 框架使用CakePHP,这个是很常用的MVC 框架,基于事件的分...
分类:Web程序   时间:2014-04-29 15:24:41    阅读次数:477
《Cracking the Coding Interview》——第17章:普通题——题目14
2014-04-29 00:20题目:给定一个长字符串,和一个词典。如果允许你将长串分割成若干个片段,可能会存在某些片段在词典里查不到,有些则查得到。请设计算法进行分词,使得查不到的片段个数最少。解法:用空间换取时间的动态规划算法,首先用O(n^2)的时间判断每一个片段是否在字典里。这个过程其实可以...
分类:其他好文   时间:2014-04-29 14:53:55    阅读次数:470
《Cracking the Coding Interview》——第18章:难题——题目3
2014-04-29 01:02题目:从m个整数里随机选出n个整数,要求等概率。解法:和洗牌的算法类似,每次随机抽出一个数,抽n次即可。时间复杂度O(m * n),空间复杂度O(m)。代码: 1 // 18.3 pick m integers randomly from an array of n ...
分类:其他好文   时间:2014-04-29 14:42:32    阅读次数:345
《Cracking the Coding Interview》——第18章:难题——题目12
2014-04-29 04:36题目:最大子数组和的二位扩展:最大子矩阵和。解法:一个维度上进行枚举,复杂度O(n^2);另一个维度执行最大子数组和算法,复杂度O(n)。总体时间复杂度为O(n^3),还需要O(n)额外空间。代码: 1 // 18.12 Given an n x n matrix, ...
分类:其他好文   时间:2014-04-29 14:24:06    阅读次数:404
《Cracking the Coding Interview》——第18章:难题——题目13
2014-04-29 04:40题目:给定一个字母组成的矩阵,和一个包含一堆单词的词典。请从矩阵中找出一个最大的子矩阵,使得从左到右每一行,从上到下每一列组成的单词都包含在词典中。解法:O(n^3)级别的时间和空间进行动态规划。这道题目和第17章的最后一题很像,由于这题的时间复杂度实在是高,我动手写...
分类:其他好文   时间:2014-04-29 14:21:00    阅读次数:498
Using MySQL Connector .NET 6.6.4 with Entity Framework 5
I had been waiting for the latest MySQL connector for .NET to come out so I can move on to the new and sleek Visual Studio 2012 for my projects. Found...
分类:数据库   时间:2014-04-29 14:17:54    阅读次数:753
EF MySql 配置文件
1 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 ...
分类:数据库   时间:2014-04-29 14:13:53    阅读次数:669
java连接mysql
1.下载jar包 网址:http://dev.mysql.com/downloads/ -->点击:"MySQL Connector/J 5.1 — Generally Available (GA) release (recommended)" -->点击:(mysql-connector-java...
分类:数据库   时间:2014-04-29 13:33:48    阅读次数:611
.NET读取Office文件内容(word、excel、ppt)
引用命名空间1 using Microsoft.Office.Core;2 using Word = Microsoft.Office.Interop.Word;3 using Excel = Microsoft.Office.Interop.Excel;4 using PowerPoint = M...
分类:Web程序   时间:2014-04-29 13:30:46    阅读次数:748
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!