监控维保方案及表格.
2022-05-04 09:04:47 419KB 文档资料 区块链
监控集中存储方案
2022-05-04 09:04:37 262KB 文档资料 区块链 监控集中存储方案
监控工程施工方案
2022-05-04 09:04:36 231KB 文档资料 区块链 监控工程施工方案
监控系统防雷方案
2022-05-03 19:05:42 1.08MB 文档资料 区块链 监控系统防雷方案
Bitcoin is starting to come into its own as a digital currency, but the blockchain technology behind it could prove to be much more significant. This book takes you beyond the currency ("Blockchain 1.0") and smart contracts ("Blockchain 2.0") to demonstrate how the blockchain is in position to become the fifth disruptive computing paradigm after mainframes, PCs, the Internet, and mobile/social networking. Author Melanie Swan, Founder of the Institute for Blockchain Studies, explains that the blockchain is essentially a public ledger with potential as a worldwide, decentralized record for the registration, inventory, and transfer of all assets—not just finances, but property and intangible assets such as votes, software, health data, and ideas. Topics include: Concepts, features, and functionality of Bitcoin and the blockchain Using the blockchain for automated tracking of all digital endeavors Enabling censorship?resistant organizational models Creating a decentralized digital repository to verify identity Possibility of cheaper, more efficient services traditionally provided by nations Blockchain for science: making better use of the data-mining network Personal health record storage, including access to one’s own genomic data Open access academic publishing on the blockchain
2022-05-02 23:47:20 3.24MB blockchain 区块链
1
环形队列的实现:在计算机中,也是没有环形的内存的,只不过是我们将顺序的内存处理过,让某一段内存形成环形,使他们首尾相连,简单来说,这其实就是一个数组,只不过有两个指针,一个指向列队头,一个指向列队尾。指向列队头的指针(Head)是缓冲可读的数据,指向列队尾的指针(Tail)是缓冲可写的数据,通过移动这两个指针(Head) &(Tail)即可对缓冲的数据进行读写操作了,直到缓冲已满(头尾相接),将数据处理完,可以释放掉数据,又可以进行存储新的数据了。 实现的原理:初始化的时候,列队头与列队尾都指向0,当有数据存储的时候,数据存储在‘0’的地址空间,列队尾指向下一个可以存储数据的地方‘1’,再有数据来的时候,存储数据到地址‘1’,然后队列尾指向下一个地址‘2’。当数据要进行处理的时候,肯定是先处理‘0’空间的数据,也就是列队头的数据,处理完了数据,‘0’地址空间的数据进行释放掉,列队头指向下一个可以处理数据的地址‘1’。从而实现整个环形缓冲的数据读写。 1/** 2* @brief Write_RingBuff 3* @param u8 data 4* @return FLASE:环形缓冲已满,写入失败;TRUE:写入成功 5* @author 杰杰 6* @date 2018 7* @version v1.0 8* @note 往环形缓冲写入u8类型的数据 9*/ 10u8 Write_RingBuff(u8 data) 11{ 12 if(ringBuff.Lenght >= RINGBUFF_LEN) //判断缓冲是否已满 13 { 14 return FLASE; 15 } 16 ringBuff.Ring_Buff[ringBuff.Tail]=data; 17// ringBuff.Tail++; 18 ringBuff.Tail = (ringBuff.Tail+1)%RINGBUFF_LEN;//防止越界非法访问 19 ringBuff.Lenght++; 20 return TRUE; 21} 具体见我博客:https://blog.csdn.net/jiejiemcu/article/details/80563422
2022-05-02 20:05:23 2.62MB stm32 串口 环形队列 缓冲区 
1
网络安全实验
2022-05-02 19:22:59 100KB 网络安全
1
大数据-算法-~(18)F-FDG-PETCT用于精确确定非小细胞肺癌放疗靶的定量条件的研究.pdf
2022-05-02 19:07:06 4.66MB 大数据
基于CL IM EX 的桔小实蝇在中国适生的预测
2022-05-02 14:07:12 16KB 文档资料
基于InVEST 模型的三江源生态系统水源供给服务时空变化
2022-05-02 14:06:55 641KB 文档资料