Author: user

【黑旗.ISIS的崛起】什么样的人用眼神就可以掌握一切

【黑旗.ISIS的崛起】什么样的人用眼神就可以掌握一切

在这本纪实作品用36万字的内容解析了ISIS在中东的崛起,以扎卡维为首的激进宗教极端分子产生的背景和影响。起始的第一个章节以狱医的视角还原了尚处在监狱之中的扎卡维。

【现代艺术150年】 前印象派1820-1870

【现代艺术150年】 前印象派1820-1870

印象派可能是最后一种正当艺术的表现形式了,他们的绘画主体清晰、画面优美、清新无害。我们甚至不得不承认,相对于那些更加现代的艺术,印象派的绘画显得有些落伍,甚至陈旧。但是并不能因此就认为印象派是没有反叛性的,恰恰相反,印象派画家面临的压力与对叛逆的坚持,是远远超过于后来的艺术从业者们的。

【现代艺术150年】泉 1917

【现代艺术150年】泉 1917

马塞尔杜尚的《泉》(男士小便池),是当代艺术史上标志性的作品,而他的标志性不完全在于其艺术价值,而在于其引起了一场巨大的价值争论,甚至产生了对传统艺术挑衅式的挑战。杜尚重新定义了什么是艺术/和艺术可以是什么,引导了一场“这也可以是艺术?”的争论。

【现代艺术150年】引论

【现代艺术150年】引论

人们很难理解,为什么代表这个时代的艺术品,逐渐从达芬奇式的典雅转变为乱糟糟的床和臭烘烘的鱼。

Leetcode 261. Graph Valid Tree 无向图成环问题

Leetcode 261. Graph Valid Tree 无向图成环问题

题目大意 Given n nodes labeled from 0 to n-1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these edges make up a valid tree. Example 1: Input: n = 5, and edges = [[0,1], 

Leetcode 101. Symmetric Tree 化用深度搜索

Leetcode 101. Symmetric Tree 化用深度搜索

Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree [1,2,2,3,4,4,3] is symmetric: 1 / \ 2 2 / \ / \ 3 4 4 3 But the following [1,2,2,null,3,null,3] is not: 1 

Leetcode 279. Perfect Squares 经典一维动态规划问题

Leetcode 279. Perfect Squares 经典一维动态规划问题

题目表述 Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, …) which sum to n. Example 1: Input: n = 12 Output: 3 Explanation: 12 = 4 + 4 + 4. Example 2: Input: n