A developer who loves doing Math

Ordered Set data structure in GNU C++

Ordered Set data structure in GNU C++

Ordered Set là một cấu trúc dữ liệu policy-based của thư viện GNU C++. Giống như std::set, implementation của nó vẫn dựa trên Red Black Tree, mọi phần tử trong nó có tính thứ tự và nó cũng làm được tất cả những gì mà std::set làm được trong độ phức tạp thời gian O(logN). Tuy nhiên, trong một số trường hợp chúng ta muốn biết thứ tự của một phần tử hoặc là tìm phần tử khi biết trước thứ tự của nó trong tập hợp, Ordered Set cung cấp thêm hai phương thức trong thời gian O(logN)

  • find_by_order(k): tìm phần tử lớn thứ k trong tập hợp (tính từ 0).
  • order_of_key(k): số phần tử nhỏ hơn k.

Continue reading →

Review: A Week With the Apple Watch

Review: A Week With the Apple Watch

The Apple Watch is a smartwatch developed by Apple Inc. It incorporates fitness tracking and health-oriented capabilities as well as integration with iOS and other Apple products and services. The device is available in four variants: Apple Watch Sport, Apple Watch, Apple Watch Hermès, and Apple Watch Edition. The Watch is distinguished by different combinations of cases and first or third party interchangeable bands. Apple Watch relies on a wirelessly connected iPhone to perform many of its default functions such as calling and texting. It is compatible with the iPhone 5 or later models running iOS 8.2 or later, through the use of Bluetooth or Wi-Fi.

Continue reading →

Basic Rules For Walking In The Mountains

Basic Rules For Walking In The Mountains

In the United States, Canada, the Republic of Ireland, and United Kingdom, hiking refers to walking outdoors on a trail, or off trail, for recreational purposes. A day hike refers to a hike that can be completed in a single day. However, in the United Kingdom, the word walking is also used, as well as rambling, while walking in mountainous areas is called hillwalking. In Northern England, Including the Lake District and Yorkshire Dales, fellwalking describes hill or mountain walks, as fell is the common word for both features there.

Continue reading →