码迷,mamicode.com
首页 > 其他好文
黑马程序员-利用swap函数研究C的指针
设计3个函数,分别实现已下功能:交换两个整数交换两个整形指针交换任意两个同类型的变量 1 #include 2 #include 3 #include 4 void swap_int(int* pa, int* qa) //交换两个整数 5 { 6 int temp = *pa; 7 ...
分类:其他好文   时间:2015-09-22 06:37:56    阅读次数:129
Leetcode Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他好文   时间:2015-09-22 06:38:14    阅读次数:144
100块钱能做什么呢?
100块钱能做啥?现在的100块钱真是一点都不值钱了。 口袋里没有三百块钱就没法出去逛街。两个人吃个简单的饭就得100。 买个衬衫100块还不够。 放余额宝里一年也就一毛多钱。但是如果你选择用100块钱来买莘生币的话。 三个月既能翻一二十倍。 如果放个一年半载至少能翻100倍。莘生币是刚发行的一种虚...
分类:其他好文   时间:2015-09-22 06:38:31    阅读次数:157
虚拟机搭建ftp环境
引用http://www.cnblogs.com/xiangxiaodong/archive/2013/12/23/3487028.html,学习。本人是在Oracle VM VirtualBox下的CentOS6.2下进行操作的。操作流程如下:1,以管理员(root)身份执行以下命令,安装FTP服...
分类:其他好文   时间:2015-09-22 06:36:59    阅读次数:170
RFID emulator
RFID emulatorThe underground waste containers in my neighborhood used to have an access system based on Texas Instruments’ TIRIS RFID tags.The tags co...
分类:其他好文   时间:2015-09-22 06:35:59    阅读次数:313
Leetcode Contains Duplicate II
Given an array of integers and an integerk, find out whether there are two distinct indicesiandjin the array such thatnums[i] = nums[j]and the differe...
分类:其他好文   时间:2015-09-22 06:36:31    阅读次数:124
十问华为战略营销总裁徐文伟
李娜 在华为云计算大会期间,《第一财经日报》记者独家专访了华为战略营销总裁徐文伟。对于未来华为在云计算领域的地位,徐文伟表示:“华为发展很快,是不是什么都想做?如果什么都想做,那就什么都做不成。” 上不做应用下不碰数据 第一财经日报:华为过去主要聚焦在企业的私有云市场上,选择此时进入公有云出于...
分类:其他好文   时间:2015-09-22 06:36:27    阅读次数:227
Leetcode Contains Duplicate III
Given an array of integers, find out whether there are two distinct indicesiandjin the array such that the difference betweennums[i]andnums[j]is at mo...
分类:其他好文   时间:2015-09-22 06:35:16    阅读次数:173
RFID Circuit diagram
RFID Circuit diagram
分类:其他好文   时间:2015-09-22 06:34:27    阅读次数:110
关于准确度Accuracy和分辨率Resolution
关于准确度Accuracy和分辨率Resolution,举一个例子:一把塑料尺子,最小刻度是1mm,拿它量东西,就不能读出1mm以下的数来,那么这个1mm就是它的(最小)分辨率,即最小可分辨的度量。如果已经知道一个物体的实际长度是100mm,拿这把尺子来测量,量出来的数据是102mm,那么这个尺子的...
分类:其他好文   时间:2015-09-22 06:35:34    阅读次数:226
RFID Emulator -- Scheme emulator RFID-tag
Scheme emulator RFID-tag/* Basic schematic: * * ATtiny85 * +--------------+ * --| RST Vcc |-- * +- L1 ---...
分类:其他好文   时间:2015-09-22 06:36:02    阅读次数:1032
125 kHz RFID Reader
125 kHz RFID Reader?A small circuit to read RFID badges operating at 125 kHz (EM4102)?This circuit is used here :Coffee Tally Sheet ? Kaffee-Strichlis...
分类:其他好文   时间:2015-09-22 06:34:34    阅读次数:1294
Creating a RFID Reader From Scratch
Creating a RFID Reader From Scratch Part 1For a couple of years now, each fall, I've been attending the ritual of collecting sheep from their summer p...
分类:其他好文   时间:2015-09-22 06:36:02    阅读次数:346
RFID Emulator -- A Universal RFID Key
A Universal RFID KeyRFID projects have been pretty prominent recently, ranging from projects here in Instructables, to our local Silicon Chip magazine...
分类:其他好文   时间:2015-09-22 06:33:55    阅读次数:286
Assignment 1 :Percolation
最初版本的实现十分容易,采用课程的提示,在UF中添加 virtual top site 和 virtual bottom site,并采用的是用一个boolean数组op跟踪一个site是否打开,如果未打开,则调用open函数。但是这样会出现 backwash 问题,即 percolates 后一个...
分类:其他好文   时间:2015-09-22 06:35:20    阅读次数:130
RFID Reader for the 125 kHz frequency
RFID Reader BasicsThe RFID reader continuously transmits a 125 kHz carrier signal using its antenna. The passive RFID tag, embedded in an id card for ...
分类:其他好文   时间:2015-09-22 06:33:09    阅读次数:653
零碎知识点01
1.需要设置Button的image和backgroundImage,建议先把按钮类型改为custom,才能保证设置成功例: [self.button setImage:image forState:UIControlStateNormal]; [self.button setBackgrou...
分类:其他好文   时间:2015-09-22 06:33:20    阅读次数:221
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!