摘要: 在Win10中配置环境变量的方法跟在Win8和Win7中有些不同,看了看网上好多还是Win7/8里面的配置方法。虽然从原理上基本上没什么问题,但有些细节却会让人很苦恼。特意整理下新的配置方法。我假定你已经正确安装了JDK和JRE。 1. 配置JAVA_HOME 首先打开环境变量的配置界面,新建一个系 阅读全文
posted @ 2017-11-06 13:57 六层楼 阅读(73445) 评论(4) 推荐(3) 编辑
摘要: 最近做的项目有这样一个需求:要求对map中的值进行排序并生成序号。如果值相等则序号不变;如果不相等序号为该数数值在所有元素中的索引。如下表所示: |Key(String)|Value(Float)|Idx| | | | | |23|12.4 | 1| |10|3.2 | 2| |11|2.2| 3| 阅读全文
posted @ 2017-11-06 13:56 六层楼 阅读(3136) 评论(0) 推荐(0) 编辑
摘要: 另一种实现方式比较简单: 阅读全文
posted @ 2017-08-02 17:22 六层楼 阅读(672) 评论(0) 推荐(0) 编辑
摘要: Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ranking. Note that after a tie, the next ranking num 阅读全文
posted @ 2017-07-11 12:48 六层楼 阅读(1410) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: Example 1: Exa 阅读全文
posted @ 2017-07-04 17:02 六层楼 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 与树的前中后序遍历的DFS思想不同,层次遍历用到的是BFS思想。一般DFS用递归去实现(也可以用栈实现),BFS需要用队列去实现。 层次遍历的步骤是: 1.对于不为空的结点,先把该结点加入到队列中 2.从队中拿出结点,如果该结点的左右结点不为空,就分别把左右结点加入到队列中 3.重复以上操作直到队列 阅读全文
posted @ 2017-07-03 09:22 六层楼 阅读(15148) 评论(2) 推荐(0) 编辑
摘要: 前两天重装了系统,今天想写一个项目的时候出现了点问题。 在使用eclipse创建maven web项目时,点Finish后报了Could not resolve archetype的问题。 Could not resolve archetype org.apache.maven.archetypes 阅读全文
posted @ 2017-06-25 13:21 六层楼 阅读(47515) 评论(6) 推荐(10) 编辑
摘要: 今天面试真是超级难受。之前面试的公司问的都是项目,我准备的东西也就偏向项目了一点。然而,今天面试的面试官特别倾向于基础。结果,快排没写出来,一个简单的算法题,解题的思路跟面试官提示的不大一样。准备接下来花一段时间好好复习回顾下以前学的计算机网络、数据结构、数据库、操作系统的内容。 TCP是面向连接的 阅读全文
posted @ 2017-05-10 13:16 六层楼 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 最近有人在微信上给我发了一个数学题目,如下图: 我看了之后感觉很是简单,但是却想了半天才解出来。解出来后我想到了用程序再解一遍,然而精确计算的问题却让人头疼不已。 解题思路: 思路其实很简单,暴力求解就可以,但是当你写了一个四重for循环后你会发现解不出来。由此考虑到结果可能是小数,便把增量改成了f 阅读全文
posted @ 2017-05-01 19:37 六层楼 阅读(1969) 评论(0) 推荐(0) 编辑
摘要: Given a string containing only digits, restore it by returning all possible valid IP address combinations. For example:Given "25525511135", return ["2 阅读全文
posted @ 2017-03-23 16:10 六层楼 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Given a binary tree, return thepreordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,2,3].Not... 阅读全文
posted @ 2015-11-26 21:44 六层楼 阅读(168) 评论(0) 推荐(0) 编辑
摘要: Given an array ofnintegers wheren> 1,nums, return an arrayoutputsuch thatoutput[i]is equal to the product of all the elements ofnumsexceptnums[i].Solv... 阅读全文
posted @ 2015-10-18 13:34 六层楼 阅读(711) 评论(0) 推荐(0) 编辑
摘要: You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 ston... 阅读全文
posted @ 2015-10-17 18:23 六层楼 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST.According to thedefinition of LCA on Wikipedia: ... 阅读全文
posted @ 2015-10-08 22:30 六层楼 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Invert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1Trivia:This problem was inspired bythis... 阅读全文
posted @ 2015-10-06 18:53 六层楼 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Total Accepted:83663Total Submissions:200541Difficulty:EasyGiven two binary trees, write a function to check if they are equal or not.Two binary trees... 阅读全文
posted @ 2015-10-03 20:55 六层楼 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is1 -> 2 -> 3 -> ... 阅读全文
posted @ 2015-09-24 21:03 六层楼 阅读(133) 评论(0) 推荐(0) 编辑
摘要: Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like:3 + ... 阅读全文
posted @ 2015-09-23 20:56 六层楼 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 矩阵的鞍点就是指它在本行中的值最大,在本列中的值最小。求解思路:求出每行的最大值MaxRow以及每列的最小值MinColumn保存行最大值的位置和列最小值的位置如果行最大值得位置和列最小值的相等则输出此鞍点(如果没有鞍点则输出无)代码如下:#include #includeusing namespa... 阅读全文
posted @ 2015-06-26 12:46 六层楼 阅读(3266) 评论(0) 推荐(0) 编辑
摘要: 1 package test; 2 import java.awt.*; 3 import javax.swing.*; 4 import java.awt.event.*; 5 public class FrameDemo2 6 { 7 static JTextField field1=new ... 阅读全文
posted @ 2015-06-24 13:15 六层楼 阅读(858) 评论(0) 推荐(0) 编辑