Location:
Search - pos.z
Search list
Description: 说明:POS58票据打印机的驱动程序、各种语言下的并口/串口逐行打印方法。-: POS58 paper printer driver, various languages under the Parallel/Serial progressive printing method.
Platform: |
Size: 1104896 |
Author: 张伟锋 |
Hits:
Description: Visual basic 6.
it maintains the payroll of an system...
it uses ms acce-Visual basic 6.
it maintains the payroll of an system...
it uses ms access
Platform: |
Size: 1625088 |
Author: rajesh |
Hits:
Description: 中国科学院计算技术研究所在多年研究工作积累的基础上,研制出了汉语词法分析系统ICTCLAS(Institute of Computing Technology, Chinese Lexical Analysis System),主要功能包括中文分词;词性标注;命名实体识别;新词识别;同时支持用户词典。我们先后精心打造五年,内核升级7次,目前已经升级到了ICTCLAS2009。-Institute of Computing Technology, Chinese Academy of research accumulated over the years, based on the production of the Chinese Lexical Analysis System ICTCLAS (Institute of Computing Technology, Chinese Lexical Analysis System), the main features include Chinese words POS tagging named entity recognition new words recognition also supports user dictionaries. We have carefully built five years to upgrade the kernel 7 has now been upgraded to ICTCLAS2009
Platform: |
Size: 4450304 |
Author: huyunfei |
Hits:
Description: 有名的词典查询
自动生成10000个单词然后找他的类似词。。。
-//Dictionary
#include <iostream>
#include <fstream>
#include <string>
#include <time.h>
#define maxsize 10000000
#define exp_n 10000
using namespace std
string word[maxsize] //words of dictionary
int word_n //number of words
int fn //number of words found
int fl[26]
int compare_n
void Input_data()
{
int i
word_n=0
ifstream infile("dict.txt")
while(!infile.eof()){
infile>>word[word_n]
//ucase letter convert to lcase letter
for(i=0 i<word[word_n].length() i++)
if(char(word[word_n][i]) < a ) word[word_n][i]+= a - A
word_n++
}
infile.close()
}
int char_int_converter(char c)
{
if(c<= z && c>= a ) return c- a
if(c<= Z && c>= A ) return c- A
cout<<"Error!"<<endl
exit(0)
}
int Inword(string ss,int srt,int nd,int &pos)//confirm the word in dictionary or not
{ //find area:srt is start position nd is end position
int k
int startw=srt,endw=nd
Platform: |
Size: 1133568 |
Author: 秘密 |
Hits:
Description: 在开发子函数时,matlab存在正则方法和非正则方法,正则方法非常适合一个子函数功能的不断扩展与完善,此函数为辅助函数,增加子函数的可读性
例如一个函数drawfun(x,y,z,5,6),5表示用第5种方法插值,6表示markersize为6,它显然没有drawfun(x,y,z, kriging , markersize ,6)好看懂与理解。 kriging 如何就是5可以用optionchoose(varargin{4},{ linear , spline , inverse , regression , kriging })判断。
再如一个结构体中有很多人的名字和各门课的成绩,想查看张三的所有分数就可以:
student(optionchoose( 张三 ,{student.name}))
如果没有张三这个人,optionchoose会出错退出,用optionchoose( 张三 ,{student.name},1)则返回-1,optionchoose( 张三 ,{student.name},1)在返回-1的同时显示可有的一些选项。
optionchoose( John ,{student.name},1, -case )会强制区分大小写,与john将不是同一个人- check the input option , output the value of option style
Usage:
och=optionchoose(oi,ostyle,|[restrain_error],|[ -case ])
when design functions, string option is apt to read and operate
oi is one option of character, you can write in short only when this
option distinguish other options
ostyle means all possible options, it can be strings or string cell
restrain_error =0 by default setting. if equal other, mean program will
not interrupt, but return-1. restrain>=2, return possible option
(when no match option), when 2, display option mesg.
Notice: uppercase and lowercase of oi(ostyle) seemed same, not
to distinguish, only when -case , then distinguish UPPERCASE
and lowercase of characters
och is numeric opposite to ostyle order, if not in ostyle, return-1
For example:
i=optionchoose( pos ,{ position , potential , pocket }) i=1
See also STRCMP, STRNCMP, STRMATCH
Platform: |
Size: 1024 |
Author: zhoudg |
Hits: