使用ImageView时经常会用到scaleType属性,如:
android:layout_height="50dp"
android:scaleType="matrix"
android:src="@drawable/sample_small" />
scaleType属性的各个值总是记不住之间的区别。今天找点时间总结了一下:
scaleType的属性值有:matr...
分类:
移动开发 时间:
2014-11-11 19:07:49
阅读次数:
190
对于一个n*n的矩阵,其中只包含有0,1两种元素且,所有的0都在1之前,请找出矩阵中0最多的一行。(Given an N-by-N matrix of 0s and 1s such that in each row no 0 comes before
a 1, find the row with the most 0s in O(N) time.)
初看这题,想到的算法就是每一行都设置一个计...
分类:
其他好文 时间:
2014-11-10 23:30:00
阅读次数:
446
常用英语词汇1. spiral order 螺旋形顺序Given an integern, generate a square matrix filled with elements from 1 ton2in spiral order.For example,Givenn=3,You should...
分类:
其他好文 时间:
2014-11-10 21:33:26
阅读次数:
217
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.Solution: 1 public class Solution...
分类:
其他好文 时间:
2014-11-10 06:32:28
阅读次数:
202
例如要产生一个标准正态分布的矩阵,矩阵维数为2*3,则代码如下:1 from numpy import *;2 def rand_Matrix():3 randArr=random.randn(2,3);4 randMat=mat(randArr);5 return rand...
分类:
编程语言 时间:
2014-11-09 23:35:16
阅读次数:
745
例如定义一个矩阵: 1 >>> a=mat([[1,2,3],[2,3,4]]) 2 >>> a 3 matrix([[1, 2, 3], 4 [2, 3, 4]]) 5 >>> sum(a) 6 15 7 >>> sum(a[0]) 8 6 9 >>> sum(a[1])10 91...
分类:
编程语言 时间:
2014-11-09 23:33:58
阅读次数:
1212
一种奇葩的写法,纪念一下当时的RE。 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 #include 1...
分类:
其他好文 时间:
2014-11-09 17:50:08
阅读次数:
214
HDU 2686 Matrix
题目链接
3376 Matrix Again
题目链接
题意:这两题是一样的,只是数据范围不一样,都是一个矩阵,从左上角走到右下角在从右下角走到左上角能得到最大价值
思路:拆点,建图,然后跑费用流即可,不过HDU3376这题,极限情况是300W条边,然后卡时间过了2333
代码:
#include
#include
#i...
分类:
其他好文 时间:
2014-11-09 11:17:44
阅读次数:
163
http://acm.hdu.edu.cn/showproblem.php?pid=1575#include #include #include #include #include #define mod 9973using namespace std;struct matrix{ int a...
分类:
其他好文 时间:
2014-11-08 16:34:23
阅读次数:
142
在讲三元组之前,让我回忆一下,正常情况下该如何存储一个矩阵呢?话不多说,看下面的代码1 void save_Matrix() {2 int row,col;3 cin >> row >> col;4 for (int i = 0;i > a[i][j];7 }...
分类:
其他好文 时间:
2014-11-08 13:19:17
阅读次数:
374