^Illustrated Atlas of the World (1986) Rand McNally & Company. ISBN 0-528-83190-9 pp. 164-5
^Atlas of World History (1998 ) HarperCollins. ISBN 0-7230-1025-0 pg. 39
^The Tibetan Empire in Central Asia (Christopher Beckwith). [2009-02-19].
^Hopkirk 1983, pg. 1
^Peregrine, Peter Neal & Melvin Ember, etc. Encyclopedia of Prehistory: East Asia and Oceania, Volume 3. Springer. 2001: 32. ISBN 978-0-306-46257-3.
^Morris, Neil. North and East Asia. Heinemann-Raintree Library. 2007: 11. ISBN 978-1-4034-9898-4.
^Webb, Andrew Alexander Gordon. Contractional and Extensional Tectonics During the India-Asia Collision. ProQuest LLC. 2007: 137. ISBN 978-0-549-50627-0.
^Marston, Sallie A. and Paul L. Knox, Diana M. Liverman. World regions in global context: peoples, places, and environments. Prentice Hall. 2002: 430. ISBN 978-0-13-022484-2.
^Zhang, X. L.; Ha, B. B.; Wang, S. J.; Chen, Z. J.; Ge, J. Y.; Long, H.; He, W.; Da, W.; Nian, X. M.; Yi, M. J.; Zhou, X. Y.; Zhang, P. Q.; Jin, Y. S.; Bar-Yosef, O.; Olsen, J. W.; Gao, X. The earliest human occupation of the high-altitude Tibetan Plateau 40 thousand to 30 thousand years ago. Science. 2018-11-29, 362 (6418): 1049–1051. doi:10.1126/science.aat8824.
外部链接
维基共享资源中相关的多媒体资源:青藏高原
ON THINNER ICE 如履薄冰 (by GRIP, Asia Society and MediaStorm)
The Third Pole: Understanding Asia's Water Crisis
The End of Earth's Summer
Long Rivers and Distant Sources
"Roof of the Earth" Offers Clues About How Our Planet Was Shaped
Plateau Perspectives (international NGO)
Leaf morphology and the timing of the rise of the Tibetan Plateau
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
4
1
I am installing hackintosh in virtualbox on ubuntu, but when I try to start, I get above error. Here are some more details, Result Code: NS_ERROR_FAILURE (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} How can I solve this issue?
16.04 virtualbox
share | improve this question
asked Oct 22 '17 at 15:10
luv.preet luv.preet
1,502 4 13 29
...