码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
Queue2
1 #include 2 using namespace std; 3 template 4 class Queue 5 { 6 private: 7 struct node 8 { 9 T data;10 node * next;11 ...
分类:其他好文   时间:2014-05-26 02:19:36    阅读次数:213
字符串相似度计算的方法,使用SQL以及C#实现,本文非原创摘自网络(.NET SQL技术交流群入群206656202需注明博客园)
1 using System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 namespace ConsoleApplication6 6 { 7 class semblance 8 { 9 10 ...
分类:数据库   时间:2014-05-26 02:11:57    阅读次数:486
CentOS命令登录MySQL时,报错ERROR 1045 (28000):
CentOS命令登录MySQL时,报错ERROR 1045 (28000): Access denied for user root@localhost (using password: NO)错误解决方法1、停用mysql服务:# /etc/rc.d/init.d/mysqld stop2、输入命...
分类:数据库   时间:2014-05-26 01:58:12    阅读次数:306
Redis C语言操作封装
#ifndef BOYAA_FOURLANDLORD_REDISCLASS_H_20130217#define BOYAA_FOURLANDLORD_REDISCLASS_H_20130217#include "hiredis.h"#include #include using namespace ...
分类:编程语言   时间:2014-05-26 01:22:09    阅读次数:505
create Context Menu in Windows Forms application using C# z
In this article let us see how to create Context Menu in Windows Forms application using C#IntroductionIn this article we will see how to create Conte...
分类:移动开发   时间:2014-05-26 01:00:30    阅读次数:555
【C#】浏览器源代码
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2014-05-26 00:40:38    阅读次数:214
【C#】简单计算器源代码
form1.cs using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using Syst...
分类:其他好文   时间:2014-05-26 00:25:36    阅读次数:336
MINI3内存分配算法
1 最差适应算法 2 #ifdef USING_WORST_FIT 3 { 4 //先找到第一个满足要求的空洞, 5 //再以第一个为标准寻找最适合的空洞。 6 //当最适合的空洞完全吻合 7 //就直接划给它,当空洞较...
分类:其他好文   时间:2014-05-25 23:47:04    阅读次数:258
word 文档操作类,可以读出word中书签 批量替换内容,直接调用
using System;using System.Collections.Generic;using System.Text;using Word = Microsoft.Office.Interop.Word;namespace ELO.BLL{ /* * Descrip...
分类:其他好文   时间:2014-05-25 23:20:06    阅读次数:420
HDU 1556
这道题可以用线段树或者树状数组,我在网上看有些大神竟然没用线段树和树状数组就把这道题搞出来了。。汗。。。线段树:线段树不能更新到叶子,否则超时。代码: 1 #include 2 #include 3 #include 4 #include 5 #define N 100005 6 using...
分类:其他好文   时间:2014-05-25 23:17:40    阅读次数:287
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!