自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 资源 (7)
  • 收藏
  • 关注

原创 面试题10:Vasya - Clerk

The new “Avengers” movie has just been released! There are a lot of people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 dollars bill. A “Avengers” ticket co

2017-09-26 08:56:39 432

原创 面试题09:Calculate mean and concatenate string

You will be given an array which will include both integers and characters. Return an array of length 2 with a[0] representing the mean of the ten integers as a floating point number. There will alway

2017-09-23 19:14:51 248

原创 面试题08:Calculate BMI

Write function bmi that calculates body mass index (bmi = weight / height ^ 2). if bmi <= 18.5 return “Underweight” if bmi <= 25.0 return “Normal” if bmi <= 30.0 return “Overweight” if bmi > 30 ret

2017-09-23 19:09:30 426

原创 面试题07:Count the smiley faces!

Description : Given an array (arr) as an argument complete the function countSmileys that should return the total number of smiling faces.Rules for a smiling face: -Each smiley face must contain a val

2017-09-21 19:35:23 572

原创 面试题06:一串英文数字转换成阿拉伯数字

已知:zero,one,two,three,four,five,six,seven,eight,nine分别对应0,1,2,3,4,5,6,7,8,9,对每一段含有这几种字符串的字符串进行转换,如: 输入:nineeightsevensixfivefourthreetwoonezero 输出:9876543210 数字的先后顺序不考虑。 代码:public static String eng

2017-09-21 16:02:24 6501 1

原创 面试题05:Jaden Casing Strings

Jaden Smith, the son of Will Smith, is the star of films such as The Karate Kid (2010) and After Earth (2013). Jaden is also known for some of his philosophy that he delivers via Twitter. When writing

2017-09-18 16:12:58 771

原创 面试题04:Mind the Gap

Background: *If you visit London and travel on the Tube, you might hear the announcer say, “Mind the gap!” Usually this is to do with the gap between the train and the platform. Recently, another typ

2017-09-18 16:07:00 810

原创 面试题03:Sum of odd numbers

Given the triangle of consecutive odd numbers: 1 3 5 7 9 11 13 15 17 1921 23 25 27 29...*Calculate the row sums of this triangle from th

2017-09-11 23:34:07 782

原创 面试题02:Delete occurrences of an element if it occurs more than n times

题目描述: Alice and Bob were on a holiday. Both of them took many pictures of the places they’ve been, and now they want to show Charlie their entire collection. However, Charlie doesn’t like this sessi

2017-09-11 23:19:37 507

原创 求一组数中的最大最小数以及源码分析

随机

2017-09-07 13:01:14 681

原创 面试题--01

之前在面试的时候碰到的小题目,不难,但是对于这道题的解法还是有很多意思的。求字符串中出现的第一个不重复的字符 如acdefcad 返回 e 。解法一:先将字符串变成字符数组,利用HashMap存储字符,key为字符,value为字符的个数。最后从头开始循环字符数组并与HashMap对比得到结果。 String str = "fjSfjldsjfdlsJFLjfdjfkldsJFFFFFFFFJ

2017-09-01 19:36:59 183

尚硅谷Linux学习笔记(不包含shell)超级详细版

我自己看完韩顺平老师在尚硅谷发布的新版的Linux的视频,看到了在Linux下安装Tomcat,JDK这个地方,不包含shell编程的笔记。因为以前我觉得Linux很难,所以一直想学会,这次笔记做得比较详细。另一个亮点是使用markdown语法编辑的,学会之后感觉很有帮助。另外Typora的软件安装包也在压缩文件里,推荐大家使用这个编辑器做笔记。网上看到了别的网友分享的其他资源的学习笔记,下载下来看了之后感觉还有可以优化的地方,之后也会把其他的笔记整理好上传下来,不过最重要的是看完后要实践。

2018-08-13

尚硅谷SVN高级

尚硅谷最新 SVN是Subversion的简称,是一个开放源代码的版本控制系统,相较于RCS、CVS,它采用了分支管理系统,它的设计目标就是取代CVS。 互联网上很多版本控制服务已从CVS迁移到Subversion。 说得简单一点SVN就是用于多个人共同开发同一个项目,共用资源的目的。

2018-04-13

尚硅谷最新MySQL基础178集下载

MySQL是一个关系型数据库管理系统,由瑞典MySQL AB 公司开发,目前属于 Oracle 旗下产品。MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件。 MySQL是一种关系数据库管理系统,关系数据库将数据保存在不同的表中,而不是将所有数据放在一个大仓库内,这样就增加了速度并提高了灵活性。

2017-10-18

尚硅谷MySQL高级思维导图PDF版

尚硅谷MySQL高级思维导图PDF版 和老师的不一样 能看

2017-04-01

尚硅谷Webservice视频链接

尚硅谷 WebService 视频链接

2017-01-23

尚硅谷Java8新特性下载

尚硅谷 Java8 新特性 百度云下载链接

2017-01-22

尚硅谷MYSQL高级下载

尚硅谷MYSQL高级,性能优化各个方面

2017-01-19

空空如也

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

TA关注的人

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