Key directories in the file system: */: Root directory (base of file system) /bin: Executable programs /boot: Linux kernel and boot loader /dev: Speci ...
分类:
系统相关 时间:
2019-04-02 18:31:59
阅读次数:
154
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the fo ...
分类:
其他好文 时间:
2019-04-02 16:51:36
阅读次数:
145
1006 换个格式输出整数 (15 分) 1006 换个格式输出整数 (15 分) 1006 换个格式输出整数 (15 分) 让我们用字母 B 来表示“百”、字母 S 表示“十”,用 12...n 来表示不为零的个位数字 n(<10),换个格式来输出任一个不超过 3 位的正整数。例如 234 应该被 ...
分类:
其他好文 时间:
2019-03-31 22:08:20
阅读次数:
193
CSS知识点及面试题 1、一般与文本相关的属性都可以继承text-/font-/line- 2、background属性1)background-repeat:repeat/repeat-x/repeat-y/no-repeat2)background-position:默认0 0 只指定一个值,其 ...
分类:
Web程序 时间:
2019-03-31 15:31:23
阅读次数:
171
1. 超链接边框 2. 派生超链接 3. 属性选择器超链接 4. 动态超链接 5. 图像翻转超链接 6. CSS 工具提示 1.给链接加上边框 A:link { Color: #f00; Text-decoration: none; Border-bottom: 1px dashed #333; L ...
分类:
Web程序 时间:
2019-03-31 09:43:05
阅读次数:
140
ionic1 和普通cordova的大家都知道 就是看ionic3 和4 https://blog.csdn.net/sean_css/article/details/70243893 ionic cordova plugin add ionic-plugin-keyboard $ npm inst ...
分类:
其他好文 时间:
2019-03-30 18:37:47
阅读次数:
201
题目描述 给一n \times nn×n的字母方阵,内可能蕴含多个“yizhong”单词。单词在方阵中是沿着同一方向连续摆放的。摆放可沿着 88 个方向的任一方向,同一单词摆放时不再改变方向,单词与单词之间可以交叉,因此有可能共用字母。输出时,将不是单词的字母用*代替,以突出显示单词。例如: 输入输 ...
分类:
其他好文 时间:
2019-03-28 14:00:54
阅读次数:
157
CS 100 Project Five – Spring 2019Project Overview: In this project, you will write a program to solve a simple word search puzzle. The puzzle willbe s ...
分类:
其他好文 时间:
2019-03-27 19:38:08
阅读次数:
117
一、添加字段方法: 1. 添加数据库字段:description1,添加位置:v9_catetory表 找到phpcms/moudles/admin/templates/category_add.tpl.php,打开文件,大概77行左右的位置,找到: <tr> <th><?php echo L('d ...
分类:
Web程序 时间:
2019-03-27 17:07:44
阅读次数:
219
题目描述: 从上往下打印出二叉树的每个节点,同层节点从左至右打印。 解题思路: 实际就是二叉树的中序遍历问题。之前在leetcode刷过类似题目。 利用队列完成即可。 代码: ...
分类:
其他好文 时间:
2019-03-26 22:37:48
阅读次数:
201