虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Re-Initialization

  • All people curious about how Linux works and why it is so efficient will find answers here. After re

    All people curious about how Linux works and why it is so efficient will find answers here. After reading the book, you will find your way through the many thousands of lines of code, distinguishing between crucial data structures and secondary ones—in short, becoming a true Linux hacker.

    标签: efficient curious answers people

    上传时间: 2013-12-29

    上传用户:lifangyuan12

  • BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that th

    BlackBerry Hacks will enhance your mobile computing with great tips and tricks. You ll learn that the BlackBerry is capable of things you never thought possible, and you ll learn how to make it an even better email and web workhorse: Get the most out of the built-in applications Take control of email with filters, searches, and more Rev up your mobile gaming--whether you re an arcade addict or poker pro Browse the web, chat over IM, and keep up with news and weblogs Work with office documents, spell check your messages, and send faxes Become more secure, lock down your BlackBerry and stash secure information somewhere safe Manage and monitor the BlackBerry Enterprise Server (BES) and Mobile Data System (MDS) Create web sites that look great on a BlackBerry Develop and deploy BlackBerry applications

    标签: BlackBerry computing enhance mobile

    上传时间: 2016-12-07

    上传用户:GavinNeko

  • /* * linux/arch/m68knommu/platform/520x/spi-mcf520x.c * * Sub-architcture dependant initializa

    /* * linux/arch/m68knommu/platform/520x/spi-mcf520x.c * * Sub-architcture dependant initialization code for the Freescale * 520x SPI module * * Yaroslav Vinogradov yaroslav.vinogradov@freescale.com * Copyright Freescale Semiconductor, Inc 2006 * * This program is free software you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation either version 2 of the License, or * (at your option) any later version.

    标签: Sub-architcture initializa 520 dependant

    上传时间: 2016-12-15

    上传用户:xiaohuanhuan

  • state of art language modeling methods: An Empirical Study of Smoothing Techniques for Language Mod

    state of art language modeling methods: An Empirical Study of Smoothing Techniques for Language Modeling.pdf BLEU, a Method for Automatic Evaluation of Machine Translation.pdf Class-based n-gram models of natural language.pdf Distributed Language Modeling for N-best List Re-ranking.pdf Distributed Word Clustering for Large Scale Class-Based Language Modeling in.pdf

    标签: Techniques Empirical Smoothing Language

    上传时间: 2016-12-26

    上传用户:zhuoying119

  • A novel met hod t o p artially compensate sigma2delta shap ed noise is p rop osed. By injecting t he

    A novel met hod t o p artially compensate sigma2delta shap ed noise is p rop osed. By injecting t he comp en2 sation cur rent int o t he p assive loop f ilte r during t he delay time of t he p hase f requency detect or ( PFD) , a maximum reduction of t he p hase noise by about 16dB can be achieved. Comp a red t o ot he r compensation met hods , t he tech2 nique p rop osed he re is relatively simple and easy t o implement . Key building blocks f or realizing t he noise cancel2 lation , including t he delay va riable PFD and comp ensation cur rent source , a re sp ecially designed. Bot h t he behavior level and circuit level simulation results a re p resented.

    标签: sigma2delta compensate injecting artially

    上传时间: 2013-12-18

    上传用户:qlpqlq

  • ADT HuffmanTree{ 数据对象:D={ai| ai∈CharSet,i=1,2,……,n, n≥0} 数据关系:R={< ai-1, ai > ai-1, ai∈D,

    ADT HuffmanTree{ 数据对象:D={ai| ai∈CharSet,i=1,2,……,n, n≥0} 数据关系:R={< ai-1, ai > ai-1, ai∈D, ai-1基本操作P: HuffmanTree() 构造函数 ~ HuffmanTree() 析构函数 Initialization(int WeightNum) 操作结果:构造哈夫曼树。 Encoder() 初始条件:哈夫曼树已存在或者哈夫曼树已存到文件中。 操作结果:对字符串进行编码 Decoder() 初始条件:哈夫曼树已存在且已编码。 操作结果:对二进制串进行译码 Print() 初始条件:编码文件已存在。 操作结果:把已保存好的编码文件显示在屏幕 TreePrinting() 初始条件:哈夫曼树已存在。 操作结果:将已在内存中的哈夫曼树以直观的方式显示在终端上

    标签: ai HuffmanTree CharSet ADT

    上传时间: 2013-12-25

    上传用户:changeboy

  • Newton Game Dynamic 1.52 Delphi下基于GLScene的OpenGL游戏开发控件。功能非常强大和易于使用。 Advanced physics engine for re

    Newton Game Dynamic 1.52 Delphi下基于GLScene的OpenGL游戏开发控件。功能非常强大和易于使用。 Advanced physics engine for real-time simulation of rigid bodies

    标签: Advanced Dynamic GLScene physics

    上传时间: 2014-01-18

    上传用户:chongcongying

  • Have you ever seen players eyes light up as they explore the worlds that you ve created in your gam

    Have you ever seen players eyes light up as they explore the worlds that you ve created in your games? If you have, then game development probably has you hooked firmly in its grasp! If you ve never taken your games beyond the PC, now s the time! "J2ME Game Programming" is a hands-on guide that teaches you how to create games for micro-devices. You ll be amazed at just how cool the games you create can look and play. Focusing primarily on mobile phone game creation, you ll jump right in and create your own games as you work your way through the book. The thought has surely crossed your mind that it would be nice to make some money off of this cool hobby of yours. J2ME offers real opportunity to profit from your games. Learn how you can earn revenue from your games by taking them to market. If you have a basic understanding of Java, then you re ready to explore all that "J2ME Game Programming" has to offer!

    标签: you created players explore

    上传时间: 2017-02-25

    上传用户:lanhuaying

  • All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read

    All of Java s Input/Output (I/O) facilities are based on streams, which provide simple ways to read and write data of different types. Java provides many different kinds of streams, each with its own application. The universe of streams is divided into four large categories: input streams and output streams, for reading and writing binary data and readers and writers, for reading and writing textual (character) data. You re almost certainly familiar with the basic kinds of streams--but did you know that there s a CipherInputStream for reading encrypted data? And a ZipOutputStream for automatically compressing data? Do you know how to use buffered streams effectively to make your I/O operations more efficient? Java I/O, 2nd Edition has been updated for Java 5.0 APIs and tells you all you ever need to know about streams--and probably more.

    标签: facilities streams provide Output

    上传时间: 2013-12-17

    上传用户:6546544

  • xyzzy is a program for the Nintendo Wii which will read a console s OTP key storage and dump out the

    xyzzy is a program for the Nintendo Wii which will read a console s OTP key storage and dump out the private encryption keys to screen and to SD card. This is useful information in case your Wii ever gets bricked and you need to re-initialize the firmware.

    标签: the Nintendo console program

    上传时间: 2013-12-19

    上传用户:清风冷雨