自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 MySQL数据库备份 导出

找到MySQL的安装文件,找到bin文件夹

2014-10-15 15:53:24 288

原创 leetcode 刷题:Valid Palindrome(回文字符串)

题目: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" 

2014-09-06 16:38:41 361

原创 双端链表实现队列

1.创建节点类:

2014-09-01 20:02:34 456

原创 用链表实现栈

1.先创建一个结点类:

2014-09-01 15:13:12 227

原创 字符和整数之间的转换

字符跟整数的转换:要先将字符

2014-08-31 19:29:23 252

原创 栈实现二进制转十进制

先创建一个栈的类: public class Stack { //栈容量 private int maxSize; //实现栈的数组 private char[] arr; //栈顶 private int top; //构造方法 public Stack(int n){ maxSize = n; arr = new char[maxSize]; top = -

2014-08-31 19:19:54 231

原创 简单排序

import java.util.Arrays; public class Sort { public static void main(String[] args){ int[] arr = new int[]{1,23,8,9,17,5,3}; Sort s = new Sort(); System.out.println(Arrays.toString(s.bubble

2014-08-30 17:24:05 305

原创 排序二叉树学习

排序二叉树:又称二叉查找树或erchasou

2014-05-07 16:55:39 230

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除