最新 最热

光标定位,隐藏光标

最近写贪吃蛇游戏时,需要用到光标定位,故总结如下。方法一: 1 #include<windows.h> 2 #include<stdio.h> 3 4 HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE); 5 COORD coord; 6 void locate(in......

2018-01-17
1

A+B for Input-Output Practice (VI)

http://acm.hdu.edu.cn/showproblem.php?pid=1094Problem DescriptionYour task is to calculate the sum

2018-01-17
1

du熊学斐波那契I

du熊学斐波那契ITime Limit : 2000/1000ms (C/Other)   Memory Limit : 65535/32768K (C/Other)本次组委会推荐使用C、C++Problem Descriptiondu熊对数学一直都非常感兴趣。最近在学习斐波那契数列的它,向你展示了...

2018-01-17
1

Buildings

Problem DescriptionWe divide the HZNU Campus into N*M grids. As you can see from the picture below, the green grids represent the buidings. Given the size of t...

2018-01-17
1

Leetcode 2 Add Two Numbers

题目没有说清楚,trick挺多,考察细心程度的水题吧。 You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their n......

2018-01-12
1

Leetcode 216. Combination Sum III

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique ...

2018-01-12
1

496. Next Greater Element I(Stack-Easy)

该文是关于给定两个数组nums1和nums2,找到所有nums1中的元素对应nums2位置的下一个更大的元素。如果nums1中没有元素,则找不到对应位置的下一个更大元素,返回-1。对于每个元素,需要记录其对应的最大值在nums2中的位置。如...

2018-01-08
1

[LeetCode] 216. Combination Sum III

该文介绍了LeetCode上的一道题目Solution,该题要求找到所有可能的k个数的组合,使得它们的和等于给定的n,同时每个组合中的元素都是1-9之间的数字。文章首先介绍了该题的背景,然后给出了两种情况的示例,并详细介绍了求解该...

2018-01-03
1

LWC 51:683. K Empty Slots

该文讲述了通过使用树集合来查找两个花朵之间的间隔为k的天数,同时维护一个有序状态,快速找到符合要求的天数。

2018-01-02
1

LWC 51:684. Redundant Connection

该文讲述了如何检测并删除树中冗余的边,以保证树的连通性。首先介绍了并查集,用于检查节点是否属于同一个连通块;然后讲述了如何通过并查集检测冗余边,并返回最后出现在2D数组中的边,保证至少存在一条有效边。...

2018-01-02
1