Chinaunix首页 | 论坛 | 博客
  • 博客访问: 266849
  • 博文数量: 170
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1709
  • 用 户 组: 普通用户
  • 注册时间: 2014-05-06 18:01
文章分类

全部博文(170)

文章存档

2016年(11)

2015年(130)

2014年(29)

发布时间:2015-03-22 17:02:18

//Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.////For example,//Given 1->2->3->3->4->4->5, return 1->2->5.//Given 1->1->1->2->3, return 2->3.class ListNode {    int val;     L.........【阅读全文】

阅读(304) | 评论(0) | 转发(0)

发布时间:2015-03-22 17:01:18

public class Pow {public static void main(String[] args) {// TODO 自动生成的方法存根System.out.print(pow(0.00001,2147483647));}public static double pow(double x, int n) {//        int flag=n>0?1:0;//        int c=Math.abs(n);//     .........【阅读全文】

阅读(261) | 评论(0) | 转发(0)

发布时间:2015-03-22 17:00:36

import java.util.ArrayList;import java.util.List;//Given an index k, return the kth row of the Pascal's triangle.////For example, given k = 3,//Return [1,3,3,1].////Note://Could you optimize your algorithm to use only O(k) extra space?public class PascalTriangleTwo {public static void .........【阅读全文】

阅读(249) | 评论(0) | 转发(0)

发布时间:2015-03-22 16:59:20

mport java.util.ArrayList;import java.util.List;//Given numRows, generate the first numRows of Pascal's triangle.////For example, given numRows = 5,//Return////[//     [1],//    [1,1],//   [1,2,1],//  [1,3,3,1],// [1,4,6,4,1]//]public class PascalsTriang.........【阅读全文】

阅读(210) | 评论(0) | 转发(0)

发布时间:2015-03-22 16:58:34

//Palindrome Number Total Accepted: 35430 Total Submissions: 122024 My Submissions Question Solution //Determine whether an integer is a palindrome. Do this without extra space.public class PalindromeNumber {public boolean isPalindrome(int x) {        if(x<0)&nb.........【阅读全文】

阅读(238) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册