3 Star 1 Fork 1

Gitee 极速下载/gojieba

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/yanyiwu/gojieba
克隆/下载
util.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
yanyiwu 提交于 2016-09-03 22:06 . add ExtractWithWeight api
package gojieba
/*
#include "jieba.h"
*/
import "C"
import (
"os"
"unsafe"
)
func isDirExists(path string) bool {
fi, err := os.Stat(path)
if err != nil {
return os.IsExist(err)
} else {
return fi.IsDir()
}
return false
}
func cstrings(x **C.char) []string {
var s []string
eltSize := unsafe.Sizeof(*x)
for *x != nil {
s = append(s, C.GoString(*x))
x = (**C.char)(unsafe.Pointer(uintptr(unsafe.Pointer(x)) + eltSize))
}
return s
}
func convertWords(s string, words *C.Word) []Word {
result := make([]Word, 0)
x := words
eltSize := unsafe.Sizeof(*x)
start := 0
end := 0
for (*x).len != 0 {
start = int((*x).offset)
end = start + int((*x).len)
result = append(result, Word{s[start:end], start, end})
x = (*C.Word)(unsafe.Pointer(uintptr(unsafe.Pointer(x)) + eltSize))
}
return result
}
//func cwordweights(x unsafe.Pointer) []WordWeight {
// var s []WordWeight
// eltSize := 16
// for (*(*C.char))(x) != nil {
// ww := WordWeight{
// C.GoString((*C.char))(x)),
// (*x).weight,
// }
// s = append(s, ww)
// x = (*C.struct_CWordWeight)(unsafe.Pointer(uintptr(unsafe.Pointer(x)) + eltSize))
// }
// return s
//}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/gojieba.git
git@gitee.com:mirrors/gojieba.git
mirrors
gojieba
gojieba
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385