原创 Arnold圖像變換算法

// 08C.cpp : Defines the entry point for the console application. //244910

原创 java調用數據庫示例

package chapter23; //function:calling database in java import java.sql.*; public class TestDB {private Connection con

原创 TestDefaultListModel-java數據庫調用示例

//author:Young Yuan //email:[email protected]; [email protected] //function:calling database in java list model pa

原创 等差數列判斷算法

// 08A.cpp : Defines the entry point for the console application.// #include "stdafx.h" #include<std

原创 Smith數判定算法

// 08D.cpp : Defines the entry point for the console application. //[email protected]       youngyuan52

原创 二叉樹後序遍歷非遞歸算法

void followvisit(struct btree *bt) {//後序遍歷的非遞歸算法struct btree *p,array[20];int top=0;p=bt;while(top>=0|

原创 TestDefaultTableModel--table model in java&sql

//email:[email protected];  //function:calling database in java table model package javaSwing; import java.awt.*; i

原创 由二叉樹先序序列和中序序列求後序序列的C語言算法

#include<stdio.h> #include<stdlib.h> #include<string.h> #define NULL 0 struct btree {char num;struct b