码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
JAVA中引用com.sun.awt.AWTUtilities时报错
JAVA中引用com.sun.awt.AWTUtilities时报错的解决办法[转]在Eclipse中设置如下就可以了:When using com.sun.awt.AWTUtilities, Eclipse gives a error:- Access restriction: The metho...
分类:编程语言   时间:2014-06-11 10:50:44    阅读次数:444
树的子结构判断
题目:输入两棵二叉树A和B,判断B是不是A的子结构。 1 #include 2 using namespace std; 3 4 struct BinaryTreeNode { 5 int m_nValue; 6 BinaryTreeNode* m_pLeft; 7 Bin...
分类:其他好文   时间:2014-06-11 10:32:01    阅读次数:171
DB2建库简单例子
--重启数据库FORCE APPLICATION ALL DB2STOPDB2START --创建数据库CREATE DATABASE mysdedb USING CODESET UTF-8 TERRITORY US COLLATE USING SYSTEM USER TABLESPACE MANA...
分类:数据库   时间:2014-06-11 10:20:03    阅读次数:307
C# WindowsService安装与卸载
最近在做WinService,总结了一下安装和卸载程序,服务实现内容无法总结了。安装程序: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using Sy...
分类:Windows程序   时间:2014-06-11 10:12:29    阅读次数:415
C++实现简单的单链表
下面实现的是一个简单的单链表功能不多,学习使用#pragma once#include using namespace std;class ListEx{private: struct Node { Node* next; int data; N...
分类:编程语言   时间:2014-06-11 10:06:26    阅读次数:246
C#: 数字经纬度和度分秒经纬度间的转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ /// /// 公用的特殊函数 /// pub...
分类:其他好文   时间:2014-06-11 09:34:53    阅读次数:411
实例365(12)---------数组的基本操作(二)
一:在数组中添加一个元素,截图二:代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;...
分类:其他好文   时间:2014-06-11 09:31:46    阅读次数:281
Trie(C#)
TrieSearch.cs//#define WEBusing System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Thre...
分类:其他好文   时间:2014-06-11 08:51:28    阅读次数:375
C++ 模板类解析
具体模板类作用这边就不细说了,下面主要是描述下模板类的使用方法以及注意的一些东西。#include using namespace std;template //定义类模板class Compare{ public : Compare(numtype a,numtype b) {x=a...
分类:编程语言   时间:2014-06-11 08:31:33    阅读次数:199
poj 1724 ROADS
http://poj.org/problem?id=1724这道题我使用的是dijkstra,在处理进队列是条件是if(st2.c+c1 2 #include 3 #include 4 #include 5 #define maxn 20000 6 using namespace std; 7...
分类:其他好文   时间:2014-06-11 08:28:15    阅读次数:177
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!