素材牛VIP会员
请问您所见过的最棒的一段代码是什么?
 十***刻  分类:Python  人气:1467  回帖:16  发布于6年前 收藏
import re, collections
def words(text): return re.findall('[a-z]+', text.lower()) 
def train(features):
    model = collections.defaultdict(lambda: 1)
    for f in features:
        model[f] += 1
    return model
NWORDS = train(words(file('big.txt').read()))
alphabet = 'abcdefghijklmnopqrstuvwxyz'
def edits1(word):
   splits     = [(word[:i], word[i:]) for i in range(len(word) + 1)]
   deletes    = [a + b[1:] for a, b in splits if b]
   transposes = [a + b[1] + b[0] + b[2:] for a, b in splits if len(b)>1]
   replaces   = [a + c + b[1:] for a, b in splits for c in alphabet if b]
   inserts    = [a + c + b     for a, b in splits for c in alphabet]
   return set(deletes + transposes + replaces + inserts)
def known_edits2(word):
    return set(e2 for e1 in edits1(word) for e2 in edits1(e1) if e2 in NWORDS)
def known(words): return set(w for w in words if w in NWORDS)
def correct(word):
    candidates = known([word]) or known(edits1(word)) or known_edits2(word) or [word]
    return max(candidates, key=NWORDS.get)
;

Peter Norvig的Spelling Corrector

讨论这个帖子(16)垃圾回帖将一律封号处理……

Lv7 码师
封***榜 职业无 6年前#1

最神奇的代码莫过于 Quake III 中不可思议的求解平方根实现方法,尤其是神奇的常量0x5f3759df

float Q_rsqrt( float number )
{
    long i;
    float x2, y;
    const float threehalfs = 1.5F;

    x2 = number * 0.5F;
    y  = number;
    i  = * ( long * ) &y;  // evil floating point bit level hacking
    i  = 0x5f3759df - ( i >> 1 ); // what the fuck?
    y  = * ( float * ) &i;
    y  = y * ( threehalfs - ( x2 * y * y ) ); // 1st iteration
    // y  = y * ( threehalfs - ( x2 * y * y ) ); // 2nd iteration, this can be removed

    #ifndef Q3_VM
    #ifdef __linux__
        assert( !isnan(y) ); // bk010122 - FPE?
    #endif
    #endif
    return y;
}

还有这句比较好玩的:

rm -rf /usr /lib/nvidia-current/xorg/xorg

源自 https://github.com/MrMEEE/bumblebee/c...

Lv2 入门
he***ba JS工程师 6年前#2

= =这种问题,不应该出现在知乎么?为啥在segmentdefault。。。。。

Lv1 新人
多***悟 学生 6年前#3

hello world

Lv3 码奴
上***水 职业无 6年前#4

看这个 国际C语言混乱代码大赛
https://zh.wikipedia.org/wiki/%E5%9B%...

Lv4 码徒
小***学 软件测试工程师 6年前#5

好吧,应该是这段,2011最佳代码Scala版

def believe(x: Any) = x match {
  case b: Boolean => "I believe."
  case _ => "It's miracle!"
}
Lv3 码奴
凤***奇 职业无 6年前#6

很多,我觉得不需要文档和注释扫一眼就能看懂的代码都是很棒的代码。

上一页12下一页
 文明上网,理性发言!   😉 阿里云幸运券,戳我领取