您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 源代码加亮class.1.0.0

  2. 源代码加亮class (用了EditPlus stx文件) 可以替代PHP自带的highlight函数, HTML,JS,CSS在一起的时候效果并不理想 暂时加亮效果最理想的语言为HTML,Perl,PHP 。 使用方法: 1) 直接读源代码文件时 1. 根据扩展名适用不同的加亮规则 $stx = new STX(); echo $stx->stx_file($file); 2. 指定一个规则 $stx = new STX('perl'); echo $stx->stx_fi le
  3. 所属分类:PHP

    • 发布日期:2005-11-28
    • 文件大小:48128
    • 提供者:chenxh
  1. C语言的科学和艺术-源代码.zip

  2. C语言的科学和艺术-源代码cslib -- Version 3.1Last modified on Mon Mar 6 08:10:24 1995 by eroberts--------------------This directory contains version 3.1 of the cslib libraries, whichconsists of minor bug fixes fro m version 3.0. For details, seethe changes.txt
  3. 所属分类:C

    • 发布日期:2007-08-03
    • 文件大小:848896
    • 提供者:RoderickA
  1. huffman源代码

  2. 哈夫曼(Huffman)编码压缩和解压缩程序 huffman.c 主要的功能模块 bitio.c/bitio.h 一些支撑函数,支持以比特(bit)为单位的文件I/O 用法: 压缩 huffman E 解压缩 huffman D 压缩时,读入中内容,建立Huffman编码,将结果存入<out-file& gt;中,得到压缩文件。 解压缩时,读入中内容,恢复Huffman编码,将结果存入中,得到原文件。 本代码在linux+gcc/windows+vc下经过测试,为了使读者容易理解
  3. 所属分类:C

    • 发布日期:2009-05-08
    • 文件大小:40960
    • 提供者:findwall
  1. C#文件管理器源代码

  2. 着本人最近编写的文件管理器,很实用. 其中还包括了各种类(压缩,Listview,Treeview,File Search....)
  3. 所属分类:C#

    • 发布日期:2009-05-20
    • 文件大小:331776
    • 提供者:thriveliang
  1. C#文件传输源代码 包含SEND,RECIEVE

  2. C#文件传输关键代码string path = "E:\\c#\\convey_file\\convey_file\\Form1.cs"; //要传输的文件 TcpClient client = new TcpClient(); client.Connect(IPAddress.Parse("192.168.0.52"),9999); FileStream file = new Fi leStream(path,FileMode.Open,FileAccess.Read); //注意与rece
  3. 所属分类:C#

    • 发布日期:2009-05-25
    • 文件大小:30720
    • 提供者:Allah777
  1. 车厢调度源代码(C语言)

  2. #include #include #include #define max 50 int n; FILE *fp; struct snode{ int data[max]; int top; }s; void Init() //初始化栈 { s.top=-1; } void push(int q) //进栈 { s.top++; s.data[s.top]=q; } int po p() //出栈 { int temp; temp=s.data[s.top]; s.top--; ret
  3. 所属分类:其它

    • 发布日期:2009-06-01
    • 文件大小:3072
    • 提供者:gangsta21
  1. 北大acm第1014题源代码

  2. #include #include typedef int status; #define OK 1 #define ERROR 0 #define OVER_FLOW -2 #define TRUE 1 #define FALSE 0 #define LIST_INIT_SIZE 2 #define LIST_INCREASEMENT 2 #define N 6 typedef struct { int value; int quantity; int functionCount; }
  3. 所属分类:其它

    • 发布日期:2009-06-17
    • 文件大小:4096
    • 提供者:kkx347641801
  1. Java学生成绩管理系统源代码

  2. Java学生成绩管理系统源代码: imporjava.io.BufferedWriter; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter;
  3. 所属分类:Java

    • 发布日期:2009-06-20
    • 文件大小:11264
    • 提供者:yaoyu8789
  1. c语言常用算法源代码

  2. #include "stdio.h" #include "conio.h" #include "string.h" #define MAX 5000 int start,end,nodenum; void save1(); void save2(); void main() { FILE *fp1,*fp2,*fp3; float ver[50]; int t[14],i,j,m; int num_node[4]; int node_number; int n umber=0; float v
  3. 所属分类:C

    • 发布日期:2009-06-29
    • 文件大小:320512
    • 提供者:tianzhu131
  1. SVM文本分类MatLAB源代码

  2. SVM文本分类MatLAB源代码 为m-file格式
  3. 所属分类:其它

    • 发布日期:2009-07-01
    • 文件大小:20480
    • 提供者:realone08
  1. Windows NT File System Internals随书源码

  2. Windows NT File System Internals 的随书源码
  3. 所属分类:其它

    • 发布日期:2007-09-17
    • 文件大小:233472
    • 提供者:rocket_hhh
  1. VCLSkin 5.30(含delphi、C++Builder完整源代码)

  2. 从Internet上收集的,版本为5.30,含全部源代码,支持以下 IDE: Delphi 5,6,7,2005 C++Builder 5,6 BDS 2006 (Delphi 2006, C++Builder 2006) Delphi 2007 RAD Studio 2009 (Delphi 2009, C++Builder 2009) 1. VCLSkin综述 VCLSkin 是一个能让Delphi程序变得非常漂亮的控件包. 它允许允许软件开发人员不用修改程序代码便把软件界面变得非常漂亮。
  3. 所属分类:C++

    • 发布日期:2009-07-31
    • 文件大小:573440
    • 提供者:pjdelphi
  1. Java项目案例导航源代码

  2. MyProject Application Knex weblogic.knex.dispatcher.KnexServlet QueueJNDIName jws.queue Knex *.wsdl Knex *.ctrl Knex *.java Knex *.jsx Knex *.class Knex *.xmlmap map text/xml ...展开收缩
  3. 所属分类:Java

    • 发布日期:2009-08-15
    • 文件大小:2097152
    • 提供者:caolijunmingyan
  1. VC++ 文件操作源代码

  2. 本文提供VC++ C++ 实现的文件操作的源代码
  3. 所属分类:C++

    • 发布日期:2009-08-27
    • 文件大小:3145728
    • 提供者:F2141958
  1. 源代码_BT下载程序(linux C )

  2. 该源代码可以使用命令“make”进行编译,使用该命令可以生成可执行程序。在编译生成可执行程序时,可能会生成警告:“warning:no newline at end of file”,产生这个警告是该有源代码是在Windows中进行编写的,Windows和Linux两种操作系统对于文件末尾的标识符处理不一致。该警告不会影响程序的功能和性能,所以不必理会。
  3. 所属分类:Linux

    • 发布日期:2009-09-10
    • 文件大小:106496
    • 提供者:faster114
  1. 统计学习的matlab源代码

  2. Introduction to sltoolbox sltoolbox (Statistical Learning Toolbox) organizes a comprehensive set of matlab codes in statistical learning, pattern recognition and computer vision. It includes 256 m-files in 24 categories, which are from low-level com
  3. 所属分类:其它

    • 发布日期:2009-10-11
    • 文件大小:4194304
    • 提供者:PRTsinghua
  1. Fso(File system object)操作示例[FsoExcam.rar]-精品源代码

  2. Fso(File system object)操作示例[FsoExcam.rar]-精品源代码
  3. 所属分类:其它

    • 发布日期:2009-10-11
    • 文件大小:2048
    • 提供者:gsc11111
  1. VC++计算器源代码

  2. VC++计算器源代码======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : cal ======================================================================== AppWizard has created this cal application for you.
  3. 所属分类:C++

    • 发布日期:2009-10-29
    • 文件大小:289792
    • 提供者:zhengyarong
  1. File方面的源代码操作文件的.rar

  2. File方面的源代码操作文件的.rarFile方面的源代码操作文件的.rar
  3. 所属分类:其它

    • 发布日期:2009-12-11
    • 文件大小:41984
    • 提供者:Rangers20052753
  1. linux file 命令的源代码

  2. linux file 命令能识别文件的类型,而不需要后缀名来识别。本文档是他的源代码,需要分析linux文件类型的朋友可以参考。
  3. 所属分类:Linux

    • 发布日期:2010-11-16
    • 文件大小:40960
    • 提供者:zhstc33615
« 12 3 4 5 6 7 8 9 10 ... 50 »