1 matlab官网 2 spm12 (填写完该链接内容后即可获取下载链接 http://www.fil.ion.ucl.ac.uk/spm/software/download/) (更多扩展包,如AAL,Anatomy,BrainNetViewer,DPABI等 http://www.fil.io ...
分类:
其他好文 时间:
2018-01-07 20:04:58
阅读次数:
1343
1、卸载原来已经存在的httpd 2、插入光盘:Benet 5.0所需软件\linux安全及高级应用\rhel-server-6.5-x86_64-dvd.iso 3、源码编译安装httpd,下图为: 1)解包 2)配置 4、编译和安装 下图为安装编译和安装过程中的状态,这里将会等待几分
分类:
Web程序 时间:
2018-01-04 13:09:28
阅读次数:
216
'.' 默认匹配除\n之外的任意一个字符,若指定flag DOTALL,则匹配任意字符,包括换行'^' 匹配字符开头,若指定flags MULTILINE,这种也可以匹配上(r"^a","\nabc\neee",flags = re.MULTILINE)'$' 匹配字符结尾,或e.search("f ...
分类:
编程语言 时间:
2018-01-03 22:39:12
阅读次数:
202
写出一个函数 anagram(s, t) 判断两个字符串是否可以通过改变字母的顺序变成一样的字符串。 样例 给出 s = "abcd",t="dcab",返回 true.给出 s = "ab", t = "ab", 返回 true.给出 s = "ab", t = "ac", 返回 false. 给 ...
分类:
其他好文 时间:
2017-12-30 15:57:40
阅读次数:
200
题目描述 输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。 输入描述: 输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。思路:回溯法,排列树。由于字符有 ...
分类:
其他好文 时间:
2017-12-26 14:31:15
阅读次数:
159
Util.js _(持续更新中...)_ 项目地址 : https://github.com/dragonir/Util.js 项目描述 Util.js 是对常用函数的封装,方便在实际项目中使用,主要内容包含:数组类、浏览器类、日期类、函数类、数学类、媒体类、节点类、对象类、字符串类、类型检测类、正 ...
分类:
编程语言 时间:
2017-12-23 17:11:33
阅读次数:
2790
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:
其他好文 时间:
2017-12-19 12:30:29
阅读次数:
210
The dragon and the princess are arguing about what to do on the New Year's Eve. The dragon suggests flying to the mountains to watch fairies dancing i ...
分类:
其他好文 时间:
2017-12-15 22:36:13
阅读次数:
146
http://blog.csdn.net/u013898698/article/details/64919036 http://blog.csdn.net/cabbage2008/article/details/49871441 http://blog.csdn.net/cabbage2008/ar ...
分类:
其他好文 时间:
2017-12-14 13:22:19
阅读次数:
221
1 #list() 将一个可迭代对象转换为列表 2 #tuple() 将一个可迭代对象转化为元组 3 str1 = "我想去钓鱼" 4 str2 = list(str1) 5 print(str1) 6 print(str2) 7 str3 = tuple(str1) 8 print(str3) 9... ...
分类:
编程语言 时间:
2017-12-09 22:27:04
阅读次数:
169