Skip to content

Instantly share code, notes, and snippets.

@andyfangdz
andyfangdz / Outline.md
Last active December 31, 2015 00:39
TOEFL Writing Preparation

1.*Agree or disagree, the purpose of TV is to educate rather than entertain.

Thesis:Disagree
Subpoint1
{
    There are a lot of successful entertainment TV programs.
    Like: TV Dramas, (TBBT)
}
@andyfangdz
andyfangdz / sort.cpp
Last active December 27, 2015 18:49
Code tutoring
#include <iostream>
#include <algorithm>
using namespace std;
struct node
{
char name[100];
int score;
}list[100];
bool cmp(node a,node b)
{