由买买提看人间百态

topics

全部话题 - 话题: 10101010
1 (共1页)

发帖数: 1
1

=====================
内存中数据的存储
计算机要处理的信息是多种多样的,如十进制数、文字、符号、图形、音频、视频等,
这些信息在人们的眼里是不同的。但对于计算机来说,它们在内存中都是一样的,都是
以二进制的形式来表示。
要想学习编程,就必须了解二进制,它是计算机处理数据的基础。
内存条是一个非常精密的部件,包含了上亿个电子元器件,它们很小,达到了纳米级别
。这些元器件,实际上就是电路;电路的电压会变化,要么是 0V,要么是 5V,只有这
两种电压。5V 是通电,用1来表示,0V 是断电,用0来表示。所以,一个元器件有2种
状态,0 或者 1。
我们通过电路来控制这些元器件的通断电,会得到很多0、1的组合。例如,8个元器件
有 28=256 种不同的组合,16个元器件有 216=65536 种不同的组合。虽然一个元器件
只能表示2个数值,但是多个结合起来就可以表示很多数值了。
我们可以给每一种组合赋予特定的含义,例如,可以分别用 1101000、00011100、
11111111、00000000、01010101、10101010 来表示 C、语、言、中、文、... 阅读全帖
l**n
发帖数: 43
2
来自主题: JobHunting版 - 请教一道老题目
二进制表示的byte串
01101111 10101010 01010101
第一个byte 01101111 组成了第一个character,因为第一个byte以0开头
第二三个byte 10101010 01010101组成了第二个character,因为第二个byte以1开头
从尾向前扫描一遍,就可以判断最后一个byte是属于一个单字节的字符还是双字节的字符
x*******e
发帖数: 1517
3
来自主题: Military版 - 中文里数字三位一逗号是外F吧?
用10101010本身就是外f
我大中华应该用壹佰萬

发帖数: 1
4
来自主题: Military版 - 薪水碾压日本白领,然并卵
关键词,外汇管制
10101010
f**o
发帖数: 12685
5
来自主题: Military版 - 庄小威与张一堂谁耕牛?
哈哈哈
10101010


: 还用说吗?

: 张益唐这种进名人堂的人物哪是那些attention shore能比得了的?

f**o
发帖数: 12685
f**o
发帖数: 12685
7
来自主题: Military版 - 如果换成星光,可能逃过一劫
哈哈哈10101010
f**o
发帖数: 12685
8
属实10101010


: 逻辑性太差。

: 不着边际。

: :错了吧 印度阿三骑在老将身上肆意抽查 把老将马公插的死去活来

: :【 在 Demchugdongr(希賢) 的大作中提到: 】

: :
f**o
发帖数: 12685
9
来自主题: Military版 - 中航月又造谣了!
属实
10101010


: 长老,此人脸皮跟老太监一样厚,只能用铁锤砸

f**o
发帖数: 12685
10
来自主题: Military版 - 李将军在中国相当于谁?
吴三桂10101010
f**o
发帖数: 12685
11
来自主题: Military版 - 你们好,我是颜宁
扯淡10101010
c*********2
发帖数: 2752
12
来自主题: Military版 - 政治军事经济能力
潘冬子
10个字10101010


: 林彪不懂经济,啪啪啪也不行

c*********2
发帖数: 2752
13
你这过的火星时间?
10101010
D****y
发帖数: 462

发帖数: 1
15
没钱了还玩个屁10101010
a*****n
发帖数: 2499
16
写不同的文件7次,然后格式化。
文件内容全是 binary 10101010.
叫你恢复个鸟出来。
h*****7
发帖数: 6781
17
来自主题: Automobile版 - #### 闯王上台,发包子了 ####
Re 10101010
i*d
发帖数: 2640
18
10101010 和10 1 010 1 0 有区别么?

