二叉查找树 BinarySearchTree
摘要:package com.datastructure.tree; public class BinarySearchTree> { static class BinaryNode { T data; BinaryNode left; BinaryNode right; public BinaryNode...
阅读全文
awk获取pom里的GAV并install到本地仓库
摘要:awk 'BEGIN {FS="[]"} \{if($2=="groupId") {groupId=$3}} \{if($2=="artifactId") {artifactId=$3}} \{if($2=="version") {version=$3}} \{if($2=="type") {type=$3}} \{if($4=="\/type") {system("mvn install:in...
阅读全文
Maven ear pom
摘要:com.test.bbsfe bbsfe-buildaggregate-ide 1.0.0 4.0.0 HHHH_bbs_EAR ${project.version} HHHH_bbs_EAR ear com.test.bbs...
阅读全文
Obtaining the event object
摘要:Different types of events provide different properties. For example, the onclick event object contains: event.target - the reference to clicked elemen
阅读全文
A cross-browser way of assigning event handlers
摘要:It works good in most cases, but the handler will lack this in IE, because attachEvent doesn’t provide this. Fixing this problem may look easy, but it
阅读全文