码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
数据结构6_顺序队列(循环队列)
本文实现了顺序队列,与链队列不同的是,顺序队列需要考虑一个问题,问题情况如下,解决办法:循环队列,当rear到分配的数组空间末尾时,转到数组头但是当q.rear==q.front时,又如何区分一种是空队列,一种是满队列的情况呢这里有两种方案本次代码实现了第一种方法,同时设置了一个技术变量length...
分类:其他好文   时间:2014-06-29 15:39:35    阅读次数:311
LeetCode Length of Last Word
class Solution {public: int lengthOfLastWord(const char *s) { if (s == NULL) return 0; int mlen = 0, len = 0; bool inword = fa...
分类:其他好文   时间:2014-06-29 14:13:37    阅读次数:229
prototype 和function关系等总结
1,function ,包括 arguments, caller,length,name ,prototype,__proto__,2,prototype,又分为constructor:function () {},__proto__:Object,3,__proto__从别的原型链继承过来可以直接...
分类:其他好文   时间:2014-06-29 13:59:16    阅读次数:327
20140527 希尔排序
#includevoid ShellSort(int *a,int length){ int jump=length; int temp=0; int change=1; while(jump>0) //while1 { jump=jump/2; change=1; /***************...
分类:其他好文   时间:2014-06-07 03:53:30    阅读次数:243
KindEditor的内容以Word的形式导出
//导出按钮protected void btn_Export_Click(object sender, EventArgs e) { Model.article art = new BLL.Common().GetModel(this.id); WriteHtml(art.content);//a...
分类:其他好文   时间:2014-06-07 03:04:09    阅读次数:299
個人資料管理的網頁系統
需求:第一階段. 動態生成網頁,此網頁中顯示當前目錄下的文件結構,並可以瀏覽文本文檔以及內建圖片。第一階段. 建立新的文本文檔,並用富文本的方式,可標記某一段文字顏色以及添加圖片,可以加載其他更多的文件類型,如excel, word, rtf, pdf操作流程;用java程式執行dos語句,生成文件...
分类:其他好文   时间:2014-05-30 11:11:42    阅读次数:262
功能强大支持64位操作系统的转Flash软件(doc转swf):Print2Flash
Print2Flash是一个虚拟打印机类的文档转换软件,因此只要是可打印的文档,都可以轻松转换为Flash文件,即SWF动画,特别是用于转换PDF、Word、Excel、PowerPoint等文档为SWF格式。 Print2Flash有2个版本,其中Print2Flash Free是免费版本,功能....
分类:其他好文   时间:2014-05-30 04:51:51    阅读次数:253
安卓编程总结(1)
1、通过Toast类显示提示消息对话框Toast.makeText(Login.this,"pleaseinputtherightinfomation!",Toast.LENGTH_LONG).show()函数实现。2、Android中的String类与Qt中的QString类有一点不同,Andro...
分类:移动开发   时间:2014-05-30 03:17:01    阅读次数:287
让Windows Server 2008 + IIS 7+ ASP.NET 支持10万个同时请求
具体设置如下:1. 调整IIS 7应用程序池队列长度由原来的默认1000改为65535。IIS Manager > ApplicationPools > Advanced SettingsQueue Length : 655352. 调整IIS 7的appConcurrentRequestLimit...
分类:Windows程序   时间:2014-05-29 11:50:21    阅读次数:426
leetcode--Substring with Concatenation of All Words
You are given a string,S, and a list of words,L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenati...
分类:其他好文   时间:2014-05-29 09:09:35    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!