1. 统计项目代码行数 find . "(" -name "*.cc" -or -name "*.cpp" -or -name "*.h" ")" -print | xargs wc -l 2. find & copy find <target-dir> -type f -name "<file-p ...
分类:
其他好文 时间:
2020-05-28 01:11:59
阅读次数:
94
HTML:TR TD TH OL UL LI 什么是HTML 超文本标记语言(HyperText Markup Language),标准通用标记语言下的一个应用; 是网页制作必备的编程语 言 “超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。 HTML 不是一种编程语言,而是一种 ...
分类:
Web程序 时间:
2020-05-27 18:46:21
阅读次数:
248
//非递归中序遍历 //设置一个函数,该函数的作用是深入到最左侧子树但是不遍历 void inOrder_Ii(TreeNode *bt,stack S) { while (bt) { S.push(bt); if(bt->lc) bt = bt->lc; } } void inOrder_I(Tr ...
分类:
其他好文 时间:
2020-05-26 22:12:11
阅读次数:
69
<body> <form action="tianjia.jsp"> <table> <tr> <td>序号:</td> <td><input type="text" name="id"></td> </tr> <tr> <td>性别:</td> <td><input type="text" nam ...
分类:
数据库 时间:
2020-05-26 12:33:32
阅读次数:
69
#!/bin/bash current=`date "+%Y%m%d%H%M%S"` source 引入配置文件/config1.sh key=`echo -n $current$hash_key|md5sum|cut -d" " -f1` status="`ps -ef |grep "curl 配 ...
分类:
系统相关 时间:
2020-05-26 12:06:29
阅读次数:
91
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 2 <html> 3 4 <head> 5 <meta http-equiv="Content-Type" con ...
分类:
其他好文 时间:
2020-05-24 21:27:44
阅读次数:
80
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 2 <html> 3 <head> 4 <meta http-equiv="Content ...
分类:
其他好文 时间:
2020-05-24 20:45:17
阅读次数:
132
问题: 给定数组,判断若为单调增(A[i]>=A[i-1])或者单调减(A[i]<=A[i-1])数组,则返回true,否则返回false。 Example 1: Input: [1,2,2,3] Output: true Example 2: Input: [6,5,4,4] Output: tr ...
分类:
其他好文 时间:
2020-05-24 12:04:46
阅读次数:
41
<table id="table_excel" style="text-align:center;display:block;" > </table> //生成 table_excel //第一行 列名 strRow="<tr>"; var cols = $('#grid').datagrid('g ...
分类:
其他好文 时间:
2020-05-23 21:55:46
阅读次数:
131
在shell脚本中使用三类命令: unix命令 概念:管道、重定向、backtick 流程控制 1 unix命令 echo "some text":在屏幕上输出信息 ls:文件列表 wc -l file wc -w file wc -c file:计算文件的行数(line)、单词数(word)、字符 ...
分类:
系统相关 时间:
2020-05-23 10:05:11
阅读次数:
70