Algorithms
luxiaoshuai
事无终始 无务多业
展开
-
Sorting Algorithms ------ [QuickSort]
public class QuickSortByBruce { public static void main(String args[]){ int data[]=new int[100001]; Random r=new Random(); System.out.println("Print the Array Befor原创 2008-11-17 16:46:00 · 658 阅读 · 1 评论 -
Sorting Algorithms ------[Insertion Sort]
public class InsertionSort { public static void main(String args[]){ InsertionSort s=new InsertionSort(); s.a(); } public void a(){ int []num={7,5,1,4,6,5原创 2008-11-17 10:39:00 · 549 阅读 · 0 评论 -
Sorting Algorithms ------ [MergeSort]
先贴个我写的例子先: 1. public class MergeSortByBruce { 2. 3. /** 4. * @param args 5. */ 6. public static void main(String[] args) { 7. int []data=new原创 2008-11-17 10:48:00 · 928 阅读 · 1 评论 -
QuickSort の文章、いいよ
Quicksort Quicksort is one of the fastest and simplest sorting algorithms [Hoa 62]. It works recursively by a divide-and-conquer strategy. IdeaFirst, the sequence to be sorted a翻译 2008-11-17 16:56:00 · 558 阅读 · 1 评论 -
关于在VS2005中编译和运行C++
这个问题郁闷了我好久了... 在VS 下新建了一个VC++的项目. 选是是 win32 console 模式 ....新建文件...照例输入了一个HELLO WORLD ! 告诉我说 找不到 cout 这个关键字. #include "stdafx.h"#include "iostream" int _tmain(int argc, _TCHAR* argv[]){原创 2009-05-19 20:03:00 · 628 阅读 · 0 评论 -
A星算法-自动寻路-c++
A星算法小DEMO原创 2010-06-26 17:46:00 · 13034 阅读 · 5 评论 -
CRC 数据校验
由于智商低,看了将近一天多才弄明白。家里机子上没有C++编译器,而JAVA面对指针时又显得苍白无力,只好请python出来了。我只是根据原理写的一个生成CRC 余数表。一个小DEMO。 不说了,上代码: python version 3.1 crc data check/create crc-16 tableclass Crc:原创 2010-05-06 02:11:00 · 874 阅读 · 0 评论