基本信息
源码名称:C#压缩算法.zip
源码大小:1.02M
文件格式:.zip
开发语言:C#
更新时间:2023-06-14
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#压缩算法.zip
C#压缩算法,包含文档及源代码和测试,主要涉及C#如何压缩提高压缩效率
文件清单
├── 084SharpZipLib.chm
├── build.bat
├── doc
│ ├── Changes.txt
│ ├── COPYING.txt
│ ├── Readme.pdf
│ ├── Readme.rtf
│ ├── Readme.sxw
│ └── specification
│ ├── rfc1950.txt
│ ├── rfc1951.txt
│ ├── rfc1952.txt
│ ├── rfc-deflate.txt
│ ├── rfc-gzip.txt
│ └── rfc-zlib.txt
├── ICSharpCode.SharpZipLib.key
├── ICSharpCode.SharpZLib.cmbx
├── installGAC.bat
├── samples
│ ├── cs
│ │ ├── CreateZipFile
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CreateZipFile.cmbx
│ │ │ ├── CreateZipFile.prjx
│ │ │ ├── Main.cs
│ │ │ └── readme.txt
│ │ ├── FastZip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── FastZip.cmbx
│ │ │ ├── FastZip.prjx
│ │ │ └── Main.cs
│ │ ├── minibzip2
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minibzip2.cmbx
│ │ │ ├── minibzip2.prjx
│ │ │ └── readme.txt
│ │ ├── minigzip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minigzip.cmbx
│ │ │ ├── minigzip.prjx
│ │ │ └── readme.txt
│ │ ├── samples.build
│ │ ├── sz
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── sz.cmbx
│ │ │ ├── sz.cs
│ │ │ └── sz.prjx
│ │ ├── tar
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── tar.cmbx
│ │ │ └── tar.prjx
│ │ ├── unzipfile
│ │ │ ├── readme.txt
│ │ │ ├── unzipfile.cmbx
│ │ │ ├── UnZipFile.cs
│ │ │ └── unzipfile.prjx
│ │ ├── viewzipfile
│ │ │ ├── readme.txt
│ │ │ ├── viewzipfile.cmbx
│ │ │ ├── ViewZipFile.cs
│ │ │ └── viewzipfile.prjx
│ │ └── zipfiletest
│ │ ├── readme.txt
│ │ ├── zipfiletest.cmbx
│ │ ├── ZipFileTest.cs
│ │ └── zipfiletest.prjx
│ ├── DIME
│ │ ├── DimeDataSetService
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetService.csproj
│ │ │ ├── DimeDataSetService.csproj.webinfo
│ │ │ ├── DimeDataSetService.sln
│ │ │ ├── DimeDataSetService.suo
│ │ │ ├── DimeDataSetService.vsdisco
│ │ │ ├── Global.asax
│ │ │ ├── Global.asax.cs
│ │ │ ├── Global.asax.resx
│ │ │ ├── Service1.asmx
│ │ │ ├── Service1.asmx.cs
│ │ │ ├── Service1.asmx.resx
│ │ │ └── Web.config
│ │ ├── DimeDataSetServiceConsumer
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetServiceConsumer.csproj
│ │ │ ├── DimeDataSetServiceConsumer.csproj.user
│ │ │ ├── DimeDataSetServiceConsumer.sln
│ │ │ ├── DimeDataSetServiceConsumer.suo
│ │ │ ├── Main.cs
│ │ │ ├── Main.resx
│ │ │ └── Web References
│ │ │ └── localhost
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.map
│ │ │ ├── Service1.disco
│ │ │ └── Service1.wsdl
│ │ └── readme.txt
│ ├── HttpCompressionModule
│ │ ├── example
│ │ │ ├── blowery.gif
│ │ │ ├── Default.aspx
│ │ │ ├── DefaultController.cs
│ │ │ ├── Example.csproj
│ │ │ ├── Example.csproj.user
│ │ │ ├── ExistingImage.ashx
│ │ │ ├── Image.ashx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Example.dll
│ │ │ │ ├── Example.dll.incr
│ │ │ │ ├── Example.pdb
│ │ │ │ └── Example.projdata
│ │ │ └── web.config
│ │ ├── httpcompressionmodule.pdf
│ │ ├── HttpCompressionModule.sln
│ │ ├── HttpCompressionModule.suo
│ │ ├── license.txt
│ │ ├── readme.txt
│ │ └── src
│ │ ├── AssemblyInfo.cs
│ │ ├── ConfigSectionHandler.cs
│ │ ├── DeflateFilter.cs
│ │ ├── doc
│ │ │ └── HttpCompressionModule.xml
│ │ ├── GZipFilter.cs
│ │ ├── HttpCompressingFilter.cs
│ │ ├── HttpCompressionModule.cs
│ │ ├── HttpCompressionModule.csproj
│ │ ├── HttpCompressionModule.csproj.user
│ │ ├── HttpCompressionModuleSettings.cs
│ │ ├── HttpOutputFilter.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── HttpCompressionModule.dll
│ │ │ ├── HttpCompressionModule.dll.incr
│ │ │ ├── HttpCompressionModule.pdb
│ │ │ └── HttpCompressionModule.projdata
│ │ └── refs
│ │ ├── SharpZipLib.dll
│ │ └── SharpZipLib.xml
│ └── vb
│ ├── CreateZipFile
│ │ ├── AssemblyInfo.vb
│ │ ├── CreateZipFile.cmbx
│ │ ├── CreateZipFile.prjx
│ │ ├── CreateZipFile.sln
│ │ ├── CreateZipFile.suo
│ │ ├── CreateZipFile.vbproj
│ │ ├── CreateZipFile.vbproj.user
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ └── Main.vb
│ ├── minibzip2
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── minibzip2.cmbx
│ │ ├── minibzip2.prjx
│ │ ├── minibzip2.sln
│ │ ├── minibzip2.suo
│ │ ├── minibzip2.vbproj
│ │ └── minibzip2.vbproj.user
│ ├── samples.build
│ ├── viewzipfile
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── viewzipfile.cmbx
│ │ ├── viewzipfile.prjx
│ │ ├── viewzipfile.sln
│ │ ├── viewzipfile.suo
│ │ ├── viewzipfile.vbproj
│ │ └── viewzipfile.vbproj.user
│ └── zipfiletest
│ ├── AssemblyInfo.vb
│ ├── MainForm.resources
│ ├── Main.resx
│ ├── Main.vb
│ ├── zipfiletest.cmbx
│ ├── zipfiletest.prjx
│ ├── zipfiletest.sln
│ ├── zipfiletest.suo
│ ├── zipfiletest.vbproj
│ └── zipfiletest.vbproj.user
├── SharpZlib.build
├── src
│ ├── AssemblyInfo.cs
│ ├── BZip2
│ │ ├── BZip2Constants.cs
│ │ ├── BZip2.cs
│ │ ├── BZip2Exception.cs
│ │ ├── BZip2InputStream.cs
│ │ └── BZip2OutputStream.cs
│ ├── Checksums
│ │ ├── Adler32.cs
│ │ ├── CRC32.cs
│ │ ├── IChecksum.cs
│ │ └── StrangeCRC.cs
│ ├── Core
│ │ ├── FileSystemScanner.cs
│ │ ├── INameTransform.cs
│ │ ├── NameFilter.cs
│ │ └── PathFilter.cs
│ ├── Encryption
│ │ └── PkzipClassic.cs
│ ├── GZip
│ │ ├── GZIPConstants.cs
│ │ ├── GZipException.cs
│ │ ├── GzipInputStream.cs
│ │ └── GzipOutputStream.cs
│ ├── ICSharpCode.SharpZLib.prjx
│ ├── Main.cs
│ ├── SharpZipBaseException.cs
│ ├── Tar
│ │ ├── InvalidHeaderException.cs
│ │ ├── TarArchive.cs
│ │ ├── TarBuffer.cs
│ │ ├── TarEntry.cs
│ │ ├── TarException.cs
│ │ ├── TarHeader.cs
│ │ ├── TarInputStream.cs
│ │ └── TarOutputStream.cs
│ └── Zip
│ ├── Compression
│ │ ├── DeflaterConstants.cs
│ │ ├── Deflater.cs
│ │ ├── DeflaterEngine.cs
│ │ ├── DeflaterHuffman.cs
│ │ ├── DeflaterPending.cs
│ │ ├── Inflater.cs
│ │ ├── InflaterDynHeader.cs
│ │ ├── InflaterHuffmanTree.cs
│ │ ├── PendingBuffer.cs
│ │ └── Streams
│ │ ├── DeflaterOutputStream.cs
│ │ ├── InflaterInputStream.cs
│ │ ├── OutputWindow.cs
│ │ └── StreamManipulator.cs
│ ├── FastZip.cs
│ ├── ZipConstants.cs
│ ├── ZipEntry.cs
│ ├── ZipException.cs
│ ├── ZipFile.cs
│ ├── ZipInputStream.cs
│ ├── ZipNameTransform.cs
│ └── ZipOutputStream.cs
├── tests
│ ├── AssemblyInfo.cs
│ ├── Base
│ │ └── InflaterDeflaterTests.cs
│ ├── BZip2
│ │ └── Bzip2Tests.cs
│ ├── GZip
│ │ └── GZipTests.cs
│ ├── SharpZipLibTests.cmbx
│ ├── SharpZipLibTests.prjx
│ ├── Tar
│ │ └── TarTests.cs
│ └── Zip
│ └── ZipTests.cs
└── uninstallGAC.bat
48 directories, 218 files
C#压缩算法.zip
C#压缩算法,包含文档及源代码和测试,主要涉及C#如何压缩提高压缩效率
文件清单
├── 084SharpZipLib.chm
├── build.bat
├── doc
│ ├── Changes.txt
│ ├── COPYING.txt
│ ├── Readme.pdf
│ ├── Readme.rtf
│ ├── Readme.sxw
│ └── specification
│ ├── rfc1950.txt
│ ├── rfc1951.txt
│ ├── rfc1952.txt
│ ├── rfc-deflate.txt
│ ├── rfc-gzip.txt
│ └── rfc-zlib.txt
├── ICSharpCode.SharpZipLib.key
├── ICSharpCode.SharpZLib.cmbx
├── installGAC.bat
├── samples
│ ├── cs
│ │ ├── CreateZipFile
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CreateZipFile.cmbx
│ │ │ ├── CreateZipFile.prjx
│ │ │ ├── Main.cs
│ │ │ └── readme.txt
│ │ ├── FastZip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── FastZip.cmbx
│ │ │ ├── FastZip.prjx
│ │ │ └── Main.cs
│ │ ├── minibzip2
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minibzip2.cmbx
│ │ │ ├── minibzip2.prjx
│ │ │ └── readme.txt
│ │ ├── minigzip
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── minigzip.cmbx
│ │ │ ├── minigzip.prjx
│ │ │ └── readme.txt
│ │ ├── samples.build
│ │ ├── sz
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── sz.cmbx
│ │ │ ├── sz.cs
│ │ │ └── sz.prjx
│ │ ├── tar
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Main.cs
│ │ │ ├── tar.cmbx
│ │ │ └── tar.prjx
│ │ ├── unzipfile
│ │ │ ├── readme.txt
│ │ │ ├── unzipfile.cmbx
│ │ │ ├── UnZipFile.cs
│ │ │ └── unzipfile.prjx
│ │ ├── viewzipfile
│ │ │ ├── readme.txt
│ │ │ ├── viewzipfile.cmbx
│ │ │ ├── ViewZipFile.cs
│ │ │ └── viewzipfile.prjx
│ │ └── zipfiletest
│ │ ├── readme.txt
│ │ ├── zipfiletest.cmbx
│ │ ├── ZipFileTest.cs
│ │ └── zipfiletest.prjx
│ ├── DIME
│ │ ├── DimeDataSetService
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetService.csproj
│ │ │ ├── DimeDataSetService.csproj.webinfo
│ │ │ ├── DimeDataSetService.sln
│ │ │ ├── DimeDataSetService.suo
│ │ │ ├── DimeDataSetService.vsdisco
│ │ │ ├── Global.asax
│ │ │ ├── Global.asax.cs
│ │ │ ├── Global.asax.resx
│ │ │ ├── Service1.asmx
│ │ │ ├── Service1.asmx.cs
│ │ │ ├── Service1.asmx.resx
│ │ │ └── Web.config
│ │ ├── DimeDataSetServiceConsumer
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── DimeDataSetServiceConsumer.csproj
│ │ │ ├── DimeDataSetServiceConsumer.csproj.user
│ │ │ ├── DimeDataSetServiceConsumer.sln
│ │ │ ├── DimeDataSetServiceConsumer.suo
│ │ │ ├── Main.cs
│ │ │ ├── Main.resx
│ │ │ └── Web References
│ │ │ └── localhost
│ │ │ ├── Reference.cs
│ │ │ ├── Reference.map
│ │ │ ├── Service1.disco
│ │ │ └── Service1.wsdl
│ │ └── readme.txt
│ ├── HttpCompressionModule
│ │ ├── example
│ │ │ ├── blowery.gif
│ │ │ ├── Default.aspx
│ │ │ ├── DefaultController.cs
│ │ │ ├── Example.csproj
│ │ │ ├── Example.csproj.user
│ │ │ ├── ExistingImage.ashx
│ │ │ ├── Image.ashx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── Example.dll
│ │ │ │ ├── Example.dll.incr
│ │ │ │ ├── Example.pdb
│ │ │ │ └── Example.projdata
│ │ │ └── web.config
│ │ ├── httpcompressionmodule.pdf
│ │ ├── HttpCompressionModule.sln
│ │ ├── HttpCompressionModule.suo
│ │ ├── license.txt
│ │ ├── readme.txt
│ │ └── src
│ │ ├── AssemblyInfo.cs
│ │ ├── ConfigSectionHandler.cs
│ │ ├── DeflateFilter.cs
│ │ ├── doc
│ │ │ └── HttpCompressionModule.xml
│ │ ├── GZipFilter.cs
│ │ ├── HttpCompressingFilter.cs
│ │ ├── HttpCompressionModule.cs
│ │ ├── HttpCompressionModule.csproj
│ │ ├── HttpCompressionModule.csproj.user
│ │ ├── HttpCompressionModuleSettings.cs
│ │ ├── HttpOutputFilter.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── HttpCompressionModule.dll
│ │ │ ├── HttpCompressionModule.dll.incr
│ │ │ ├── HttpCompressionModule.pdb
│ │ │ └── HttpCompressionModule.projdata
│ │ └── refs
│ │ ├── SharpZipLib.dll
│ │ └── SharpZipLib.xml
│ └── vb
│ ├── CreateZipFile
│ │ ├── AssemblyInfo.vb
│ │ ├── CreateZipFile.cmbx
│ │ ├── CreateZipFile.prjx
│ │ ├── CreateZipFile.sln
│ │ ├── CreateZipFile.suo
│ │ ├── CreateZipFile.vbproj
│ │ ├── CreateZipFile.vbproj.user
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ └── Main.vb
│ ├── minibzip2
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── minibzip2.cmbx
│ │ ├── minibzip2.prjx
│ │ ├── minibzip2.sln
│ │ ├── minibzip2.suo
│ │ ├── minibzip2.vbproj
│ │ └── minibzip2.vbproj.user
│ ├── samples.build
│ ├── viewzipfile
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resources
│ │ ├── Main.resx
│ │ ├── Main.vb
│ │ ├── viewzipfile.cmbx
│ │ ├── viewzipfile.prjx
│ │ ├── viewzipfile.sln
│ │ ├── viewzipfile.suo
│ │ ├── viewzipfile.vbproj
│ │ └── viewzipfile.vbproj.user
│ └── zipfiletest
│ ├── AssemblyInfo.vb
│ ├── MainForm.resources
│ ├── Main.resx
│ ├── Main.vb
│ ├── zipfiletest.cmbx
│ ├── zipfiletest.prjx
│ ├── zipfiletest.sln
│ ├── zipfiletest.suo
│ ├── zipfiletest.vbproj
│ └── zipfiletest.vbproj.user
├── SharpZlib.build
├── src
│ ├── AssemblyInfo.cs
│ ├── BZip2
│ │ ├── BZip2Constants.cs
│ │ ├── BZip2.cs
│ │ ├── BZip2Exception.cs
│ │ ├── BZip2InputStream.cs
│ │ └── BZip2OutputStream.cs
│ ├── Checksums
│ │ ├── Adler32.cs
│ │ ├── CRC32.cs
│ │ ├── IChecksum.cs
│ │ └── StrangeCRC.cs
│ ├── Core
│ │ ├── FileSystemScanner.cs
│ │ ├── INameTransform.cs
│ │ ├── NameFilter.cs
│ │ └── PathFilter.cs
│ ├── Encryption
│ │ └── PkzipClassic.cs
│ ├── GZip
│ │ ├── GZIPConstants.cs
│ │ ├── GZipException.cs
│ │ ├── GzipInputStream.cs
│ │ └── GzipOutputStream.cs
│ ├── ICSharpCode.SharpZLib.prjx
│ ├── Main.cs
│ ├── SharpZipBaseException.cs
│ ├── Tar
│ │ ├── InvalidHeaderException.cs
│ │ ├── TarArchive.cs
│ │ ├── TarBuffer.cs
│ │ ├── TarEntry.cs
│ │ ├── TarException.cs
│ │ ├── TarHeader.cs
│ │ ├── TarInputStream.cs
│ │ └── TarOutputStream.cs
│ └── Zip
│ ├── Compression
│ │ ├── DeflaterConstants.cs
│ │ ├── Deflater.cs
│ │ ├── DeflaterEngine.cs
│ │ ├── DeflaterHuffman.cs
│ │ ├── DeflaterPending.cs
│ │ ├── Inflater.cs
│ │ ├── InflaterDynHeader.cs
│ │ ├── InflaterHuffmanTree.cs
│ │ ├── PendingBuffer.cs
│ │ └── Streams
│ │ ├── DeflaterOutputStream.cs
│ │ ├── InflaterInputStream.cs
│ │ ├── OutputWindow.cs
│ │ └── StreamManipulator.cs
│ ├── FastZip.cs
│ ├── ZipConstants.cs
│ ├── ZipEntry.cs
│ ├── ZipException.cs
│ ├── ZipFile.cs
│ ├── ZipInputStream.cs
│ ├── ZipNameTransform.cs
│ └── ZipOutputStream.cs
├── tests
│ ├── AssemblyInfo.cs
│ ├── Base
│ │ └── InflaterDeflaterTests.cs
│ ├── BZip2
│ │ └── Bzip2Tests.cs
│ ├── GZip
│ │ └── GZipTests.cs
│ ├── SharpZipLibTests.cmbx
│ ├── SharpZipLibTests.prjx
│ ├── Tar
│ │ └── TarTests.cs
│ └── Zip
│ └── ZipTests.cs
└── uninstallGAC.bat
48 directories, 218 files