Zuihuai

The zuihuai (Chinese: 罪槐; pinyin: Zuìhuái; lit.: 'guilty pagoda tree') is a specimen of the pagoda tree (Styphnolobium japonicum) located in Jingshan Park, Beijing, China. It is a tourist attraction and national landmark in Jingshan Park. The Chongzhen Emperor, the last ruler of the Ming dynasty, allegedly hanged himself from the tree in 1644 after the imperial capital, Beijing, fell to rebel forces led by Li Zicheng.[1]

The zuihuai

The original tree has been replaced numerous times.[1] The current tree is a 150 year old replacement, replanted in 1996.[2]

Notes

gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.

References

See also

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.