Skip to content

Commit dd01c56

Browse files
committed
Update to own
1 parent bc94176 commit dd01c56

7 files changed

+410
-2
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
// Given a linked list, remove the n - th node from the end of list and return its head.
3+
4+
// Example:
5+
6+
// Given linked list: 1 -> 2 -> 3 -> 4 -> 5, and n = 2.
7+
8+
// After removing the second node from the end, the linked list becomes 1 -> 2 -> 3 -> 5.
9+
// Note:
10+
11+
// Given n will always be valid.
12+
13+
// Follow up:
14+
15+
// Could you do this in one pass ?
16+
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Given a sorted linked list, delete all duplicates such that each element appear only once.
2+
3+
// Example 1:
4+
5+
// Input: 1 -> 1 -> 2
6+
// Output: 1 -> 2
7+
8+
// Example 2:
9+
10+
// Input: 1 -> 1 -> 2 -> 3 -> 3
11+
// Output: 1 -> 2 -> 3
12+
13+
14+
// 1)
15+
/**
16+
* Definition for singly-linked list.
17+
* function ListNode(val) {
18+
* this.val = val;
19+
* this.next = null;
20+
* }
21+
*/
22+
/**
23+
* @param {ListNode} head
24+
* @return {ListNode}
25+
*/
26+
const deleteDuplicates = function (head) {
27+
let current = head
28+
while (current) {
29+
if (current.next && current.val === current.next.val) {
30+
current.next = current.next.next
31+
} else {
32+
current = current.next
33+
}
34+
}
35+
return head
36+
}
37+
// Runtime: 64 ms, faster than 81.24 % of JavaScript online submissions for Remove Duplicates from Sorted List.
38+
// Memory Usage: 36 MB, less than 25.00 % of JavaScript online submissions for Remove Duplicates from Sorted List.
39+

0118. Pascal's Triangle.js

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
// Given a non - negative integer numRows, generate the first numRows of Pascal's triangle.
2+
3+
// In Pascal's triangle, each number is the sum of the two numbers directly above it.
4+
5+
// Example:
6+
7+
// Input: 5
8+
// Output:
9+
// [
10+
// [1],
11+
// [1, 1],
12+
// [1, 2, 1],
13+
// [1, 3, 3, 1],
14+
// [1, 4, 6, 4, 1]
15+
// ]
16+
17+
18+
// 1)
19+
/**
20+
* @param {number} numRows
21+
* @return {number[][]}
22+
*/
23+
const generate = (numRows) => {
24+
let res = []
25+
for (let i = 0; i < numRows; i++) {
26+
if (i === 0) {
27+
res.push([1])
28+
} else {
29+
let row = []
30+
for (let j = 0; j <= res[i - 1].length; j++) {
31+
if (j === 0 || j === res[i - 1].length) {
32+
row.push(1)
33+
} else {
34+
row.push(res[i - 1][j - 1] + res[i - 1][j])
35+
}
36+
}
37+
res.push(row)
38+
}
39+
}
40+
return res
41+
}
42+
// Runtime: 56 ms, faster than 49.72 % of JavaScript online submissions for Pascal's Triangle.
43+
// Memory Usage: 33.7 MB, less than 100.00 % of JavaScript online submissions for Pascal's Triangle.

0119. Pascal's Triangle II.js

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// Given a non - negative index k where k ≤ 33, return the kth index row of the Pascal's triangle.
2+
3+
// Note that the row index starts from 0.
4+
5+
// In Pascal's triangle, each number is the sum of the two numbers directly above it.
6+
7+
// Example:
8+
9+
// Input: 3
10+
// Output: [1, 3, 3, 1]
11+
// Follow up:
12+
13+
// Could you optimize your algorithm to use only O(k) extra space ?
14+
15+
16+
// 1)
17+
/**
18+
* @param {number} rowIndex
19+
* @return {number[]}
20+
*/
21+
const getRow = (rowIndex) => {
22+
let res = [1]
23+
if (rowIndex > 0) {
24+
for (let i = 0; i < rowIndex; i++) {
25+
let last = res
26+
let len = last.length
27+
res = []
28+
for (let j = 0; j <= len; j++) {
29+
if (j === 0 || j === len) {
30+
res[j] = 1
31+
} else {
32+
res.push(last[j - 1] + last[j])
33+
}
34+
}
35+
}
36+
}
37+
return res
38+
}
39+
// Runtime: 52 ms, faster than 82.87 % of JavaScript online submissions for Pascal's Triangle II.
40+
// Memory Usage: 33.8 MB, less than 70.00 % of JavaScript online submissions for Pascal's Triangle II.
41+
42+
43+
// 2) 更简洁、更少的空间
44+
/**
45+
* @param {number} rowIndex
46+
* @return {number[]}
47+
*/
48+
const getRow = (rowIndex) => {
49+
let res = Array(rowIndex + 1).fill(0)
50+
res[0] = 1
51+
for (let i = 1; i < rowIndex + 1; i++) {
52+
for (let j = i; j > 0; j--) {
53+
res[j] += res[j - 1]
54+
}
55+
}
56+
return res
57+
}
58+
// Runtime: 52 ms, faster than 82.87 % of JavaScript online submissions for Pascal's Triangle II.
59+
// Memory Usage: 33.8 MB, less than 70.00 % of JavaScript online submissions for Pascal's Triangle II.
60+
61+

