/*
Copyright (C) May 2011 Frederick G. Zacharias
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the Software
without restriction, including without limitation the rights to use, copy, modify,
merge, distribute, web post copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to the following conditions:
(Zac Labs Hybrid Open/Commercial Condition)
You Agree that all previous authors are justly, reasonable, and fairly compensated in a
written legal agreement between you and them Before the software can be Sublicensed, Sold or
in any other way exchanged for any type of financial, fiscal, monetary or otherwise benifited
by the distribution of the software, with consideration of the percentage of modifications by
you and your associates in future works of this software.
This condition is not required on in house distribution within a single company or entity.
This condition implies a certain, to be agreed upon in the future written agreement :
Warranty of fitness and quality that is to be reflected in the future written future agreement,
and without which the below LACK OF WARRANTY DOES APPLY.
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "LZWEncoder.h"
const int LZWEncoder::masks[17] = // FGZ - note lack of "static" keyword
{
0x0000,
0x0001,
0x0003,
0x0007,
0x000F,
0x001F,
0x003F,
0x007F,
0x00FF,
0x01FF,
0x03FF,
0x07FF,
0x0FFF,
0x1FFF,
0x3FFF,
0x7FFF,
0xFFFF };
// vector<byte> MyBytes(3600);
// LZWEncoder aa(60, 60, MyBytes, 16);
APei
- 粉丝: 84
- 资源: 1万+
最新资源
- 35 财务汇报部门历年薪酬统计图表.xlsx
- 39 财务工资发放表.xlsx
- 37 财务工资支出上半年年中总结报告.xlsx
- 38 财务分析工资年度开支表.xlsx
- 41 财务公司部门工资开支分析表.xlsx
- 40 财务分析部门工资支出图表.xlsx
- 42 部门员工工资统计表.xlsx
- 45 年度薪酬费用统计表.xlsx
- 44 人事薪酬管理台账.xlsx
- 48 工资对比分析报表模板.xls
- 47 可视化工资表自动统计1.xlsx
- 46 企业员工工资支出预算表.xlsx
- 43 工资收入对比分析表.xlsx
- 50 薪资分析图表.xlsx
- 49 薪酬数据统计分析报表excel模板.xlsx
- 年度公司薪酬调查分析方案(完整版).docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