- 浏览: 141376 次
-
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
Compare two version numbers version1 and version2.
If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0.
You may assume that the version strings are non-empty and contain only digits and the . character.
The . character does not represent a decimal point and is used to separate number sequences.
For instance, 2.5 is not "two and a half" or "half way to version three", it is the fifth second-level revision of the second first-level revision.
Here is an example of version numbers ordering:
[分析] 两种方法的主要思路是一致的,比较点号分割出来的每一个子串对应的数字。两个版本串的点号可能不一样多,为了正确比较诸如(1.0, 1) 或者(1.0.1, 1)这样的情况,实现时点号少的串可以视为后面都是0,一直比较到长串结束。Method1 需要额外空间,且注意String的split方法不能使用点号进行分割。Method2 不需要额外空间。
If version1 > version2 return 1, if version1 < version2 return -1, otherwise return 0.
You may assume that the version strings are non-empty and contain only digits and the . character.
The . character does not represent a decimal point and is used to separate number sequences.
For instance, 2.5 is not "two and a half" or "half way to version three", it is the fifth second-level revision of the second first-level revision.
Here is an example of version numbers ordering:
[分析] 两种方法的主要思路是一致的,比较点号分割出来的每一个子串对应的数字。两个版本串的点号可能不一样多,为了正确比较诸如(1.0, 1) 或者(1.0.1, 1)这样的情况,实现时点号少的串可以视为后面都是0,一直比较到长串结束。Method1 需要额外空间,且注意String的split方法不能使用点号进行分割。Method2 不需要额外空间。
// Method 1 public int compareVersion(String version1, String version2) { if (version1 != null && version2 != null) { version1 = version1.replace('.', ':'); version2 = version2.replace('.', ':'); String[] num1 = version1.split(":"); String[] num2 = version2.split(":"); int val1 = 0; int val2 = 0; int i = 0; while (i < num1.length || i < num2.length) { val1 = 0; val2 = 0; if (i < num1.length) val1 = Integer.parseInt(num1[i]); if (i < num2.length) val2 = Integer.parseInt(num2[i]); if (val1 < val2) return -1; else if (val1 > val2) return 1; i++; } return 0; } else if (version1 != null) { return 1; } else if (version2 != null) { return -1; } else { return 0; } } // Method 2 public int compareVersion(String version1, String version2) { if (version1 != null && version2 != null) { int p1 = 0, p2 = 0; int nextDot1 = -1, nextDot2 = -1; int n1 = version1.length(), n2 = version2.length(); int sub1 = 0, sub2 = 0; while (p1 < n1 || p2 < n2) { nextDot1 = version1.indexOf('.', p1); nextDot2 = version2.indexOf('.', p2); if (p1 < n1) sub1 = Integer.valueOf(version1.substring(p1, nextDot1 != -1 ? nextDot1 : n1)); else sub1 = 0; if (p2 < n2) sub2 = Integer.valueOf(version2.substring(p2, nextDot2 != -1 ? nextDot2 : n2)); else sub2 = 0; if (sub1 > sub2) return 1; else if (sub1 < sub2) return -1; p1 = nextDot1 != -1 ? (nextDot1 + 1) : n1; p2 = nextDot2 != -1 ? (nextDot2 + 1) : n2; } return 0; } else if (version1 == null) { return -1; } else if (version2 == null) { return 1; } else { return 0; } }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1121[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Read N Characters Given Read4 II - Call Multiple Times
2015-08-28 09:00 876The API: int read4(char *buf) r ... -
Leetcode - Read N Characters Given Read4
2015-08-27 20:56 711The API: int read4(char *buf) r ... -
Leetcode - One Edit Distance
2015-08-27 20:26 566[分析] 两字符串相同或者长度差异大于等于2都不符合要求,只需 ... -
Leetcode - Isomorphic Strings
2015-08-23 09:51 570[分析] 思路1:维护两个哈希表,char[] map, bo ... -
Leetcode - Group Shifted String
2015-08-22 16:20 1751Given a string, we can "sh ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1115A strobogrammatic number is a n ... -
Leetcode - Text Justification
2015-06-22 18:29 404Given an array of words and a l ... -
Leetcode - Valid Number
2015-06-21 10:42 682Validate if a given string is n ... -
Leetcode - Substring with Contentaion of All Words
2015-06-18 10:01 529You are given a string, s, and ... -
Leetcode - Simplify Path
2015-06-17 21:58 447Given an absolute path for a fi ... -
Leetcode - ZigZag Conversion
2015-06-15 21:31 564The string "PAYPALISHIRING ... -
Leetcode - Multiply String
2015-06-15 09:39 705Given two numbers represented a ... -
Leetcode - Minimum Window String
2015-06-14 19:33 601Given a string S and a string T ... -
Leetcode - Longest Substring Without Repeating Characters
2015-06-14 15:34 580Given a string, find the length ... -
Leetcode - Implement strStr()
2015-06-13 19:54 774Implement strStr(). Returns the ... -
Leetcode - Add Binary
2015-06-13 17:34 319Given two binary strings, retu ... -
Leetcode - Shortest Palindrome
2015-06-13 10:55 580Given a string S, you are allow ... -
Leetcode - Longest Palindrome Substring
2015-06-11 09:48 472<div class="iteye-blog- ...
相关推荐
在LeetCode上,题号165的题目是要求实现一个函数compareVersion,该函数的目的是比较两个字符串格式的版本号。在JavaScript环境中,这一题目的解决方法通常涉及到字符串的处理和数组的转换。首先,我们需要将版本号...
本篇内容将专注于对LeetCode网站上编号为165的算法题目的Python解决方案进行详解。这个问题是“比较两个版本号”,在软件开发过程中,版本控制是一个经常遇到的问题,因此这个问题不仅具有理论意义,而且具有实际...
leetcode卡比较版本号 比较两个版本号 version1 和 version2。 如果 version1 > version2 返回 1; 如果 version1 < version2 返回 -1;否则返回 0。 您可以假设版本字符串是非空的并且只包含数字和 . 特点。 这 ...
201 | [Bitwise AND of Numbers Range](https://leetcode.com/problems/bitwise-and-of-numbers-range/) | [C++](./C++/bitwise-and-of-numbers-range.cpp) [Python](./Python/bitwise-and-of-numbers-range.py) | _...
public int compareVersion(String version1, String version2) { String[] nums1 = version1.split("\\."); String[] nums2 = version2.split("\\."); for (int i = 0; i (nums1.length, nums2.length); i++) {...
Compare Version Numbers 排列组合 链表 topk大数据 [Github]: Java面试指南 BAT String Reverse 进程 线程 程序 协程 Java 总结 云粒智慧 1.你的项目中你感觉有哪些缺点 2.你的项目的架构图是什么 3.你用过哪些...
- “Compare Version Numbers(比较版本号)”则是考查字符串处理和版本控制概念。 - “Copy List with Random Pointer(带有随机指针的复制链表)”涉及到复杂的数据结构操作。 - “Binary Tree Zigzag Level ...