上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: CSS语法 css的语法 selector{property: value} 即 选择器{属性 : 值} 选择器 1.用元素做选择器,直接写元素 2.用id做选择器,用# 3.用类做选择器,用 . 可以直接用 .first 选择, 也可以更加具体,用 p.first 选择。 注释 使用 /*注释注释 阅读全文
posted @ 2019-01-05 20:30 ZHUQW 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 例子 <table width="70%"> <form> <tr> <td align="right"><font color="#ff0000">*</font>用户名:</td> <td><input type="text"><font color="#ff0000">用户名不得小于3个字符< 阅读全文
posted @ 2019-01-02 20:21 ZHUQW 阅读(520) 评论(0) 推荐(0) 编辑
摘要: 例子1 标题 <h1>....<h5> 段落 <p> </p> 粗体 <strong>或者<b> 斜体 <em>或者<i> 删除效果 <del> 下划线 <ins> 表格 表格:由<table>标签包含。tr表示行(table row),td(table data)定义这一行中的每一个元素。有3个元 阅读全文
posted @ 2019-01-02 15:10 ZHUQW 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 头部元素:<head> 是所有头部元素的容器。head内部可以包含js脚本、标明css的位置。head中可以添加<tittle> <base> <link> <meta> <script> <style> <tittle>元素 是浏览器工具栏的标题、搜索引擎显示结果的标题。 <link> 可用于链接 阅读全文
posted @ 2018-12-30 13:45 ZHUQW 阅读(95) 评论(0) 推荐(0) 编辑
摘要: A1001 https://www.cnblogs.com/zhuqiwei-blog/p/8442154.html 1、依次取一个数字的每一位,用 do{ num = c % 10; c = c / 10; }while(c != 0); //注意是c不是num A1002 http://www. 阅读全文
posted @ 2018-09-09 17:33 ZHUQW 阅读(203) 评论(0) 推荐(0) 编辑
摘要: In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the 阅读全文
posted @ 2018-09-01 12:00 ZHUQW 阅读(115) 评论(0) 推荐(0) 编辑
摘要: This is a problem given in the Graduate Entrance Exam in 2018: Which of the following is NOT a topological order obtained from the given directed grap 阅读全文
posted @ 2018-09-01 11:58 ZHUQW 阅读(110) 评论(0) 推荐(0) 编辑
摘要: The task of this problem is simple: insert a sequence of distinct positive integers into a hash table first. Then try to find another sequence of inte 阅读全文
posted @ 2018-09-01 11:50 ZHUQW 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains 阅读全文
posted @ 2018-09-01 11:38 ZHUQW 阅读(98) 评论(0) 推荐(0) 编辑
摘要: The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i 阅读全文
posted @ 2018-08-31 17:32 ZHUQW 阅读(349) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页