自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 资源 (7)
  • 问答 (2)
  • 收藏
  • 关注

原创 TestDefaultTableModel--table model in java&sql

//email:[email protected]; //function:calling database in java table modelpackage javaSwing;import java.awt.*;import java.awt.event.*;impo

2013-04-04 00:04:55 531

原创 TestDefaultListModel-java数据库调用示例

//author:Young Yuan//email:[email protected]; [email protected]//function:calling database in java list modelpackage javaSwing;import java.awt.*;import java.awt.event.*;import java

2013-04-04 00:02:58 4121

原创 java调用数据库示例

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

2013-04-04 00:01:26 442

原创 Smith数判定算法

// 08D.cpp : Defines the entry point for the console application.//[email protected]       [email protected]#include "stdafx.h"#include#include#includeint _tmain(int argc, _TCH

2013-04-03 16:38:08 1676

原创 Arnold图像变换算法

// 08C.cpp : Defines the entry point for the console application.//[email protected] #include "stdafx.h"#include#includeint _tmain(int argc, _TCHAR* argv[]

2013-04-03 15:45:24 2567

原创 水仙花数算法

// 08B.cpp : Defines the entry point for the console application.////email:[email protected]//function:水仙花数判定#include "stdafx.h"#include#includ

2013-04-03 14:53:13 471

原创 等差数列判断算法

// 08A.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include#includeint _tmain(int argc, _TCHAR* argv[]){int isarithmetic(int array[],int n)

2013-04-03 14:38:48 2214

原创 括号匹配算法

// 09E.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include#includeint _tmain(int argc, _TCHAR* argv[]){int num,i,j,top;char array[100],stack[100

2013-04-03 11:48:45 384

原创 由二叉树先序序列和中序序列求后序序列的C语言算法

#include#include#include#define NULL 0struct btree{char num;struct btree* lchild;struct btree* rchild;};struct stack{struct btree* base;struct btree* top;int stacksize;

2013-04-03 11:22:51 952

原创 二叉树后序遍历非递归算法

void followvisit(struct btree *bt){//后序遍历的非递归算法struct btree *p,array[20];int top=0;p=bt;while(top>=0||p->num){if(p->num){array[top++]=*p;p=p->lchild;}else{p=&array[--top];

2013-04-03 11:21:15 470

MKV文件转换器

MKV文件转换器,

2015-02-26

诺顿网络安全特警2012 破解30天补丁

Norton 2012测试对病毒扫描引擎进行了两处改进,但用户界面模块变化很小。Insight 3.0(智能扫描)及其组件Download Insight 2.0(下载智能分析)都得以改进。Download Insight功能可以监测下载文件,以保证文件安全性和稳定性。尽管Download Insight还是无法阻止用户下载已知威胁文件,但它会提供一个停止下载选项。[2] Download Insight是一项精心设计的功能,它还针对不同的系统进行了设计。如果一个文件在Windows 7环境下安全但在XP环境下不安全,只有XP用户会看到停止下载提示。 同时,SONAR 4.0还升级了行为防护

2015-02-26

诺顿2014 180天破解补丁

毫无后顾之忧地访问任何网站,畅游网络世界 在您浏览网页、购物和处理银行业务时保障您的安全 提醒您社交媒体骗局和可疑内容的存在 防范当今乃至未来的威胁 拦截受感染的危险下载 加快电脑启动速度,提升电脑性能 该破解补丁可以激活180天试用,循环破解可无限期试用

2015-02-26

Norton 2012破解文件

诺顿是Symantec(赛门铁克)公司个人信息安全产品之一,亦是一个广泛被应用的反病毒程序。该项产品发展至今,除了原有的防毒外,还有防间谍等网络安全风险的功能。诺顿反病毒产品包括:诺顿网络安全特警(Norton Internet Security)、诺顿防病毒软件(Norton Antivirus)、诺顿360全能特警(Norton 360)等产品。赛门铁克另外还有一种专供企业使用的版本被称做Symantec Endpoint Protection 。

2015-02-26

从两个数组中找最大元素

*功能:从两个排好序的数组A[1..m]、B[1..n]中 *找出第K大的元素。 *时间复杂度为O(lg(m)+lg(n))

2012-08-13

航空订票系统

这是用C语言编写的简单航空订票系统,实现基本的信息管理,例如航班信息查询,航班信息编辑,以及客户信息管理等基本操作

2011-11-05

简单拍卖系统

简单在线拍卖系统,使用C语言编写的,实现商家和买家的基本功能,例如查询,添加删除信息等功能

2011-11-05

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除