码迷,mamicode.com
首页 >  
搜索关键字:yum another copy is running    ( 41280个结果
字符串的逆序
普通排序:直接分配一个同等大小的数组,反向copy即可.char* Reverse(char* s){ //将q指向字符串最后一个字符 char* q = s ; while( *q++ ) ; q -= 2 ; //分配空间,存储逆序后的字符串。 char* p = newchar[sizeof(...
分类:其他好文   时间:2014-05-12 16:30:14    阅读次数:338
HDU 3306 Another kind of Fibonacci(快速幂矩阵)
题目链接构造矩阵 看的题解,剩下的就是模板了,好久没写过了,注意取余。#include #include #include #include #include #include #include using namespace std;#define MOD 10007#define LL __in...
分类:其他好文   时间:2014-05-10 19:55:41    阅读次数:262
【LeetCode OJ】Longest Consecutive Sequence
Problem Link:http://oj.leetcode.com/problems/longest-consecutive-sequence/This problem is a classical problem where we can reduce the running time by ...
分类:其他好文   时间:2014-05-05 22:55:22    阅读次数:552
JAVA之IO技术文件的复制原理。
package ioTest.io1; import java.io.FileReader; import java.io.FileWriter; /*将d盘的文件复制到e盘 * Copy的原理: * 读取d盘的文件内容,然后写入到e盘的同名文件中。(同名文件需要创建) * */ public class CopyText { public static void main(St...
分类:编程语言   时间:2014-05-02 19:34:41    阅读次数:432
自学数据结构——顺序线性表
胡乱写了一些代码/* ============================================================================ Name : sqlist.c Author :codecup Version : Copy...
分类:其他好文   时间:2014-05-02 17:22:31    阅读次数:356
1-UIView
UIView的常见属性 1 @property(nonatomic,readonly) UIView *superview; 2 获得自己的父控件对象 3 4 @property(nonatomic,readonly,copy) NSArray *subviews; 5 获得自己的所有子控件对象.....
分类:其他好文   时间:2014-05-02 14:53:07    阅读次数:249
异常configure: *** apu library not found.
安装modsecurity时,出现“configure: *** apu library not found.”。      解决方法: yum install apr-util-devel...
分类:其他好文   时间:2014-05-02 10:52:44    阅读次数:433
错误gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:
编译Lua时,出现这样的错误: gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:       查阅了一下,centOS上需要安装readline-devel ncurses-devel yum install readline-devel ncurses-devel  ...
分类:系统相关   时间:2014-05-02 07:03:00    阅读次数:455
yum提示another app is currently holding the yum lock;waiting for it to exit
强制关掉yum进程:#rm-f/var/run/yum.pid然后就可以使用yum了。
分类:移动开发   时间:2014-05-02 04:18:15    阅读次数:371
linux下安装htk工具箱并运行demo[centos6.5]
一直没有静下心来好好研究研究htk。最近听了豆豆童鞋的建议,决定从头看一遍htk。就从安装开始吧。顺便做个整理。 我的环境是centos 6.5 32bit 在vmware虚拟机中运行。 一、首先要安装依赖。yum的用法就不做记录了,需要安装的是gcc和libx11,命令分别是: sudo yum install gcc* sudo yum install libx11* 【因为我没有使...
分类:系统相关   时间:2014-05-01 18:32:34    阅读次数:604
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!