其他
最近要用结巴分词开源库的c++版本,由于其推荐使用gcc4.6以上的版本,所以我不得不对我的gcc进行升级。 幸好我是在centos上进行升级,而centos上有,并且最简单的方法是升级到g++4.7版本。下面就说说是如何升级g++的: 打开终端,依次输入以下命令: cd /etc/yum.repos.d wget http://people.centos.org/tru/devtools/...
分类:其他 时间:2014-03-05 17:21:30 收藏:0 阅读:555
在上篇基础上继续学习: 1:文件项目架构: 2:index.html wifiApp 3:app.js /** * Created by Chongshi Tan on 14-3-4. */ Ext.application( { name: 'WifiApp', control...
分类:其他 时间:2014-03-05 17:38:30 收藏:0 阅读:562
package com.neusoft.www; /** * * @author 刘清洁 * @date 2014.02.27 */ public class MultiplicationTable { /* 九九乘法表 --自定义方法*/ public static void mulTable() { for (int i = 1; i < 10; i++) { fo...
分类:其他 时间:2014-03-05 17:34:43 收藏:0 阅读:491
package com.neusoft.www; /** * * @author 刘清洁 * @date 2014.02.27 * */ public class PrintIsoscelesTriangle { /** * * @param rowNum 三角形的行数 */ /*打印等腰三角形--自定义的函数*/ public static void pri...
分类:其他 时间:2014-03-05 17:21:23 收藏:0 阅读:555
这个想法是从K60上得出来的;今天再帮一哥们看程序的时候,他可以用串口看出来那个文件那一行文件出现问题了,于是很好奇,就问他,他也不知道,然后我就细心的研究了下他的库;发现一个不错的调试方法,其实这个在stm32里面本身也是设置好了的,但是大家一致都没有去用;...
分类:其他 时间:2014-03-05 17:25:33 收藏:0 阅读:481
"latex unknown graphic extension: .eps"解决之道 在使用latex进行文献排版时,需要插入后缀为.eps的图片文件,代码如下所示: \includegraphics[angle=-90, width=0.3\textwidth]{somepic.eps} 编译时,输出以下错误信息:。上网查询后发现用户给出了多种不同的解决问题的方法,但大多数方法都...
分类:其他 时间:2014-03-05 17:24:33 收藏:0 阅读:638
并查集 求最大的集合里元素个数 貌似方法有很多。。 #include #include #include #include #include #include #include #include #define inf 0x3f3f3f3f #define ll __int64 using namespace std; int r[10000005],vis[...
分类:其他 时间:2014-03-05 17:23:04 收藏:0 阅读:401
Korea's reputation in archery is well known because the Korean archery teams have been sweeping almost all gold, silver, and bronze medals in the Olympic Games. An archery game ICPC supported by NEXO...
分类:其他 时间:2014-03-05 17:32:33 收藏:0 阅读:556
package com.neusoft.www.bo; import java.util.Scanner; /** * * @author 刘清洁 * @function 实现数字输入,冒泡排序,输出 * @date 2014.02.28 * */ public class BubbleSortBO { private Scanner input = new Scanner...
分类:其他 时间:2014-03-05 17:28:23 收藏:0 阅读:355
package com.neusoft.www.po; public class Employee { private String eId;//工号 private String eName;//姓名 public String geteId() { return eId; } public void seteId(String eId) { this.eId = eId...
分类:其他 时间:2014-03-05 17:32:25 收藏:0 阅读:408
1163592163593163594166744
上一页1667435下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!