void avdevice_register_all(void){ static int
initialized; if (initialized) return; initialized = 1; /* devices */
REGISTER_INOUTDEV(ALSA, alsa); REGIS...
分类:
其他好文 时间:
2014-04-30 04:26:51
阅读次数:
351
Given a digit string, return all possible
letter combinations that the number could represent.A mapping of digit to
letters (just like on the telephon...
分类:
其他好文 时间:
2014-04-30 03:52:56
阅读次数:
411
Given an arraySofnintegers, are there
elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in
the array which gives the sum of ...
分类:
其他好文 时间:
2014-04-29 22:40:00
阅读次数:
438
题目链接:http://acm.bnu.edu.cn/bnuoj/problem_show.php?pid=2418解题报告:就是给你n个数,然后让你求这个数列的逆序对是多少?题目中n的范围是n
< 500000,所以,暴力是不行的。还是第一次学会用线段树求逆序数,这种方法的时间复杂度是n * lo...
分类:
其他好文 时间:
2014-04-29 21:38:23
阅读次数:
463
首先将主库现有的要实现主从的数据库原原本本地复制到从库上,目的是一开始就让主从同步,让binlog日志从最新的记录开始同步!备份:1 导出所有库 系统命令行
mysqldump -uusername -ppassword --all-databases > all.sql 2 导入所有库 mysql...
分类:
数据库 时间:
2014-04-29 19:33:07
阅读次数:
627
mysqldump导入导出数据库总结基本的使用方法总结:1 导出所有库 系统命令行 mysqldump
-uusername -ppassword --all-databases > all.sql 2 导入所有库 mysql命令行
mysql>source all.sql; 3 导出某些库 系.....
分类:
数据库 时间:
2014-04-29 18:58:14
阅读次数:
717
http://acm.hnu.cn/online/?action=problem&type=show&id=10111题意:中文题解:在龙哥的帮助下正了二分图匹配的三观……以前的理解繁琐,或者有点儿错吧……二分图匹配从左往右匹配,找增广路。顶点数和match()不需要那么麻烦。
1 // 2 /.....
分类:
其他好文 时间:
2014-04-29 18:30:30
阅读次数:
518
//// ViewController.m// mapdemo001//// Created by
apple on 14-4-28.// Copyright (c) 2014年 apple. All rights reserved.//#import
"ViewController.h"#...
分类:
移动开发 时间:
2014-04-29 17:02:06
阅读次数:
529
//// RootViewController.m// uitableview////
Created by liyang on 14-4-27.// Copyright (c) 2014年 liyang. All rights
reserved.//#import "RootViewCo...
分类:
移动开发 时间:
2014-04-28 03:28:08
阅读次数:
606
基于组件的开发 javaBean 组成部件规范 1:
必须要有一个公共的构造方法,javaBean这个类也必须是公共的 2:javaBean中的属性都是私有的,每一个属性都必须提供符合命名规范的set和get方法
3:应该是可序列化的,但是并不是必须的类型: 1:简单属性ja...
分类:
编程语言 时间:
2014-04-27 21:37:21
阅读次数:
584