24h購物
|
|
PChome
|
登入
Morris' Blog
我在摸索我存在的意義、生命的意義、內涵及價值。 沒有真正神手般的厲害,套用模式是大部分的情況。 沒那麼厲害的我存在的意義為何,襯托出神的存在? 有時候不能怪別人不給我機會,我已經開始省思, 為什麼我沒有給別人機會的原因,而是全要靠別人。 有時候我認為我與眾不同,那是因為我做不到很多人能辦到的事情。 我聽不到、玩不起來、說得不夠明瞭、理解得不夠多, 我缺少的語文能力,就是一切一切無能的判定。 為此,我不曉得能做些對別人有幫助的事情。 我知道我自己是個不服輸的性格,但現在我不得不認輸。 我沒有能力,因此我必須認輸。 我到底來這世界作什麼?處處充滿不確定性, 而我總是無法出類拔萃,想當個一般人似乎也回不了頭了。 越強大的挑戰需要越強力的支持,而我的支持是什麼? 最近嘗試與人談話,但都是失敗的結局,沒人能接受, 不需要言語,不需要溝通,一切所想都表達不出來。
49
愛的鼓勵
6
訂閱站台
首頁
活動
2014-04-18 22:56:27
[公告] 搬家至另一個地方
2013-03-26 09:42:05
[UVA][中國直式開方、二分、萬進] 10023 - Square root
Square root The ProblemYou are to determinate X by given Y, from expression The InputThe first line is the number of test cases, followed by a blank line. Each test case of the inp...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-26 09:26:57
[MIPS] 巴斯卡三角形 pascal\'s triangle
題目內容:印出巴斯卡三角形使用遞迴找出巴斯卡三角形中第(n,k)個值填入特定位置。改寫的 C/C++ 代碼 如下。#include <stdio.h>int pascal(int n, int k) { if(k == 0 || n == k) return 1; return pascal(n-1...
繼續閱讀...
回應(1)
|
推薦(0)
|
收藏(0)
|
[學習]組合語言
2013-03-26 08:41:00
[MIPS] 泡泡排序 Bubble Sort
題目內容: Bubble sort and Finding median首先宣告一個 11 個 word 大小的記憶體區段做為 array 使用.dataarray: .word 0,0,0,0,0,0,0,0,0,0,0size: .word 11其中 array 中有 11 個零,代表 array 中 11 個變數的初...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
[學習]組合語言
2013-03-25 14:41:16
[編譯器][作業][2014Update] NFA to DFA
Input範例檔1:NFA.txt (l,a,b,2) ----> l (英文字母)表示lambda, 2表示只有兩種input(2,0)(3,0)(0,0)(0,0)(4,5)(0,0)(0,0)(0,0)(4,0)(0,0)(5,0)(5,0)(*,*)(*,*)(*,*)Output範例檔1:DFA.txt (a,b)(1,2)(*3,4,5)(...
繼續閱讀...
回應(2)
|
推薦(0)
|
收藏(0)
|
其他題目
2013-03-25 07:53:44
[UVA][窮舉] 11961 - DNA
K— DNA Time Limit: 1 sec Memory Limit: 32 MB Alan was comleting his internship at chemistry faculty. At the beginning internship seemed to be easy. However one day dean of the faculty o...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-24 22:37:20
[UVA][dp] 11951 - Area
A— Area Time Limit: 1 sec Memory Limit: 32 MB Steve has a dream to move from dormitory where we live now to a private house. He has already earned some money by solving various problems...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-24 20:02:10
[組合語言][作業] convert pattern (binary to string)
作業內容: (10分) Design any 8x8 bit icon with 0,1-pattern, and saved in BStrs (BStr0~BStr7). (20分) A procedure: Convert 0 to blank and 1 to x for each bit in BStrs to the corresponding...
繼續閱讀...
回應(2)
|
推薦(0)
|
收藏(0)
|
[學習]組合語言
2013-03-24 15:53:33
[UVA][四分樹][懶操作] 11992 - Fast Matrix Operations
Problem F Fast Matrix Operations There is a matrix containing at most 106 elements divided into r rows and c columns. Each element has a location (x,y) where 1<=x<=r,1<=y<=c. Ini...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-23 08:28:02
[MIPS] 輸入、輸出數字範例
程式操作很簡單,輸入十一個數字於陣列中,並將這十一個數字輸出。使用 QtSpim 操作環境。#include <stdio.h>int main() { int array[11], size = 11; int *t1 = array, t2 = size; int t0 = 0, v0; int s0 = ...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
[學習]組合語言
2013-03-22 18:13:31
[Notepad++] 增加 MIPS 的 highlight
Notepad++ 沒有內建 MIPS 語言的highligh,因此我們要自己利用user define新增,不過已經有人給現成的,那我們可以直接用。做法如下:在 "%APPDATA%\Notepad++"下找到'userDefineLang.xml",開啟它,貼上原始文章中自...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
亂糟糟筆記
2013-03-22 09:16:25
[UVA][塊狀][JAVA] 100 - The 3n + 1 problem
The 3n + 1 problem Background Problems in Computer Science are often classified as belonging to a certain class of problems (e.g., NP, Unsolvable, Recursive). In this problem you will be anal...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-22 09:09:17
[ZJ] a647. 投資專家
內容 : John是一個赫赫有名的藝術品投資專家,每個月都會計算藝術品投資的盈虧,以審視其獲利。John每個月月底,即開始計算其每一件藝術品的獲利狀況。由 於藝術品的種類繁多,John每個月總是...
繼續閱讀...
回應(1)
|
推薦(0)
|
收藏(0)
|
ZeroJudge
2013-03-22 08:41:12
塊狀鏈表(初版)
[UVA][塊狀鏈表] 11922 - Permutation Transformer[ZJ][塊狀鏈表] a063. SGU 187. Twist and whirl - want to cheat以下代碼是 ZJ a063#include <stdio.h>#include <math.h>#include <algorithm>u...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
各類演算法與示範題目
2013-03-22 08:38:00
[UVA][塊狀鏈表] 11922 - Permutation Transformer
Permutation Transformer Write a program to transform the permutation 1, 2, 3,..., n according to m instructions. Each instruction (a, b) means to take out the subsequence from the a-th to t...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
UVA
2013-03-22 08:33:45
[ZJ][塊狀鏈表] a063. SGU 187. Twist and whirl - want to cheat
內容 : A well-known sharper I*** invented a new way to swindle people. There are N thimbles on the table, and there is a small ball with the number under each of them. The ba...
繼續閱讀...
回應(0)
|
推薦(0)
|
收藏(0)
|
ZeroJudge
第一頁
‹上一頁
51
.
52
.
53
.
54
.
55
.
56
.
57
.
58
.
59
.
60
.
下一頁›
最末頁
«上十頁
第 52 / 142 頁 , 共 2116 筆
下十頁»
自我介紹
Morris
有一天我這麼想「是不是自己樹立了自己的敵人」那麻煩請你們把我逼上死路,不要讓我生不如死。 ...
關於本站
留言板
地圖
加入好友
愛的鼓勵:
49
文章篇數:
2,116
站台人氣
累積人氣:
4,017,937
當日人氣:
178
站內搜尋
標題
內容
標籤
本台最新標籤
Shortest Names
、
12506
、
Flooded!
、
815
、
selection algorithm
、
實做
、
NFA
、
DFA
、
編譯器
、
KD Tree
最新文章
[公告] 搬家至另一個地方
[ZJ][KD Tree] b256. E. 大風吹
[通識心得] 消費文化 (前篇)
[UVA][隨機、亂做] 10715 - Cat
[UVA][塊狀鏈表] 12634 - Pairing Boys and Girls
[UVA][模擬退火] 10228 - Star not a Tree
[POJ][(裸)笛卡爾樹] 1785 - Binary Search Heap Construction
[UVA][笛卡爾樹RMQ] 11235 - Frequent values
[JAVA] 簡易 2D 射擊遊戲(1)
[編譯器][C/C++] simple regex to NFA
最新回應
[UVA] 10701 - Pre, in and post
, (ss)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (jun88)
[UVA] 10701 - Pre, in and post
, (seo)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (Harrison21)
[UVA] 10701 - Pre, in and post
, (Harrison21)
熱門文章
[2013/10更新][資料結構] 誰說非遞迴河內塔不好寫的 ?(71,524)
[C/C++][實做] Selection algorithm(69,442)
[JAVA] 實作拖曳功能(62,002)
[演算法][HW3] 習題討論(44,614)
[MIPS] 輸入、輸出數字範例(37,883)
[電腦攻防][作業1] shell code(33,375)
[高等演算法][作業一] 討論(32,325)
[JAVA][作業] 簡易計算機(30,984)
[ZJ][D&C] d847 2D rank finding problem(30,000)
[記錄][2012/9/2] 轉學考結局&近況(29,871)
[資料結構][HW] 走迷宮 STACK 找出所有路徑(24,793)
[JAVA視窗設計][作業] 小畫家-第一階段布局(20,506)
[演算法][程式作業] huffman code 壓縮與解壓縮(19,685)
國立中興、中正、台北、東華大學 資訊工程學系面試(18,586)
[C++][運算式互轉] 前序、中序、後序互轉(15,070)
[組合語言][練習] 九九乘法表(14,826)
[MIPS] 巴斯卡三角形 pascal\'s triangle(14,679)
[MIPS] 泡泡排序 Bubble Sort(14,533)
[JAVA][作業] JList 清單使用(13,708)
[資料結構][作業] 霍夫曼編碼(13,032)
Quote
「能者過勞,不能者徒勞」
訂閱本站
RSS訂閱
(
如何使用RSS
)
加入訂閱
台長抱怨文
「花蓮高中畢業」
國立中興大學 資工系 大一
國立中央大學 資工系 大二
國立中央大學 資工系 大三
[20130608]程式碼備份
[20130608]BLOG備份
morris821028 [at] gmail.com
文章分類
解題區
ZeroJudge(221)
NPSC(40)
資訊競賽(118)
UVA(1411)
其他題目(65)
解題技巧(9)
演算法(10)
各類演算法與示範題目(27)
雜言記事(74)
亂糟糟筆記(27)
[學習]Java(61)
[學習]JavaScript(17)
[學習]HTML(15)
[學習]組合語言(16)
連結書籤
Morris\' blog on Github
摸索C語言
DJWS演算法筆記
Ruby兔的ACM園地
Unfortunate狗的ACM園地
OnlineSyntaxHighlighting
UVa uHunt
PTC 競賽
CPE 考試
ITSA 競賽
更多
>>
TOP