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

There

  • Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test c

    Implementation of Edmonds Karp algorithm that calculates maxFlow of graph. Input: For each test case, the first line contains the number of vertices (n) and the number of arcs (m). Then, There exist m lines, one for each arc (source vertex, ending vertex and arc weight, separated by a space). The nodes are numbered from 1 to n. The node 1 and node n should be in different sets. There are no more than 30 arcs and 15 nodes. The arc weights vary between 1 and 1 000 000. Output: The output is a single line for each case, with the corresponding minimum size cut. Example: Input: 7 11 1 2 3 1 4 3 2 3 4 3 1 3 3 4 1 3 5 2 4 6 6 4 5 2 5 2 1 5 7 1 6 7 9 Output: 5

    标签: Implementation calculates algorithm Edmonds

    上传时间: 2014-01-04

    上传用户:kiklkook

  • This paper presents a new adaptive mobility-aware MAC protocol for sensor networks (MS-MAC). The p

    This paper presents a new adaptive mobility-aware MAC protocol for sensor networks (MS-MAC). The protocol uses any change in received signal level as an indication of mobility and, when necessary, triggers the mobility handling mechanism. By doing this way, the new mobility-aware MAC protocol can work very energy-efficiently when the network is stationary, whereas it can maintain some level of network performance when There are mobile sensors.

    标签: mobility-aware adaptive networks presents

    上传时间: 2014-01-11

    上传用户:libenshu01

  • To use the MSSP port to communicate with 3-wire devices, the bytes to be output must be aligned

    To use the MSSP port to communicate with 3-wire devices, the bytes to be output must be aligned such that the LSB of the address is the 8th bit (LSB) of a byte to be output. From There, the bits should fill the byte from right to left consecutively.

    标签: communicate the aligned devices

    上传时间: 2013-12-28

    上传用户:lhw888

  • PenguinCards is a java-based card game. You can either play against computer or another player. On t

    PenguinCards is a java-based card game. You can either play against computer or another player. On the board, There are card pairs and your aim is to find out these card pairs. The one who finds out more card pairs is the winner. Have fun!

    标签: PenguinCards java-based computer against

    上传时间: 2013-12-17

    上传用户:xfbs821

  • it is a cleaner for windows msconfig when you disable an msconfig item it will still appear on th

    it is a cleaner for windows msconfig when you disable an msconfig item it will still appear on There. This programme let you remove disabled msconfig items

    标签: msconfig cleaner disable windows

    上传时间: 2013-12-24

    上传用户:恋天使569

  • This circuit is a nice edge detector that gives you synchronous notification of edges on your input

    This circuit is a nice edge detector that gives you synchronous notification of edges on your input signal. There s no excuse for not doing this it s a tiny circuit in just five lines of Verilog.

    标签: notification synchronous detector circuit

    上传时间: 2017-09-18

    上传用户:xieguodong1234

  • This is svd source code implementation in c++ , the zip file contain the ap file ,more detail ,plea

    This is svd source code implementation in c++ , the zip file contain the ap file ,more detail ,please see the ap library adapted for c++ in the zip file.also There is faq to answer your question.

    标签: file implementation the contain

    上传时间: 2013-12-27

    上传用户:aappkkee

  • What you always wanted to know about networking but were afraid to ask! * How the Internet work

    What you always wanted to know about networking but were afraid to ask! * How the Internet works * How e-mail, e-learning, and telephony work on the Internet * What makes a network safe * How traffic gets from here to There * Disaster recovery and other ways to keep a network running * How businesses share data * See the world of Cisco networking with this illustrated guide s visual approach to learning * Useful for both novices and networking professionals * Covers a broad variety of internetworking topics-from e-mail to VPNs At last-an illustrated guide to the world of Cisco networking. Cisco Networking Simplified breaks down the complicated world of internetworking into easy-to-understand parts. Learn quickly and easily the fundamentals of a variety of topics, such as security, IP telephony, and quality of service, from the full-color diagrams and clear explanations found in Cisco Networking Simplified.

    标签: networking Internet always afraid

    上传时间: 2013-12-14

    上传用户:520

  • data are often used interchangeably, they are actually very different. Data is a set of unrelated in

    data are often used interchangeably, they are actually very different. Data is a set of unrelated information, and as such is of no use until it is properly evaluated. Upon evaluation, once There is some significant relation between data, and they show some relevance, then they are converted into information. Now this same data can be used for different purposes. Thus, till the data convey some information, t

    标签: interchangeably are different unrelated

    上传时间: 2017-09-26

    上传用户:cxl274287265

  • Delphi 泛型容器 TDictionary 的用法 Demo

    Collection of key-value pairs.  TDictionary represents a generic collection of key-value pairs.  This class provides a mapping from a collection of keys to a collection of values. When you create a TDictionary object, you can specify various combinations of initial capacity, equality operation, and initial content.  You can add a key that is associated with a corresponding value with the Add or AddOrSetValue methods. You can remove entries with Remove or Clear, which removes all key-value pairs. Adding or removing a key-value pair and looking up a key are efficient, close to O(1), because keys are hashed. A key must not be nil (though a value may be nil) and There must be an equality comparison operation for keys.  You can test for the presence or keys and values with the TryGetValue, ContainsKey and ContainsValue methods.  The Items property lists all Count dictionary entries. You can also set and get values by indexing the Items property. Setting the value this way overwrites any existing value.  The class TObjectDictionary inherits from TDictionary and provides an automatic mechanism for freeing objects removed from dictionary entries. 

    标签: Delphi 泛型

    上传时间: 2015-07-01

    上传用户:mirage