最近在开发CS的一个项目时,编译总是出现错误: "LC.EXE 已退出,代码为-1" 解决方法一:用记事本打开*.licx,里面写的全是第三方插件的指定DLL,删除错误信息,保存,关闭,重新生成解决方案。 解决方法二:把项目文件夹下Properties文件夹下的licenses.licx文件删除,重 ...
分类:
其他好文 时间:
2019-10-03 21:40:47
阅读次数:
104
题目描述 Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The an ...
分类:
其他好文 时间:
2019-10-03 17:47:38
阅读次数:
75
题目描述 144. Binary Tree Preorder Traversal 94. Binary Tree Inorder Traversal 145. Binary Tree Postorder Traversal 前序排列 :根-左-右 中序排列: 左-根-右 后序排列:左-右-根 参考答 ...
分类:
其他好文 时间:
2019-10-03 00:30:32
阅读次数:
87
质谱仪: 质谱分析法是先将大分子电离为带电粒子,按质核比分离,由质谱仪识别电信号得到质谱图。 Top-down直接得到结果是蛋白。 Bottom down使用shutgun方法得到结果是肽段。 由蛋白质混合物打断为肽段混合物,按特定时间分离为LC, 初次得到的谱图为一级谱,一级谱是串联质谱,其中一个 ...
分类:
其他好文 时间:
2019-10-01 22:20:31
阅读次数:
131
题目描述 Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need ...
分类:
其他好文 时间:
2019-09-30 23:35:43
阅读次数:
128
题目介绍 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would ha ...
分类:
其他好文 时间:
2019-09-30 20:15:05
阅读次数:
119
①中文题目 编写一个程序,找到两个单链表相交的起始节点。 如下面的两个链表: 在节点 c1 开始相交。 注意: 如果两个链表没有交点,返回 null.在返回结果后,两个链表仍须保持原有的结构。可假定整个链表结构中没有循环。程序尽量满足 O(n) 时间复杂度,且仅用 O(1) 内存。 ②思路 遍历,O ...
分类:
其他好文 时间:
2019-09-29 22:16:21
阅读次数:
116
①中文题目 给定一个链表,判断链表中是否有环。 为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。 示例 1: 输入:head = [3,2,0,-4], pos = 1输出:true解释:链表中有一个环, ...
分类:
其他好文 时间:
2019-09-29 20:14:15
阅读次数:
98
岛屿数量 Date Created: Sep 22, 2019 11:28 PM Last Edited Time: Sep 27, 2019 5:39 PM 显示完成时间: Sep 23, 2019 状态: 已完成 真实完成时间: Sep 23, 2019 类型: leetcode 解法一 深度优 ...
分类:
其他好文 时间:
2019-09-27 19:32:37
阅读次数:
95
Remove all elements from a linked list of integers that have value val. Example: ...
分类:
其他好文 时间:
2019-09-25 12:23:38
阅读次数:
75