题目链接 http://www.lightoj.com/volume_showproblem.php?problem=1111 题意:给你一个有向图再给你几个人的位置,问所有人可以在哪些点相聚。 简单的搜索题,可以用bfs也可以用dfs,要注意的是存边的时候最好用vector,因为边比较少。 用st ...
分类:
其他好文 时间:
2016-11-18 15:59:32
阅读次数:
208
数据库变为单用户模式的解决办法 USE master; GO DECLARE @SQL VARCHAR(MAX); SET @SQL='' SELECT @SQL=@SQL+'; KILL '+RTRIM(SPID) FROM master..sysprocesses WHERE dbid=DB_I ...
分类:
其他好文 时间:
2016-11-18 11:44:33
阅读次数:
189
字符串方法:str.lengthstr.charAt(i):取字符串中的某一个;str.indexOf('e');找第一个出现的位置;找不到返回-1;str.lastIndexOf('e'):找最后一个e出现的位置;找不到返回-1;str.toUpperCase();转大写str.toLowerCa ...
分类:
编程语言 时间:
2016-11-18 06:20:53
阅读次数:
169
Sightseeing tour Description The city executive board in Lund wants to construct a sightseeing tour by bus in Lund, so that tourists can see every cor ...
分类:
其他好文 时间:
2016-11-17 23:52:45
阅读次数:
249
292. Nim Game You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remo ...
分类:
其他好文 时间:
2016-11-16 22:07:10
阅读次数:
241
Reverse a linked list from position m to n. Do it in-place and in one-pass. For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4, return 1->4->3->2- ...
分类:
其他好文 时间:
2016-11-16 20:18:53
阅读次数:
194
v-for 我们用 v-for 指令根据一组数组的选项列表进行渲染。 v-for 指令需要以item in items 形式的特殊语法, items 是源数据数组并且 item 是数组元素迭代的别名。 基本用法 结果: Foo Bar 在 v-for 块中,我们拥有对父作用域属性的完全访问权限。 v ...
分类:
其他好文 时间:
2016-11-16 07:40:20
阅读次数:
272
【题目链接】 http://poj.org/problem?id=3581 【题目大意】 给出一个数列,将这个数列分成三段,每段分别翻转,使得其字典序最小,输出翻转后的数列。 【题解】 首先,第一个翻转点就是翻转后数列的最小后缀,注意由于一定要分成三段,则至少要剩下两个元素。难点主要是如何处理第二个 ...
分类:
编程语言 时间:
2016-11-15 23:46:53
阅读次数:
296
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2016-11-15 23:23:54
阅读次数:
226