https://github.com/affectalways/affectalways.github.io/blob/master/icons/woman.jpg?raw=true

affectalways

Werkzeug 源码解析(3)

Werkzeug Request 源码解析 代码示例: 1 2 3 4 5 6 7 8 from werkzeug.wrappers import Request, Response def application(environ, start_response): request = Request(environ) text = 'Hello %s!' % request.args.get('name', 'World') response = Response(text, mimetype='text/plain') return response(environ, start_response) 请注意,之后Request和Response的相关源

02 两数相加

给出两个 非空 的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 的方式存储的,并且它们的每个节点只能存储 一位 数字。 如果,我们将这两个

05 马拉车算法

https://blog.csdn.net/liuwei0604/article/details/50414542 马拉车算法可以在线性时间复杂度内求出一个字符串的最长回文字串。其核心思想跟 KMP 相似,即反复利用已掌握的情况。 1.整体思路 1 2 3 这个算法的主要