亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊(cè)

Integer-only

  • /* * EULER S ALGORITHM 5.1 * * TO APPROXIMATE THE SOLUTION OF THE INITIAL VALUE PROBLEM: * Y = F

    /* * EULER S ALGORITHM 5.1 * * TO APPROXIMATE THE SOLUTION OF THE INITIAL VALUE PROBLEM: * Y = F(T,Y), A<=T<=B, Y(A) = ALPHA, * AT N+1 EQUALLY SPACED POINTS IN THE INTERVAL [A,B]. * * INPUT: ENDPOINTS A,B INITIAL CONDITION ALPHA INTEGER N. * * OUTPUT: APPROXIMATION W TO Y AT THE (N+1) VALUES OF T. */

    標(biāo)簽: APPROXIMATE ALGORITHM THE SOLUTION

    上傳時(shí)間: 2015-08-20

    上傳用戶:zhangliming420

  • ACM試題An Easy Problem Description As we known, data stored in the computers is in binary form. The

    ACM試題An Easy Problem Description As we known, data stored in the computers is in binary form. The problem we discuss now is about the positive integers and its binary form. Given a positive integer I, you task is to find out an integer J, which is the minimum integer greater than I, and the number of 1 s in whose binary form is the same as that in the binary form of I. For example, if "78" is given, we can write out its binary form, "1001110". This binary form has 4 1 s. The minimum integer, which is greater than "1001110" and also contains 4 1 s, is "1010011", i.e. "83", so you should output "83".

    標(biāo)簽: Description computers Problem binary

    上傳時(shí)間: 2013-12-11

    上傳用戶:libenshu01

  • Reducer: Given a dataset and a file containing a reduct, this program outputs a new dataset containi

    Reducer: Given a dataset and a file containing a reduct, this program outputs a new dataset containing only the attributes appearing in the reduct file.

    標(biāo)簽: dataset containing containi Reducer

    上傳時(shí)間: 2014-01-25

    上傳用戶:牛津鞋

  • The code, images and designs for this book are released under a Creative Commons Attribution-NonComm

    The code, images and designs for this book are released under a Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License. http://creativecommons.org/licenses/by-nc-sa/2.5/ You are free: * to copy, distribute, display, and perform the work * to make derivative works Under the following conditions: *Attribution. You must attribute the work in the manner specified by the author or licensor. *Noncommercial. You may not use this work for commercial purposes. *Share Alike. If you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one. *For any reuse or distribution, you must make clear to others the license terms of this work. *Any of these conditions can be waived if you get permission from the copyright holder. CONTACT ME Please address any questions to info@andybudd.com.

    標(biāo)簽: Attribution-NonComm Creative released Commons

    上傳時(shí)間: 2014-01-19

    上傳用戶:chfanjiang

  • USB海量存儲(chǔ)設(shè)備類規(guī)范包括四個(gè)獨(dú)立的子類規(guī)范:(ATA command的那個(gè)沒有) ①USB Mass Storgage Class Control/Bulk/Interrupt(CBI)Tran

    USB海量存儲(chǔ)設(shè)備類規(guī)范包括四個(gè)獨(dú)立的子類規(guī)范:(ATA command的那個(gè)沒有) ①USB Mass Storgage Class Control/Bulk/Interrupt(CBI)Transport ②USB Mass Storage Class Bulk-Only Transport ③USB Mass Storage Class ATA Command Block ④USB Mass Stroage Class UFI Command Specification。 前兩個(gè)子規(guī)范定義了數(shù)據(jù)/命令/狀態(tài)在USB上的傳輸方法。 Bulk-Only傳輸規(guī)范僅僅使用Bulk端點(diǎn)傳送數(shù)據(jù)/命令/狀態(tài), CBI傳輸規(guī)范則使用Control/Bulk/Interrupt三種類型的端點(diǎn)進(jìn)行數(shù)據(jù)/命令/狀態(tài)傳送。 后兩個(gè)子規(guī)范定義了對(duì)存儲(chǔ)介質(zhì)的操作命令。 ATA 命令規(guī)范用于硬盤。 UFI命令規(guī)范是針對(duì)USB移動(dòng)存儲(chǔ)而制定的,實(shí)際上UFI命令格式是基于SFF-8070i和SCSI-2規(guī)范,總共定義了19個(gè)12字節(jié)長(zhǎng)度的操作命令。

    標(biāo)簽: USB Interrupt Storgage Control

    上傳時(shí)間: 2015-08-29

    上傳用戶:aysyzxzm

  • 為你的MFC程序添加宏腳本語言。AppWizard has created this ScriptDemo application for you. This application not onl

    為你的MFC程序添加宏腳本語言。AppWizard has created this ScriptDemo application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application.

    標(biāo)簽: application ScriptDemo AppWizard created

    上傳時(shí)間: 2014-01-27

    上傳用戶:彭玖華

  • A complete set of bit banged, software driven I2C routines I created for any PIC device - and they w

    A complete set of bit banged, software driven I2C routines I created for any PIC device - and they work!! These functions are single master only functions, and are ideal for communicating with things like EEPROMs, LCD Drivers, ADC Converters etc

    標(biāo)簽: complete routines software created

    上傳時(shí)間: 2013-12-17

    上傳用戶:王小奇

  • LemonSMS is a component developed in Java that provides a turnkey solution for application developer

    LemonSMS is a component developed in Java that provides a turnkey solution for application developers to incorporate into their Java applications the functionality of sending and processing of incoming SMS messages. LemonSMS acts as a middleware between a Java application and a GSM Modem or Data enabled phone. Because LemonSMS only provides an interface to the added SMS functionality, your application still handles access to data and business logic tier. With the easy-to-use LemonSMS API, developers can easily utilize SMS functionalities provided by LemonSMS.

    標(biāo)簽: application component developed developer

    上傳時(shí)間: 2013-12-29

    上傳用戶:大融融rr

  • Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search ma

    Implemented BFS, DFS and A* To compile this project, use the following command: g++ -o search main.cpp Then you can run it: ./search The input is loaded from a input file in.txt Here is the format of the input file: The first line of the input file shoud contain two chars indicate the source and destination city for breadth first and depth first algorithm. The second line of input file shoud be an integer m indicate the number of connections for the map. Following m lines describe the map, each line represents to one connection in this form: dist city1 city2, which means there is a connection between city1 and city2 with the distance dist. The following input are for A* The following line contains two chars indicate the source and destination city for A* algorithm. Then there is an integer h indicate the number of heuristic. The following h lines is in the form: city dist which means the straight-line distance from the city to B is dist.

    標(biāo)簽: Implemented following compile command

    上傳時(shí)間: 2014-01-01

    上傳用戶:lhc9102

  • it is used for initializing stack and c environment .you can open it with ADS 1.2

    it is used for initializing stack and c environment .you can open it with ADS 1.2,It is only experiment plan for your study!

    標(biāo)簽: initializing environment stack it

    上傳時(shí)間: 2014-01-05

    上傳用戶:xuanjie

主站蜘蛛池模板: 宜黄县| 泾川县| 新乡市| 芮城县| 荣昌县| 盐城市| 健康| 城市| 盈江县| 丹棱县| 泰宁县| 芷江| 尚志市| 黔西| 正阳县| 奉新县| 广汉市| 屏山县| 衡阳市| 锡林浩特市| 安西县| 民县| 溧阳市| 金湖县| 文昌市| 灵璧县| 南华县| 临高县| 达孜县| 都昌县| 阿勒泰市| 天门市| 友谊县| 建宁县| 石嘴山市| 高尔夫| 南投市| 林周县| 武山县| 静乐县| 盐山县|