原创 達夢數據庫連接

dbconnect.properties文件中定義 DRIVER_NAME=dm.jdbc.driver.DmDriver DATABASE_URL=jdbc:dm://localhost/YourDbName DATABASE_USER

原创 Web數據挖掘小論文

1、目的意義 Web數據挖掘是利用數據挖掘技術從Web文檔和Web服務器中發現並提取人們感興趣的信息或知識的過程。涉及到Internet技術、人工智能、計算機語言學、信息學、統計學等多個領域。 Web包含了豐富和動態的超鏈接信息,以及We

原创 右鍵添加新建TXT文件註冊表

Windows Registry Editor Version 5.00   [HKEY_CLASSES_ROOT\.txt]   @="txtfi

原创 Oracle學習

(1)Windows下配置ORACLE_HOME 假定安裝目錄爲F:\oracle\product\10.2.0\db_1\,首先在環境變量中添加系統變量ORACLE_HOME,並設置爲F:\oracle\product\10.2.0\d

原创 poj3979

#include<iostream> #include<string> #define SIZE 4   using namespace std; int  gcd( int m,int n ) {  

原创 poj1002會超時

#include<iostream> #include<string> #include<vector> #include<sstream> #include<algorithm> using names

原创 poj1019

#include<iostream> #include<math.h> #define SIZE 50000 using namespace std; int main(void){     int T;

原创 poj1002不會超時

#include<iostream> #include<string> #include<stdio.h> #include<stdlib.h> #define SIZE 200000 using namespace std; int

原创 筆試題目解答

問題描述:一個二維迷宮地圖,0表示不可通行,1表示可以通行,2表示可以通行且爲必經點,用集合S表示,3表示起點,用點A表示,4表示終點,用點B表示。求從A到B的最短路徑。 問題分析: (一)首先從點A出發,在S中找出距離點A最近的必經點s

原创 JNDI連接Oracle

/**  *   */ package tree; import java.sql.Connection; import java.sql.Statement; import javax.naming.C

原创 poj1001

#include<iostream> #include<string> using namespace std; /**  計算字符串s和字符ch的乘積值  */ string mutiple_ch(st

原创 poj1046

#include<iostream> #include<math.h> using namespace std; #define SIZE 16 #define LEN 3 int main(){ int base[SIZE][

原创 poj3978

計算A-B之間的素數個數 爲了降低時間複雜度,可以藉助素數表,即能被素數整除的肯定不是素數,不能被小於自身的素數整除的數是素數。 #include<iostream> using namespace std; #define SI

原创 poj1007

#include<iostream> #include<string> #define  MAX_LEN 50 #define  MAX_NUM 100 #define  MAX_SIZE 1000000

原创 cmd下查找文件

cmd下查找文件 使用命令for /r c:\Users\Administrator\Desktop %i in (*程序*.xls) do echo %i 其中c:\....可替換成查找的範圍,*程序*.xls可替換成想要查找的文件名