Skip to content

Instantly share code, notes, and snippets.

View chenyukang's full-sized avatar
💭
I may be slow to respond.

Yukang chenyukang

💭
I may be slow to respond.
View GitHub Profile
#include <stdio.h>
int main()
{
return 0;
}
@chenyukang
chenyukang / gist:3090254
Created July 11, 2012 12:59
branch-pre
#include <algorithm>
#include <ctime>
#include <iostream>
int main()
{
// generate data
const unsigned arraySize = 32768;
int data[arraySize];
@chenyukang
chenyukang / gist:3900077
Created October 16, 2012 15:46
Peng's delegate
/*******************************************************************************
*
* @name : DELEGATE_H
*
* @author : BigBird (peng@nextopsoftware.com)
* @date : 2012-10-16 21:58:04
*
* @brief :
*
# Class Tree
# ruby prog.rb > class.dot;dot -Tpng class.dot -o class.png;
def readable(str)
if str.length >= 30
return false
end
for k in 0..str.length-1
s = str[k]
if not ((s>='a' and s<='z') or (s>='A' and s<='Z') or (s >='0' and s<='9'))
@chenyukang
chenyukang / gist:5364515
Created April 11, 2013 15:46
xor link list
//http://en.wikipedia.org/wiki/XOR_linked_list
//use one pointer to construct double-link list
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
struct item{
void* nextprev;
@chenyukang
chenyukang / gist:8265615
Last active October 8, 2019 11:01
DFA construction for a simple regular expression match question.
#include <iostream>
#include <string>
#include <vector>
#include <set>
#include <stdio.h>
#include <assert.h>
using namespace std;
enum OpType {
package main
import (
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"io/ioutil"
"os"
;; golang
(add-to-list 'load-path "~/.emacs.d/go-mode")
(require 'go-mode)
(require 'go-mode-load)
(require 'go-autocomplete)
(require 'auto-complete-config)
(setq gofmt-command "goimports")
(load-file "~/.emacs.d/go-autocomplete.el")
(add-hook 'before-save-hook 'gofmt-before-save)
package main
import "fmt"
// send the sequence of 2, 3, 4, .... to returned channel
func generate() chan int {
ch := make(chan int)
go func() {
for i := 2; ; i++ {
ch <- i
@chenyukang
chenyukang / gist:0f67b9ef0a8c32aa8f95
Last active July 16, 2022 16:00
网络安装Ubuntu 14.04 server