Skip to content

Instantly share code, notes, and snippets.

View lexdene's full-sized avatar

Elephant Liu lexdene

  • 中国北京 Beijing China
  • 05:27 (UTC +08:00)
View GitHub Profile
@lexdene
lexdene / bigInt.cpp
Last active August 29, 2015 14:08 — forked from masquevil/bigInt.cpp
#include<iostream>
#include<string>
#include<time.h>
#include "bigInt.h"
using namespace std;
BigInt::BigInt(){ //构造函数
head = tail = temp = NULL;
symbol = '+';
length = 0;
在.emacs.d/core/prelude-core.el最后添加函数
(defun prelude-py-taglist (arg)
"简易版taglist"
(interactive "P")
(let ((buffer-other
(if arg
"*py-taglist*"
(format "*py-taglist from %s*" (buffer-name)))))
(occur-1 "class \\|def " nil