public function findfile($arr) { $files = array();
foreach ($arr as $file) { $child = glob($file."/*"); ...
分类:
其他好文 时间:
2014-06-29 15:05:49
阅读次数:
200
常见的解决方法有三种:1.
使用wordcloud#install.packages(c("wordcloud","tm"),repos="http://cran.r-project.org")library(wordcloud)library(tm)wordcloud("May
our child...
分类:
其他好文 时间:
2014-06-07 02:47:09
阅读次数:
348
As an umbrella holder that allows you to create
a better child to keep them in your arms for comfort and safety without having
to hold an umbrella in ...
分类:
数据库 时间:
2014-06-03 08:08:02
阅读次数:
478
#include
__global__ void childKernel(int i)
{
int tid = blockIdx.x*blockDim.x+threadIdx.x;
printf("parent:%d,child:%d\n",i,tid);
for(int j=i;j<i+10;j++)
{
printf(",%d",j);
}
printf("\n");...
分类:
其他好文 时间:
2014-06-03 03:58:15
阅读次数:
206
题意:对数列有三种操作:
Print operation l,?r. Picks should write down the value of .
Modulo operation l,?r,?x. Picks should perform assignment a[i]?=?a[i] mod x for
each i (l?≤?i?≤?r).
Set operation k...
分类:
其他好文 时间:
2014-06-02 02:56:56
阅读次数:
465
题意:给出一个无向图,每个点有点权,操作是一个一个将所有点揪走直至剩下一个点,揪走一个点的代价是剩下点中与其连边的点的点权和。求完成操作所需花费的最小代价。
解法:贪心的思想,每次将剩余点中点权最大的点揪出,这样可以保证每条边都是会选择相对小的点权被消耗掉。所以直接输出所有边的边权和即可。
代码:/****************************************...
分类:
其他好文 时间:
2014-06-02 02:22:42
阅读次数:
285
原题地址:https://oj.leetcode.com/problems/candy/题意:There
areNchildren standing in a line. Each child is assigned a rating value.You are
giving candies to ...
分类:
编程语言 时间:
2014-05-31 21:58:12
阅读次数:
410
方法一:1.添加成员变量CStatusBarCtrl
m_StatusBar;2.在OnInitDialog()中加入:
m_StatusBar.Create(WS_CHILD|WS_VISIBLE|SBT_OWNERDRAW, CRect(0,0,0,0), this, 0);
int strPa...
分类:
编程语言 时间:
2014-05-31 06:21:00
阅读次数:
275
There areNchildren standing in a line. Each
child is assigned a rating value.You are giving candies to these children
subjected to the following requi...
分类:
其他好文 时间:
2014-05-30 15:04:58
阅读次数:
224
新来的项目要求第一眼一看就是用Expandablelistview。效果图如下:
其实本来希望直接使用Expandablelistview的,但是需求Expandablelistview在展开一个group时有个动画效果——该group的child一个一个滑动出来并且把下面的grou...
分类:
其他好文 时间:
2014-05-30 08:25:50
阅读次数:
494