P

W3C JavaScript 教程 文档

本教程从 JavaScript 的历史开始讲起,直到当前它对 XML 和 Web 服务的支持。您将学习到如何扩展该语言,以使它适应特殊的需求。您还将学到如何使用 JavaScript 创建无缝的客户机 - 服务器通信。本教程深入浅出,在您认真学习之后,一定会获益良多。

opentangkun 2012-11-20   3178   0

C连接mysql数据库 代码段

#if defined(_WIN32) || defined(_WIN64) //为了支持windows平台上的编译 #include <windows.h> #endif #include <stdio.h> #include <stdlib.h> #include "mysql.h" //定义数据库操作的宏,也可以不定义留着后面直接写进代码 #define SELECT_QUERY "show

g6d7 2015-01-03   1836   0
MySQL  

C++实现ping功能的代码 代码段

utility * FILE: base/applications/network/ping/ping.c * PURPOSE: Network test utility * PROGRAMMERS: */

fwwc 2015-01-08   3059   0

快速排序的算法C++实现 代码段

#include <stdio.h> #include <stdlib.h> #define SORT_ARRAY_SIZE 10000 #define PIVOT_FIRST 1 #define PIVOT_LAST 0 #define PIVOT_MEDIAN_OF_THREE 0 void QuickSort(int *array, int start, int end); int Choo

c6e3 2015-01-08   1244   0

xml文档操作类C# 代码段

using System; using System.Xml; using System.Configuration; using System.Data; using System.Collections; using System.IO; namespace YZControl { public class NewXmlControl : Object { protected string s

pw36 2015-02-07   1271   0
C#  

C#压缩解压帮助类 代码段

/// 压缩后文件的存放路径 如C:\\windows\abc.zip /// g3mc 2015-02-06   1038   0

C#  

C#实现Web服务器 代码段

学习C#时,经常会遇到Web服务器功能的程序设计问题,这里将介绍C#实现Web服务器功能的程序设计问题的解决方法。 C#实现Web服务器功能的程序设计 根据HTTP协议的作用原理,实现GET请求的Web服务器程序的方法如下:

n672 2015-02-07   3513   0
C#  

c# Fusion Charts 简单操作 代码段

<div align="center">Fusion Charts Free</div> <div id="chartdiv1" align="center"></div> <script> var myChart2 = new FusionCharts("../Scripts/fusioncharts/Flash/Column3D.swf", "myChartId2", "800", "300"

jack940511 2015-03-12   1045   0

C++STL之希尔排序 代码段

/***************************** *shellSort.h *****************************/ #include "stdafx.h" #include <vector> using namespace std; template <typename T> void shellSort(vector<T>& vec) { int gap = v

b36g 2015-04-03   1354   0
C/C++  

C#操作PowerPoint的基本代码 代码段

C#操作PowerPoint的基本代码,包括打开ppt文件、读取幻灯页,插入幻灯片,自动播放等 using System; using System.Collections.Generic; using

b5cw 2015-04-22   1810   0
C#  

C#堆排序代码 代码段

private static void Adjust (int[] list, int i, int m) { int Temp = list[i]; int j = i * 2 + 1; while (j <= m) { //more children if(j < m) if(list[j] < list[j + 1]) j = j + 1; //compare roots and the o

b5cw 2015-04-22   1019   0
C#  

C# 运行cmd命令的代码 代码段

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Diagnostics; namespace ConsoleApplication1 { class command { public static st

xf3f 2015-04-24   957   0
C#  

C语言解决汉诺塔问题 代码段

C语言解决汉诺塔问题 #include "stdio.h" void hanoi(int n,char one ,char two,char three); void move(char aa,char

kdloeki 2015-05-21   954   0
C/C++  

C语言编写的ReplaceAll函数 代码段

#include <stdio.h> #include <malloc.h> #include <string.h> char* replaceAll(char* src, char* find, char* replaceWith){ //如果find或者replace为null,则返回和src一样的字符串。 if(find == NULL || replaceWith == NULL){ re

kdloeki 2015-05-21   752   0
C/C++  

快速排序C++实现 代码段

LARGE_INTEGER large_interger; double dff; __int64 c1, c2; QueryPerformanceFrequency(&large_interger); dff

gf67 2015-06-12   925   0
C/C++  

C++算法之A*算法 代码段

0 0 0 0 * A 0 0 0 0 */ 算法编程算法,应该怎么修改呢?当然首先定义一个数据结构? typedef struct _VALUE { int x; int y; }VALUE;

jopen 2015-06-24   4410   0
算法  

C#实现GZip 压缩 / 解压 代码段

return buffer; } 不过看来看去我还是认为用GZipStream要人性化的多使用API也只是用在C++或E语言的情况下否则 我人也为也没有任何必要搞那么麻烦去写一个利用GZip.dll中导出的函数进行文件的解压缩。

jopen 2015-07-01   2507   0
C#  

C++全排列实现代码 代码段

比如对于字符串”abc”, 第一步:求所有可能出现在第一个位置的字符即:a,b,c。 使用方法:把第一个字符和后面的b、c字符进行交换。 第二步:把第一个字符后面的所有字符仍然看成两部分,即

jopen 2015-06-30   1570   0
C/C++  

C#用于Mysql操作的MySqlHelper类 代码段

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Text; using System.Data; using System.Collections; using MySql.Data.Common; using MySql.Data.MySqlClie

jopen 2015-07-10   3159   0
MySQL  

C#生成Code128码 代码段

public enum Encode { Code128A, Code128B, Code128C, EAN128 } public Code128() { m_Code128.Columns.Add("ID");

f627 2015-07-15   1734   0
C#  
1 2 3 4 5 6 7 8 9 10