${\Large 1.}$(来自丘维声『高等代数』(上)$P_{189,194}$)$(1).$ 设$A,B$分别是数域${\mathbb F}$上$n\times n,m\times n$矩阵.证明: 如果$I_n-AB$可逆, 那么$I_m-BA$也可逆; 并求出$(I_m-BA)^{-1}$....
分类:
其他好文 时间:
2015-01-31 07:03:26
阅读次数:
370
接上一篇,接下来看看android\vendor\qcom\opensource\fm\fmapp2\src\com\caf\fmradio\FmTags.java
当点击FMRadio.java菜单的全部频道选项,跳转到FmTags.java类
定义了一个ListView控件和一个简单适配器
private ListView la;
private ArrayAdapter adapte...
分类:
移动开发 时间:
2015-01-29 12:43:11
阅读次数:
180
https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1136#include#include#include#include#includeusi...
分类:
其他好文 时间:
2015-01-29 12:32:16
阅读次数:
105
echo '';
exec('ls -la', $result);
print_r($result);
echo '';
$result = passthru('ls -la');
echo '';
$result = system('ls -la');
echo '';
echo $result = `ls -la`;
echo '';
pri...
分类:
其他好文 时间:
2015-01-28 11:13:28
阅读次数:
145
void mergelist(list La,list Lb,list &Lc)
{
//已知线性表LA和LB中的数据元素按值非递减排列
//归并LA和LB得到新的线性表LC,LC中的元素也按值非递减
Initlist(Lc);//初始化一个新的链表LC
i=j=1;k=0;
La_len=ListLength(La);//分别求出La和Lb的长度
Lb_len=ListLength...
分类:
其他好文 时间:
2015-01-27 16:22:18
阅读次数:
221
ldr/str字和无符号字节加载/存储,其中ldr的指令格式为1.LDR Rd,[Rn]2.LDR Rd,[Rn,Flexoffset]3.LDR Rd,[Rn],Flexoffset4.LDR Rd,label注意:ldr只能在当前PC的4KB范围内跳转;B只能在当前PC的32M范围内跳转;la....
分类:
其他好文 时间:
2015-01-26 18:59:40
阅读次数:
223
通过控件和Collection()函数添加自定义集合在按钮OnSelect属性编写函数:Collect(items,{name:TextName!Text,price:Value(TextPrice!Text)})将两个文本框的值添加到集合items中。在Gallery中绑定集合items,其中La...
分类:
其他好文 时间:
2015-01-26 18:47:51
阅读次数:
178
这一章首先通过一个封装简单的类来讲解如何封装类的constructor, method和data member.
#include
#include
using namespace boost::python;
class animal
{
public:
animal()
{
myLanguage="";
};
animal(std::string la...
分类:
编程语言 时间:
2015-01-26 15:17:13
阅读次数:
273
题意:FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as la...
分类:
其他好文 时间:
2015-01-25 11:01:17
阅读次数:
157
虽说是暴力题,但还是有很多很多的技巧与细节。 这题: 1、熟悉了位运算符,感觉异或操作的逼格有高了一级 2、可以用一个数的2进制来表示集合(这个需要多用) 3、中途相遇法。。。其实就是把总的集合拆成两半,降低指数使得暴力可解。(前段时间的中南校赛,好像也有个这种方法的题) #inclu...
分类:
其他好文 时间:
2015-01-24 15:42:27
阅读次数:
140