有一段時間每天早上坐地鐵出門。到西直門換2號線時,人群像一支巨大的洪流要將我吞沒。在車廂裡一站定拿出那本黃色封面的小冊子,心情頓時平靜許多。每讀一遍都會有新的感受。覺得不錯的一個章節,是小王子和狐狸關於玫瑰的對話。The little prince went away, to look again at the roses. "You are not at all like my rose," he said. "As yet you are nothing. No one has tamed
// 124.cpp : Defines the entry point for the console application.//#include "stdafx.h"#define n 10int G[n][n]={{1,1,0,1,0,1,0,0,0,0}, {1,1,1,1,0,0,0,0,0,0}, {0,1,1,1,1,0,0,0,0,0}, {1,1,1,1,1,1,1,0,0,0}, {0,0,1,1,1,
UNIT TENPart OneWarm UpDialogue 1A: You’re not going to believe what happened today. You’ve got to promise to keep it to yourself.B: Sure,what gives?A: Today Mr. Leo threw Jane out of class! B: On the level?A: I’ll say. I knew Sally would
There are lots of public holidays in singapore In recent days, 20th Dec. 2007 is Hari Raya Haji, a Muslims holiday. 25th Dec. 2007 is the Christmas day. and between the 20th and 25th, there is a weekend. But i never think there is too much
在很多時候,我們心裏面有很多好的想法,心裡盤算著要付諸實現,最後卻都不了了之。經常把要做的事列了個清單,準備一一實現,最後卻一件都沒有做。有的時候正在做計劃裡的事,但是做了一陣子或者覺得太枯燥了,或者碰到困難了,中間開小差,結果是半途而廢。網上看到這篇文章給了我們很好的建議,想要克服這些毛病的,或者想要在這些習慣方面有所進步的人,都去看看吧。以下是連結。How to Actually Execute Your To-Do List: or, Why Writing It Down
#include<stdio.h>#include<stdlib.h>#include<malloc.h>struct list{ int data; struct list *next; struct list *pre; };typedef struct list node;typedef node *link;link front=NULL,rear,ptr,head=NULL;link push(int item){link newnode=