0203. Remove Linked List Elements.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Remove all elements from a linked list of integers that have value val.
2+
3+
// Example:
4+
5+
// Input: 1 -> 2 -> 6 -> 3 -> 4 -> 5 -> 6, val = 6
6+
// Output: 1 -> 2 -> 3 -> 4 -> 5
7+
8+
9+
// 1)
10+
/**
11+
* Definition for singly-linked list.
12+
* function ListNode(val) {
13+
* this.val = val;
14+
* this.next = null;
15+
* }
16+
*/
17+
/**
18+
* @param {ListNode} head
19+
* @param {number} val
20+
* @return {ListNode}
21+
*/
22+
const removeElements = (head, val) => {
23+
let current = head
24+
while (current) {
25+
if (head.val === val) {
26+
current = current.next
27+
head = head.next
28+
} else {
29+
if (current.next && current.next.val === val) {
30+
current.next = current.next.next
31+
} else {
32+
current = current.next
33+
}
34+
}
35+
}
36+
return head
37+
}
38+
// Runtime: 76 ms, faster than 53.38 % of JavaScript online submissions for Remove Linked List Elements.
39+
// Memory Usage: 37.6 MB, less than 25.00 % of JavaScript online submissions for Remove Linked List Elements.

0229. Majority Element II.js

+50-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
// Output: [1, 2]
1414

1515

16-
// 1) Map
16+
// 1) O(n^2)
17+
18+
19+
// 2) Map
1720
// 时间复杂度 O(n),空间复杂度 O(n)
1821
/**
1922
* @param {number[]} nums
@@ -36,4 +39,49 @@ const majorityElement = (nums) => {
3639
return res
3740
}
3841
// Runtime: 68 ms, faster than 37.98% of JavaScript online submissions for Majority Element II.
39-
// Memory Usage: 37.3 MB, less than 14.29 % of JavaScript online submissions for Majority Element II.
42+
// Memory Usage: 37.3 MB, less than 14.29 % of JavaScript online submissions for Majority Element II.
43+
44+
45+
// 3) Boyer-Moore Vote algorithm
46+
// 时间复杂度 O(n),空间复杂度 O(1)
47+
// similar to 0169
48+
// 大于 ⌊ n/3 ⌋,分析问题发现,最多出现两个符合条件的元素。设置两个候选。
49+
/**
50+
* @param {number[]} nums
51+
* @return {number[]}
52+
*/
53+
const majorityElement = (nums) => {
54+
let candidate1 = -1
55+
let candidate2 = -1
56+
let count1 = 0
57+
let count2 = 0
58+
let res = []
59+
for (num of nums) {
60+
if (count1 === 0 && num !== candidate2) {
61+
candidate1 = num
62+
} else if (count2 === 0 && num !== candidate1) {
63+
candidate2 = num
64+
}
65+
if (num === candidate1) {
66+
count1++
67+
} else if (num === candidate2) {
68+
count2++
69+
} else {
70+
count1--
71+
count2--
72+
}
73+
}
74+
const counts = (arr, value) => {
75+
return arr.reduce((a, v) =>
76+
v === value ? a + 1 : a + 0, 0
77+
)
78+
}
79+
for (let candidate of [candidate1, candidate2]) {
80+
if (counts(nums, candidate) > nums.length / 3) {
81+
res.push(candidate)
82+
}
83+
}
84+
return res
85+
}
86+
// Runtime: 64 ms, faster than 55.37% of JavaScript online submissions for Majority Element II.
87+
// Memory Usage: 37 MB, less than 14.29 % of JavaScript online submissions for Majority Element II.

0 commit comments

Comments
 (0)