SentenceGeneration

时间:2014-04-30 18:48:03   收藏:0   阅读:506
bubuko.com,布布扣
1 public String SentenceGerneration(String pattern, ArrayList<String> candSlotList, ArrayList<Argument> argList){
2     ArrayList<String> candSentenceList = new ArrayList<String>();
3     for(String candSlot : candSlotList) 
4         candSentenceList.add(FillInPattern(pattern,candSlot,argList));
5     return SelectBestSolutions(candSentenceList,argList);
6 }
bubuko.com,布布扣

 

SentenceGeneration,布布扣,bubuko.com

原文:http://www.cnblogs.com/yiyi-xuechen/p/3699075.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!