java
Aaron92
一名未入门的程序猿
展开
-
小白笔记----JAVA小程序数三减一(来自马士兵视屏)
public class Count3Qiut2 { public static void main(String[] args) { KidCircle kc = new KidCircle(500); int countNum = 0; Kid k = kc.first ; while(kc.count > 1){ countNum++; if(countNum原创 2016-03-12 12:12:11 · 716 阅读 · 0 评论 -
小白笔记---------------------------------------------leetcode(118. Pascal's Triangle)
Given a non-negative integer numRows, generate the first numRows of Pascal’s triangle.In Pascal’s triangle, each number is the sum of the two numbers directly above it.Example:Input: 5 Output: ...原创 2018-05-09 22:53:41 · 225 阅读 · 0 评论 -
小白笔记----------------leetcode 58. Length of Last Word
public class Solution { public int lengthOfLastWord(String s) { char[] a = s.toCharArray(); int count = 0; for(int i = a.length-1 ; i > -1;i--){ if(a[i] != ' ')原创 2017-07-30 16:38:20 · 272 阅读 · 0 评论 -
小白笔记----------------------leetcode(100 Same Tree)
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical and the nodes have the same value.考虑到每个叶子节原创 2017-07-13 23:59:03 · 269 阅读 · 0 评论 -
小白笔记---------------------------------------java关键词final
package learning.java.keyword.Final;public class FinalUsage { //记录final的用法和注意点 /*final修饰变量,变量值不允许被改变 * 经典用法是public static final MAX = 100,作为定义一个常量来使用,常量名通常大写 */ final int s = 1; //----------原创 2017-03-02 17:18:13 · 326 阅读 · 0 评论 -
小白笔记--------------------------java关键词static
package learning.java.keyword.Static;public class StaticUsage { //记录static的用法 /*声明为static的方法有如下限制 * 它们仅能调用其他的static 方法。 * 它们只能访问static数据。 * 它们不能以任何方式引用this 或super。 * 因为static方法独立于任何实例,因此原创 2017-03-01 20:41:47 · 330 阅读 · 0 评论 -
小白笔记------------------------------public、protected、private、default区别
转载 2017-03-01 20:05:09 · 336 阅读 · 0 评论 -
小白笔记-------------------java关键词abstract
package learning.java.keyword.Abstract1;public class AbstractUsage { //总结abstract的用法和注意点 //--------------------------------------------------- /* * abstract顾名思义是抽象的意思 ,可以用来修饰类、方法。 * 更多地用在父类中声原创 2017-03-01 17:44:45 · 334 阅读 · 0 评论 -
小白笔记------------------Map的用法
package Guess_Numbers;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;public class Guess_Numbers { static Map map1 = new HashMap(); static Map ma原创 2017-02-18 16:29:02 · 316 阅读 · 0 评论 -
小白笔记---------------------超好用的日志工具log4j
一、使用方式。1、新建一个java项目或者javaweb项目。2、加入jar包3、配置log4j的配置文件,这里有两种配置方式,一种是properties文件,一种是xml,推荐使用xml配置(1)properties文件具体是代表什么网上有很多文章,我就不赘述啦。(2)xml文件基本配置与properties差不多,格式原创 2016-11-06 21:45:51 · 616 阅读 · 0 评论 -
小白笔记----------------------log4j笔记(二)
在配置web中的log4j时容易犯的错误,一个是jar包的引入在web根目录下要引入,一个是配置文件的路径问题!!要多注意!!原创 2016-07-18 11:10:11 · 365 阅读 · 0 评论 -
小白笔记------------------log4j笔记(1)
Log4j由三个重要的组件构成:日志信息的优先级,日志信息的输出目的地,日志信息的输出格式。日志信息的优先级从高到低有ERROR、WARN、 INFO、DEBUG,分别用来指定这条日志信息的重要程度;日志信息的输出目的地指定了日志将打印到控制台还是文件中;而输出格式则控制了日志信息的显 示内容。2.1、定义配置文件其实您也可以完全不使用配置文件,而是在代码中配置Log4j环境。但是,使用配原创 2016-07-15 11:17:17 · 317 阅读 · 0 评论 -
小白笔记-------------------二分搜索算法(再刷一遍)
374. Guess Number Higher or LowerWe are playing the Guess Game. The game is as follows:I pick a number from 1 to n. You have to guess which number I picked.Every time you guess wrong,原创 2016-07-22 19:40:52 · 650 阅读 · 0 评论 -
小白笔记--------------jsp超链接传值
在超链接传递两个值时遇到问题,第二个值在url显示时明明赋值了,然而在传过去时,却变成了空串,不知道是什么鬼?然后,查了半天,然后发现是一个多敲了一个空格,在此记录一下,我长达40多分钟找出的这个空格,真的不细心,真的很无语!原创 2016-07-10 11:17:37 · 1203 阅读 · 0 评论 -
小白笔记-------------简单的登陆界面
自己mark一下,便于下次使用<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>寻找你的孩子 寻找迷路的孩子 用户名:原创 2016-05-05 16:14:54 · 386 阅读 · 0 评论 -
小白笔记----------------对象equals方法的使用
mark一下, 免的以后忘了import java.util.*;public class testCollection { public static void main(String[] args) { Collection c = new HashSet(); c.add("Hello"); c.add(new Name("Aaron","qj")); c.add原创 2016-04-30 18:10:36 · 357 阅读 · 0 评论 -
小白笔记-----------------leetcode(111. Minimum Depth of Binary Tree && 110. Balanced Binary Tree)
110: Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as:a binary tree in which the depth of the two subtrees of every node never...原创 2018-05-07 14:47:03 · 227 阅读 · 0 评论