Skip to content

Instantly share code, notes, and snippets.

@xuefu
xuefu / disk_sort.c
Last active August 29, 2015 14:03
disk_sort
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define MAX_BUF 20
#define MAX_SCOPE 10000000
#define FILE_NAME "all_nums.txt"
#define FILE_RESULT "sorted_nums.txt"
/* 将长度为n字符串str反转 */
@xuefu
xuefu / _vimrc
Created September 4, 2013 13:06
my vim configure file
" vim-complete-rails
" h i_CTRL-X_CTRL-K
" h new-omni-completion
" h i_CTRL-X_CTRL-O
" An example for a vimrc file.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2011 Apr 15
"
@xuefu
xuefu / hello.cpp
Created June 7, 2013 14:31
coding for fun ...
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
return 0;
}