• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






canexjtuzju

记录
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2014年7月17日

July面试整理系列--(5)
摘要: 编程求解:输入两个整数 n 和 m,从数列1,2,3.......n 中 随意取几个数,使其和等于 m ,要求将其中所有的可能组合列出来. 1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 /* 8 思路: 9 h(... 阅读全文
posted @ 2014-07-17 13:23 canexjtuzju 阅读(173) 评论(0) 推荐(0)
 
Ubuntu12.04 升级到gcc4.7(转)
摘要: http://www.cnblogs.com/zzugyl/archive/2013/01/26/2878250.htmlubuntu 12.04现在gcc编译器版本号为4.6.3,交叉编译ffmpeg的时候需要gcc 4.7.2升级方案参考http://www.maykiller.com/2012... 阅读全文
posted @ 2014-07-17 13:10 canexjtuzju 阅读(339) 评论(0) 推荐(0)
 
Ubuntu12.04 卸载安装软件
摘要: sudo apt-get purge xxx sudo apt-get autoremove sudo apt-get clean 阅读全文
posted @ 2014-07-17 13:01 canexjtuzju 阅读(125) 评论(0) 推荐(0)
 
Ubuntu12.04 使用apt-add-repository如何设置代理
摘要: 使用sudo参数-E使得 root 用户可以使用普通用户下的环境变量,包括代理设置。jonathan@n:~$ sudo -E add-apt-repository ppa:mitya57/ppa直接在 root 用户下设置代理。jonathan@n:~$ sudo bashroot@n:~# ex... 阅读全文
posted @ 2014-07-17 12:57 canexjtuzju 阅读(693) 评论(0) 推荐(0)
 
Ubuntu12.04 使用apt-get如何设置代理
摘要: 1、建立一个apt-get使用代理的配置文件,文件名称随意,我这里命名为apt-get-proxy.conf,放到~目录下即可2、用vim或者gedit等文本编辑器打开文件,输入如下内容:Acquire::http::proxy "http://用户名:密码@代理服务器IP:代理服务器端口";Acq... 阅读全文
posted @ 2014-07-17 11:01 canexjtuzju 阅读(872) 评论(0) 推荐(0)