码迷,mamicode.com
首页 >  
搜索关键字:word length    ( 36649个结果
SigXplorer设置延时及Local_Global
通过SigXplorer设置绝对延时和相对延时及对Local-Global的理解一、基本理解(感觉可能有偏差)在于博士的教程第44和45讲中,分别对绝对延时和相对延时进行了设置,通过SigXplorer。1、当前对绝对延时和相对延时的理解为:(用length来衡量的话)绝对延时:绝对走线长度,为走线...
分类:其他好文   时间:2014-05-27 02:40:56    阅读次数:352
做了一件自己想做的事,没有原因。
为期两年多的辅修学习,伴随着一场意外频发的答辩似乎走到了尽头。回顾一下吧当初选择的时候多少是有点纠结的,要不要选择第二个专业,选择一个什么样的专业。它对将来有没有帮助,有多大帮助?思前想后,累!最终选了英语,最主要的原因就是本能的想,或者没有原因。现在看来,凭借自己的直觉去做选择往往是正确的,对,F...
分类:其他好文   时间:2014-05-19 19:44:33    阅读次数:186
驱动编程:内存管理基本函数
1)内存间复制(非重叠)应用:比如将需要显示的内容,从缓冲区复制到内存先看等VOID RtlCopyMemory(IN VOID UNALLGNED* Destination,IN CONST VOID UNALLGNED *Source,IN SIZE_T Length);//表示要复制的内存长度...
分类:其他好文   时间:2014-05-19 18:49:01    阅读次数:228
LeetCode: Remove Duplicates from Sorted Array [025]
【题目】 Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in place with constant memory. For example, Given input array A ...
分类:其他好文   时间:2014-05-18 18:25:19    阅读次数:272
LeetCode: Remove Element [026]
【题目】 Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. It doesn't matter what you leave beyond the new length. 【题意】 删除数组中指定的值。不关心在新数组的后面即数组尾部留下了什么值。 【思路】 思路同Remo...
分类:其他好文   时间:2014-05-18 14:53:56    阅读次数:208
读取硬盘序列号
#pragma hdrstop #pragma argsused #include #include #include #include "hdd.h" const WORD IDE_ATAPI_IDENTIFY = 0xA1; // 读取ATAPI设备的命令 const WORD IDE_ATA_IDENTIFY = 0xEC; // 读取ATA设备的命令 const in...
分类:其他好文   时间:2014-05-18 14:36:24    阅读次数:430
LeetCode: Substring with Concatenation of All Words [029]
【题目】 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 concatenation of each word in L exactly once and without any intervening characters. For example, given: S:...
分类:其他好文   时间:2014-05-18 08:31:48    阅读次数:228
LeetCode:Reverse Words in a String
题目: Given an input string, reverse the string word by word. For example, Given s = "the sky is blue", return "blue is sky the". Clarification: What constitutes a word? A sequence of non-spa...
分类:其他好文   时间:2014-05-18 04:12:07    阅读次数:198
站在巨人的肩膀上——人事项目数据导出word
最近在做人事项目中的,数据导出word,具体的说就是从web客户端页面获取信息,添加到信函模板中,再导出为word文档。总结一下,学会了两种方法,1.通过将word模板转换为html文件,输出word。2.利用第三方组件Aspose.Words操作word模板,输出word。...
分类:其他好文   时间:2014-05-18 03:44:24    阅读次数:257
【LeetCode】Longest Consecutive Sequence
Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given[100, 4, 200, 1, 3, 2],The longest ...
分类:其他好文   时间:2014-05-18 01:52:45    阅读次数:317
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!