Loading...
Articles
82
Tags
27
Categories
48
Home
Archives
Tags
Categories
Project
About
Chris Wen's Blog
Product Management Introduction
Back to Home
Search
Home
Archives
Tags
Categories
Project
About
Product Management Introduction
Created
2025-07-15
|
Updated
2026-03-16
|
pmp
|
Word Count:
0
|
Reading Time:
1mins
Author:
Chris Wen
Link:
https://wenyupeng.github.io/2025/07/15/pmp/01-introduction/
Copyright Notice:
All articles on this blog are licensed under
CC BY-NC-SA 4.0
unless otherwise stated.
pmp
Previous
Queue
QueueQueue is a linear data structure that follows the First In First Out (FIFO) principle. Elements are added at the rear (enqueue) and removed from the front (dequeue). Circular QueueA circular queue is a linear data structure that follows the FIFO principle but connects the end of the queue back to the front, forming a circle. This allows for efficient use of space by reusing empty slots created by dequeued elements. 1234567891011121314151617181920212223242526public class CircularQueue ...
Next
Leetcode - 812. Largest Triangle Area
DescriptionGiven an array of points on the X-Y plane points where points[i] = [xi, yi], return the area of the largest triangle that can be formed by any three different points. Answers within 10-5 of the actual answer will be accepted. Example 1: 123Input: points = [[0,0],[0,1],[1,0],[0,2],[2,0]]Output: 2.00000Explanation: The five points are shown in the above figure. The red triangle is the largest. 12345Constraints:3 <= points.length <= 50-50 <= xi, yi <= 50All the given point...
Chris Wen
Dwell not on the past, nor fear the future.
Articles
82
Tags
27
Categories
48
Announcement
Maintain the motivation to learn and stay humble when facing every problem.
Recent Posts
Box-Cox and Yeo-Johnson Transformations
2025-11-14
Feature Selection
2025-11-14
GDPR
2025-11-13
Dimensionality Reduction and PCA
2025-11-12
Data Matching
2025-11-12
Search
Loading Database