#OLD

Oldman python of full stack-Day2

Directory:1.List,tupleaction2.Stringoperations3.Dictionaryoperations4.Set5.Fileoperations6.Characterencodingandtranscoding--------------------------------------...

Oldman python of full stack-Day1

1.Pythonisadynamicallystrongtypeparsinglanguage.Thefirstprogram.Print"helloworld!">>print('Helloworld')>>HelloworldVariable-------------------------...

textarea自适应高度,div模仿textarea可编辑实现自适应高度,placeholder使用图标

1.textarea自适应高度,placeholder使用图标    自适应高度,有很多种办法:    1)jq:$("textarea").on("input",function(){$(this).css({'height':'auto','overflow-y':'hidden'}).height(this.sc...

改变placeholder颜色

HTML:<inputtype="text"placeholder="Value"/>CSS:::-webkit-input-placeholder{/*WebKitbrowsers*/color:#999;}:-moz-placeholder{/*MozillaFirefox4to18*/color:#9...
代码星球 ·2020-04-02

LightOj_1030 Discovering Gold

题目链接 题意:  在一个1XN的格子上,每个格子都有一定的黄金,你从第一个格子出发,问到最后一个格子得到黄金的期望。  每次前进使用骰子投点来决定前进步数,如果投出的点前进后会超过N,那么就重新投掷。 思路:  很直接的期望题。  概率dp求期望是从后往前求,每次的概率为1/6.  dp[i]=1...
代码星球 ·2020-04-01

[Android]对BaseAdapter中ViewHolder编写简化(转)

来自博客:http://www.cnblogs.com/tiantianbyconan/p/3642849.html 在Android项目中,经常都会用到ListView这个控件,而相应的Adapter中getView()方法的编写有一个标准的形式,如下:1@Override2publicViewgetVie...

Git does not apply deleted files when merging an old branch into the master. How can I tell Git to apply deleted files?

TheonlywayIcanfathomthispossiblesituationisifyoucreatedtwodifferentfiles,eachwiththesamefilename,inindependentbranches. 我遇到的情况的是Branch5和Branch6基于同一个commit出...

android view holder 优化

android一般都用viewholder来优化contentView,采用sparseArray能够进一步优化 /***用法:ImageViewbananaView=ViewHolder.get(convertView,R.id.banana);**@paramconvertView*@paramid*@r...

matlab:利用hold on 在一个figure上显示多张图

panoImage=imread('./bu.jpg');figure()imshow(panoImage);[x,y]=ginput();holdonplot(x,y,'r*') ...
首页上一页...910111213下一页尾页