cable
I**A
发帖数: 2345
19
来自主题: JobHunting版 - 谁有兴趣做道题?
You are given an array ' containing 0s and 1s. Find O(n) time and O(1) space
algorithm to find the maximum sub sequence which has equal number of 1s and
0s.
Examples
10101010
The longest sub sequence that satisfies the problem is the input itself
1101000
t****a
发帖数: 1212
20
来自主题: JobHunting版 - one amazon interview problem
You are given an array ' containing 0s and 1s. Find O(n) time and O(1) space
algorithm to find the maximum sub sequence which has equal number of 1s and
0s.
Examples
1) 10101010
The longest sub sequence that satisfies the problem is the input itself
2)1101000
The longest sub sequence that satisfies the problem is 110100
p********7
发帖数: 549
21
来自主题: JobHunting版 - 问个AMAZON以前没讨论出结果的题
You are given an array ' containing 0s and 1s. Find O(n) time and O(1) space
algorithm to find the maximum sub sequence which has equal number of 1s and
0s.
Examples
1) 10101010
The longest sub sequence that satisfies the problem is the input itself
2)1101000
The longest sub sequence that satisfies the problem is 110100
我想到一个办法,不知道是否正确
1.因为不知道1和0谁多,不好执行算法,所以先遍历一次统计下1和0数量,选少的那个
做标准
2.想统计10,想到的办法就是如果是1就+1,如果是0就-1,如果sum == 0就统计一次
长度,这样我们发现似乎对于上面例子这个办法可以work,不过如果上面的string反置
,这个办法就不work了,因为以为后面的0太多,而
C*****5
发帖数: 8812
22
来自主题: Stock版 - 今天你卖NVDA了吗?
那就好10101010


: 这次我是看错了,也没啥教训不教训的,安全第一

: 我周五卖了nvda,买了tsla,也还不错

C*****5
发帖数: 8812
d****n
发帖数: 1637
24
来自主题: Texas版 - 看看有没有你的密码
密码 重复次数
123456789 235012
12345678 212749
11111111 76346
dearbook 46053
00000000 34952
123123123 19986
1234567890 17790
88888888 15033
111111111 6995
147258369 5965
987654321 5553
aaaaaaaa 5459
1111111111 5145
66666666 5025
a123456789 4435
11223344 4096
1qaz2wsx 3667
xiazhili 3649
789456123 3610
password 3501
87654321 3281
qqqqqqqq 3277
000000000 3175
qwertyuiop 3143
qq123456 3094
iloveyou ... 阅读全帖
f*********e
发帖数: 8453
25
来自主题: Tennis版 - Rafael Nadal WITHDRAWS from Acapulco
票选的不好操纵。10101010


: 估计是被费费拿两罗伦斯奖给气的

: 组委会真的有点不公平 为啥不分一个给豆子呢?

: 豆子去年成绩不比费费差的

L******d
发帖数: 2461
26
SDN杯我最喜欢的CSDN密码评选
nasdaq 软件工程师,小众软件爱好者 ψ 只看Ta
2011-12-21 21:38
今天有黑客在网上公开了知名网站CSDN的用户数据库,这是一次严重的暴库泄密事件,
涉及到的账户总量高达600万个。有人写了一个小程序,统计了这次公布的 6428632 个
CSDN 哪些密码出镜率较高?统计结果显示有239万人的密码和别人存在重复,在所有
密码中,123456789出镜率高居榜首,有23万5千人使用它作为密码。
重复次数 密码 百分比
501 qwerasdf (0.0124073903469017)
504 computer (0.012481686097482)
519 zxczxczxc (0.0128531648503832)
521 dddddddd (0.0129026953507701)
525 299792458 (0.0130017563515437)
532 135792468 (0.0131751131028976)
535 20082008 (0.0132494088534779)
536 369369369 (0.013... 阅读全帖
z*****n
发帖数: 7639
27
If the input signal is baseband, such as NRZ or NRZI, the maximum
bit rate can be achieved is f_s: thinking of the worst case, which
the inputing bit pattern is 10101010... at f_s b/s, your sampler
takes sample at middle of each bit, you will get it.
However, this demands strict bitwise synchronization, as you will
find that when the sampling freq. drifts away from input signal
clock, you will eventually get error reception.
In practice, we often use over-sampling plus digital phase
loop-lock (D
1 (共1页)