2011年2月25日

alg_CLRS: graph DFS, topological sort

摘要: #include<stdio.h>#include<algorithm>#include<map>//DFSref:CLRS$22.3&22.4#defineMAX_VERTEX10intG[MAX_VERTEX][MAX_VERTEX]={0};intnVertex=0;#defineWHITE1#defineGRAY2#defineBLACK3intcolor[MAX_VERTEX]={0};intparent[MAX_VERTEX]={0};inttime=0;intd[MAX_VERTEX]={0};//startvisittimeforea 阅读全文

posted @ 2011-02-25 20:30 cutepig 阅读(289) 评论(0) 推荐(0) 编辑

What is the difference between data mining and machine learning?

摘要: http://www.google.com.hk/search?hl=zh-TW&client=firefox-a&hs=K3s&rls=org.mozilla%3Azh-TW%3Aofficial&q=difference+between+data+mining+and+machine+learning&aq=f&aqi=g1&aql=&oq= 阅读全文

posted @ 2011-02-25 11:01 cutepig 阅读(325) 评论(0) 推荐(0) 编辑

alg: why Quicksort superiority over Heap Sort

摘要: http://stackoverflow.com/questions/1853208/quicksort-superiority-over-heap-sorthttp://stackoverflow.com/questions/2467751/quicksort-vs-heapsort 阅读全文

posted @ 2011-02-25 11:00 cutepig 阅读(217) 评论(0) 推荐(0) 编辑

导航