Feng 的个人资料this.Pray();照片日志列表更多 ![]() | 帮助 |
|
this.Pray();Silence Can Be Heard
3月17日 我还是一名IT人员啊1 class QuickSorter 2 { 3 public void DoSort(List<int> list) 4 { 5 QSort(list, 0, list.Count - 1); 6 } 7 8 private void QSort(List<int> list, int l, int u) 9 { 10 if (l >= u) 11 { 12 //lower >= upper, return 13 return; 14 } 15 16 int m = l; //at first, set the middle at left 1st slot 17 18 for (int i = l + 1; i <= u; i++) //start from left 2nd slot 19 { 20 if (list[i] < list[l]) //compare with pivotValue(left 1st item: list[l]) 21 { 22 //if current list[i] < the left 1st item value 23 //"push" the smaller item before middle index by 1) middle index ++, 2) swap the smaller number and middle index item 24 m++; 25 Swap(list, i, m); 26 } 27 } 28 29 //now "i" reaches upper, the final step is set pivotValue(list[l]) to its correct middle position 30 Swap(list, l, m); 31 //Okay, we have set the pivotValue(list[l]) at its correct middle position of list[u, l] 32 //list[l, m-1] <= list[m] <= list[m+1, u] 33 34 QSort(list, l, m - 1); 35 QSort(list, m + 1, u); 36 } 37 38 private void Swap(List<int> list, int x, int y) 39 { 40 int temp = list[x]; 41 list[x] = list[y]; 42 list[y] = temp; 43 } 44 } 12月9日 When a X-700 Meets a X-300When a Man Loves a Woman If she is bad, he can't see it When a man loves a woman He'd give up all his comforts Well, this man loves you, woman When a man loves a woman If she is playin' him for a fool When a man loves a woman Yes, when a man loves a woman When a man loves a woman. 10月20日 迷上Louis ArmstrongLa Vie En Rose A Kiss To Build A Dream On 一个荒芜的地球上(Wall-E是一个布满垃圾的世界, 而Fallout2是核战后的世界), Armstrong的声音缓缓的响起... 10月17日 同学们, 借我本高中英语语法书吧最近发现自己的语法太差, 什么介词副词主动被动加ing还是不加ing统统不清楚... 不是我把学的都还给老师, 而是压根当年就没学会. 国庆转档案的时候一看当年的高考成绩, 嘿, 英语54分...恩, 满分是内啥, 150....囧... 9月21日 雨中的Jazz音乐节刚回来, 很淋漓尽致的一天. 大雨, 穿着雨衣, 坐在草地上, 啃鸭脖, 听音乐, 喝啤酒, 和朋友聊天, 痛快! 最爱THE RHYTHM JUNKS的现场氛围~~ 大伙都high翻了 不过, 我的X700坏啦! 不知道是今天淋雨淋的, 还是中秋去安徽旅游摔的.... 上海哪里能修啊? 9月20日 Make love, not war8月20日 好久没有这样忙碌了 周一看牙,下午在家忙到飞起 周二在公司忙到飞起 周三看牙, 下午在家忙到飞起 (还因为打了麻药, 右边脸面瘫了-_-) 白天写无数的mail, 晚上开无数的会, 拼了老命对付充斥着HPCM, Installshield, UAT, MTP等等这堆无聊单词的烂摊子 domain, support, testing, biz team还有咱们自己, 为了月底的项目上线全部卯足了劲 连续3天除了睡觉/去医院之外, 就是对着电脑工作了. 不得不自虐的说, 忙起来真的很爽, 不过我自己还有自己的好多事情没做啊!!!! 8月1日 Sunset7月29日 在旧金山的最后一天在旧金山的最后一天,完全不像前一天那么阳光明媚, 薄薄的雾气笼罩着城市. ![]() 早早出门, 街上几乎没有什么行人. 一个人站在路边静静的等待Cable Car, ![]() 昨天排着长龙的车上, 今天只稀稀拉拉的坐了几个乘客. ![]() 来到Grace Cathedral Episcopal Church. 教堂中心的地板上画着很漂亮的图案, 而且是一笔画成那种. 有个女孩子在静静的沿着笔画走~~ ![]() 在旧金山留下的最后一张照片, 总有一天我会再回来的. |
|||||
|
|