算法
不尽的物语
毕业院校:广西师范大学 学历:本科<br>所学专业:软件工程<br>在校期间积极参加专业竞赛,并做过多个项目(如基于微信小程序的学习平台,购物商城,和问卷系统);<br>1、了解大数据的HDFS技术,HBASE技术,Sqoop使用流程,数据仓库工具HIVE,大数据离线分析Spark框架知识,并且会使用scala语言。<br>2、熟悉使用spring,springMVC,Mybatis框架。<br>3、掌握Mysql,PLSQL,Eclipse,Navicat,Maven,等开发工具的使用。<br>4、掌握JavaEE核心和常用的设计模式工厂模式,单例模式等基础知识;国家四级考试459,阅读基本的英语文档。
展开
-
旋转数组
给定一个数组,将数组中的元素向右移动 k 个位置,其中 k 是非负数。示例 1:输入: [1,2,3,4,5,6,7] 和 k = 3 输出: [5,6,7,1,2,3,4] 解释: 向右旋转 1 步: [7,1,2,3,4,5,6] 向右旋转 2 步: [6,7,1,2,3,4,5] 向右旋转 3 步: [5,6,7,1,2,3,4] 示例 2:输入: [-1,-100,3,99] 和 k = ...原创 2018-06-23 19:26:22 · 277 阅读 · 0 评论 -
Plus One
Given a non-empty array of digits representing a non-negative integer, plus one to the integer.The digits are stored such that the most significant digit is at the head of the list, and each element i...原创 2018-06-25 22:28:29 · 255 阅读 · 0 评论 -
旋转图像
You are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Note:You have to rotate the image in-place, which means you have to modify the input 2D matrix directl...原创 2018-07-01 00:17:26 · 264 阅读 · 0 评论 -
Reverse Integer
Given a 32-bit signed integer, reverse digits of an integer.Example 1:Input: 123 Output: 321 Example 2:Input: -123 Output: -321 Example 3:Input: 120 Output: 21 Note:Assume we are dealing with an envir...原创 2018-07-05 20:44:12 · 266 阅读 · 0 评论 -
String to Integer (atoi)
Implement atoi which converts a string to an integer.The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this ...原创 2018-07-07 22:12:32 · 208 阅读 · 0 评论