码迷,mamicode.com
首页 >  
搜索关键字:word    ( 17506个结果
Word 2013 无法撤销操作的错误
来自 关闭正在运行的所有程序。按Win-R,在运行框中键入regedit,然后单击“确定”。在注册表编辑器中,展开到下列注册表子项: Microsoft Office Word 2013 HKEY_CURRENT_USER\Software\Microsof...
分类:其他好文   时间:2015-04-01 19:01:24    阅读次数:147
leetcode || 58、Length of Last Word
problem: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0...
分类:其他好文   时间:2015-04-01 17:37:54    阅读次数:204
第一个C语言程序
#includeint main(){ printf("Hello, "); printf("word"); printf("\n"); return 0;}1 #include2 int main(){3 printf("Hello, ");4 printf...
分类:编程语言   时间:2015-04-01 15:16:23    阅读次数:162
Length of last word--LeetCode
题目: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. Note: ...
分类:其他好文   时间:2015-04-01 11:31:38    阅读次数:138
Edit Distance
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You have the following 3 operations permitted on a word:...
分类:其他好文   时间:2015-04-01 11:29:06    阅读次数:143
Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. Note: A word is def...
分类:其他好文   时间:2015-04-01 11:23:37    阅读次数:112
H264
http://zhidao.baidu.com/question/12658903.html?qbl=relate_question_1&word=h.264&optimi=4随着市场的需求,在尽可能低的存储情况下获得好的图像质量和低带宽图像快速传输已成为视频压缩的两大难题。为此IEO/IEC/和I...
分类:其他好文   时间:2015-04-01 11:13:34    阅读次数:141
WORD文档的环境“重置”
在打开word/excl的时候遇到了一个问题:弹出一个错误窗口“向程序发送错误的命令”,网上找到了一个解决方案记录下来:1退出所有Office程序 2.确保以下文件夹内无任何文件:%AppData%\Microsoft\word\STARTUPC:\Program Files\Microsoft O...
分类:其他好文   时间:2015-04-01 11:04:32    阅读次数:124
uva 1401 Remember the Word ( Trie + DP )
题意:给出n(n 思路:Trie,先把单词建成Trie,然后进行dp,dp[i]表示以字符串中第i个字母为开头的情况,然后每个状态只要在Trie树上找到相应的字母开头的单词,然后dp[i] = sum{dp[i + len(x)]}进行状态转移即可 这个x是n个单词中的一个,可以用Trie查询 code: #include #include #include using namesp...
分类:其他好文   时间:2015-04-01 01:55:30    阅读次数:121
Java不写文件,LOAD DATA LOCAL INFILE大批量导入数据到MySQL的实现
Mysql loaddata的使用           数据库中,最常见的写入数据方式是通过SQLINSERT来写入,另外就是通过备份文件恢复数据库,这种备份文件在MySQL中是SQL脚本,实际上执行的还是在批量INSERT语句。         在实际中,常常会遇到两类问题:一类是数据导入,比如从word、excel表格或者txt文档导入数据(这些数据一般来自于非技术人员通过OFF...
分类:数据库   时间:2015-03-31 20:06:57    阅读次数:308
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!