对于个人和企业来说,一定要在细分领域精耕细作。未来你是谁,要比你做的事更重要。

摘要: 对于个人和企业来说,一定要在细分领域精耕细作。未来你是谁,要比你做的事更重要。
分类: 服务端 发布时间: 06-06 23:47 阅读次数: 6

leetcode Validate Binary Search Tree

Validate Binary Search Tree
分类: 其他 发布时间: 06-06 23:47 阅读次数: 4

leetcode Search a 2D Matrix II

Search a 2D Matrix II
分类: 其他 发布时间: 06-06 23:46 阅读次数: 4

leetcode Different Ways to Add Parentheses

Different Ways to Add Parentheses
分类: 其他 发布时间: 06-06 23:46 阅读次数: 2

leetcode Same Tree

leetcode sametree
分类: 其他 发布时间: 06-06 23:46 阅读次数: 4

leetcode Symmetric Tree

Symmetric Tree
分类: 其他 发布时间: 06-06 23:46 阅读次数: 2

leetcode Maximum Depth of Binary Tree

Maximum Depth of Binary Tree
分类: 其他 发布时间: 06-06 23:45 阅读次数: 5

leetcode Course Schedule

Course Schedule,DFS和BFS方法判断图中是否存在环
分类: 其他 发布时间: 06-06 23:45 阅读次数: 2

leetcode Minimum Height Trees

Minimum Height Trees
分类: 其他 发布时间: 06-06 23:45 阅读次数: 2

leetcode Reconstruct Itinerary

leetcode Reconstruct Itinerary
分类: 其他 发布时间: 06-06 23:45 阅读次数: 4

leetcode Evaluate Division

leetcode Evaluate Division
分类: 其他 发布时间: 06-06 23:44 阅读次数: 2

leetcode Redundant Connection

leetcode Redundant Connection
分类: 其他 发布时间: 06-06 23:44 阅读次数: 4

leetcode Longest Consecutive Sequence

leetcode Longest Consecutive Sequence
分类: 其他 发布时间: 06-06 23:44 阅读次数: 2

leetcode Friend Circles

leetcode Friend Circles
分类: 其他 发布时间: 06-06 23:44 阅读次数: 2

NP问题——证明EXACT 4SAT问题是NP完全问题(算法概论习题8.8)

证明EXACT 4SAT问题是NP完全问题
分类: 其他 发布时间: 06-06 23:43 阅读次数: 4

leetcode-Number of Islands

Number of Islands 题目详情: Given a 2d grid map of '1's (land) and '0's (water), count the number of islands. An island is surrounded by water and is formed by connecting adjacent lands horizont
分类: 其他 发布时间: 06-06 23:43 阅读次数: 2

Google Translate 应用建模练习

练习文档
分类: 其他 发布时间: 06-06 23:43 阅读次数: 4

BBS论坛(十)

10.1.客户端权限验证功能完成 (1)cms/cms_profile 显示当前用户的角色和权限 <tr> <td>角色:</td> <td> {% for role in user.roles %} {{ role.name }} {% if not loop.last %},{%
分类: 其他 发布时间: 06-06 23:42 阅读次数: 4

Django的具体操作(一)

一,首先说下什么是Django,Django其实就是一个框架,用python写的,能开发网站之类的。 二,django的组成 1,urls:网址入口关联到对应的views视图函数,(采用mvc开发模式的可能是generic类),访问网址就对应一个函数。 2,views:用于处理用户发出的请求,从urls对应过来,通过渲染templates中的网页可以将显示的内容,比如登录后的用户名,用户请求的数据输出到网页。 3,models:涉及到的是对数据库的操作,定制列,表名等。 4,forms:表单,
分类: 其他 发布时间: 06-06 23:42 阅读次数: 3

bzoj1090(SCOI2003)字符串折叠

题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1090 像这种的一看就是区间dp。涉及合并什么的。 需要注意的是那个括号前的数字不一定是一位! 而且所有涉及区间的用的都是已经算好的dp值,比如那个折叠的地方,不是直接的长度,而是那一块的dp值! 不需要把dp想复杂。只要考虑设计了状态之后怎样转移。   转移常常需要分类讨论,比如这里就分类一下该区间要不要整体折叠。 #include<iostream> #include<cstdio>
分类: 其他 发布时间: 06-06 23:42 阅读次数: 5