TOP
月月讀書金,登入即領,滿600現折50!!
縮小範圍
出版日期
搜尋結果 /

Data Structures Using C

16155
19 / 404
C語言程序設計(第2版)(簡體書)
滿額折
出版日:2022/08/01 作者:鄭山紅; 李萬龍; 于秀霞  出版社:人民郵電出版社  裝訂:平裝
《21世紀高等學校規劃教材:C語言程序設計(第2版)》主要介紹C語言的基本概念、組成要素以及在程序設計中的應用,共分10章。《21世紀高等學校規劃教材:C語言程序設計(第2版)》提供多個綜合實例,通過分析、算法描述、源程序及運行結果4步驟的詳細闡述,引導讀者掌握c語言的程序設計方法,加深對知識的理解。全書針對初學者的特點,在內容的組織方面強調層次性與邏輯性,注重概念定義的嚴謹性和準確性,敘述由淺入
優惠價: 87 183
無庫存
高階語言程序設計(C語言版):基於計算思維能力培養(簡體書)
滿額折
出版日:2022/08/01 作者:揭安全  出版社:人民郵電出版社  裝訂:平裝
本書是一本以C 語言為描述語言,介紹結構化程序設計方法的教材。全書共10 章,內容包括:程序設計引論,C 數據類型、運算符和表達式,算法和簡單C 程序設計,程序基本控制結構,函數及其應用,數組及其應用,指針及其應用,結構體及其應用,文件與數據存儲,C 綜合性程序設計案例分析。
優惠價: 87 251
無庫存
GDAL源碼剖析與開發指南(簡體書)
滿額折
出版日:2022/08/01 作者:李民錄  出版社:人民郵電出版社  裝訂:平裝
GDAL(Geospatial Data Abstraction Library)是一個在X/MIT許可協議下的開源柵格空間數據轉換庫。由於GDAL庫支持很多的數據格式,目前幾乎所有的GIS和RS軟件底層都使用GDAL來讀寫空間數據。 《GDAL源碼剖析與開發指南》是基於GDAL源碼剖析的編程開發指南,共9章,分為三部分。第 一部分是前5章,介紹了GDAL的基本功能,包括GDAL簡介、ORG庫、GDAL庫以及GDAL的數據格式和配置項等;第 二部分是第6章到第8章,是GDAL的高 級使用說明,包括GDAL格式擴展、GDAL算法和CPL庫;第三部分是第9章,介紹GDAL工具的使用。 《GDAL源碼剖析與開發指南》適合地理信息系統和遙感等相關專業應用的開發人員閱讀參考。本書中大部分的示例代碼都是使用C/C++語言編寫,有一定C/C++語言基礎的讀者能夠快速上手開發相關應用。
優惠價: 87 465
無庫存
數值方法(C++與C#語言描述)(簡體書)
滿額折
出版日:2022/08/01 作者:王樂; 李斌  出版社:中國輕工業出版社  裝訂:平裝
計算方法、科學計算、數值方法、數值分析中的主要內容基本相同,都是講解如何實現數值計算,只是側重點不盡相同,有的側重算法本身的精度和誤差分析,有的則側重程序的編寫與實現。數值計算的核心就是對數據的操作。而數據大多數以矩陣的形式存在。數值計算的算法即數值方法,大多數是公開透明的,只是實現過程需要的工作量比較大,有的較為複雜。 進行數值計算的軟件平臺非常多,常見的有 MATLAB、Mathematica、R、Python等 , 大多數實現過程也都很簡單,短短幾行代碼就可以實現複雜的過程,根本不需要知道算法實現的細節。 關於數值方法(計算方法、數值分析、科學計算)的書籍非常多,也非常成熟。 針對不同的數值問題,講解的主要內容都是相同的。各種教材更多關注算法本身相關的概念、步驟、精度、誤差等數學相關概念。而在如何將算法變成程序實現方面卻非常少。 講述數值計算程序實現的教材大多數以 MATLAB 為主,因為 MATLAB 具有強大而簡單的矩陣運算,聲明和使用矩陣都非常方便,因此學習數值方法算法的實現過程變得簡單。而與 MATLAB 相同的 Python,同樣作為解釋型語言,由於其完成矩陣的操作略顯麻煩,需要調用 numpy 模塊,目前沒有發現用 Python 語言講述數值計算方法的書籍,但是直接用 Python 進行科學計算的書籍卻不少。R 語言同樣作為解釋型數據分析語言,在國內的用戶非常少,更很難見到其實現數值計算。 既然數值方法中的算法在大多數數值計算軟件中都可以直接簡單調用函數名稱實現,那為什麼還要學習數值計算方法自己編程實現科學計算呢?這是因為不經過編程實現數值計算算法的訓練過程,就不可能深入理解數值計算方法的實現過程與細節,計算方法的編程能力與技巧得不到有效鍛煉,更不容易順利地編寫更多具有複雜數值算法的程序。數值方法編程是學習數值方法的有效和必然途徑,可以為提高數值計算水平打好基礎。 針對數值方法編程,在編譯型語言上實現更具有意義,因為編譯型語言應用範圍廣泛,手機移動端、個人用戶端、服務器端、各種環境下都會用到編譯型語言進行編程。編譯型語言中 C 語言、C++、C#、Visual Basic、Java 這幾種語言的使用者數量龐大。學習使用 C++ 與 C# 語言的人員,並不一定同時熟悉 MATLAB 或者 R 這類數值計算語言。在採用 C++ 和 C# 等
優惠價: 87 355
無庫存
數據結構和算法 Python和C++語言描述(簡體書)
滿額折
出版日:2022/08/01 作者:(美)戴維‧M.瑞德; 約翰‧策勒  出版社:人民郵電出版社  裝訂:平裝
本書使用Python 和C++兩種編程語言來介紹數據結構。全書內容共15 章。書中首先介紹了抽象與分析、數據的抽象等數據結構的基本原理和知識,然後結合Python 的特點介紹了容器類、鏈式結構和迭代器、堆棧和隊列、遞歸、樹;隨後,簡單介紹了C++語言的知識,並進一步講解了C++類、C++的動態內存、C++的鏈式結構、C++模板、堆、平衡樹和散列表、圖等內容;最後對算法技術進行了總結。每章最後給出了一些練習題和編程練習,幫助讀者複習鞏固所學的知識。本書適合作為高等院校計算機相關專業數據結構課程的教材和參考書,也適合對數據結構知識感興趣的讀者學習參考。
優惠價: 87 465
無庫存
C#碼農筆記:從第一行代碼到項目實戰(簡體書)
滿額折
出版日:2022/08/01 作者:周家安  出版社:清華大學出版社(大陸)  裝訂:平裝
本書將以基礎知識為主,但同時也希望能夠涉及到C#5和.net 4.5相關的技術和實用技巧。由於C#僅僅是.net平臺所支持的其中一種語言,因此除了語言自身的知識外,我們也應當以統一的視角去對待,即將C#的知識與.net框架的知識進行融合。本書主要以通俗易懂的語氣來向讀者介紹並展示C#語言的各種優勢和實用知識。同時,本書會為各個知識點配有簡單而豐富的例子,側重點是實戰。書中的例子既可作為演示相關知識所用,讀者也可以將其作為鞏固練習。本書內容包括:C#語言基礎,但不全講,因為微軟公司為我們提供了一套很豐富的語言規範文檔,本書會順帶告知讀者如何運用官方的教程來參考和學習;另外,本書與.net技術融合,從基礎的類型到數組、集合、泛型,再到類型轉換以及協變和逆變的運用、控制台應用程序、窗體應用程序、WPF、數據管理、文件處理、應用程序域管理、反射等技術也會一併講解。
優惠價: 87 668
無庫存
出版日:2022/07/31 作者:Annika Skoglund  出版社:Cambridge Univ Pr  裝訂:精裝
What is activism? The answer is, typically, that it is a form of opposition, often expressed on the streets. Skoglund and Böhm argue differently. They identify forms of 'insider activism' within corporations, state agencies and villages, showing how people seek to transform society by working within the system, rather than outright opposing it. Using extensive empirical data, Skoglund and Böhm analyze the transformation of climate activism in a rapidly changing political landscape, arguing that it is time to think beyond the tensions between activism and enterprise. They trace the everyday renewable energy actions of a growing 'epistemic community' of climate activists who are dispersed across organizational boundaries and domains. This book is testament to a new way of understanding activism as an organizational force that brings about the transition towards sustainability across business and society and is of interest to social science scholars of business, renewable energy and susta
若需訂購本書,請電洽客服 02-25006600[分機130、131]。
從零開始學C++(簡體書)
滿額折
出版日:2022/07/29 作者:明日科技  出版社:化學工業出版社  裝訂:平裝
本書從零基礎讀者的角度出發,通過通俗易懂的語言、豐富的實例,循序漸進地讓讀者在實踐中學習C++編程知識,並提升自己的實際開發能力。全書共分為6篇20章,內容包括初識C++、第一個C++程序、數據類型、運算符與表達式、條件判斷語句、循環語句、函數、數組、指針與引用、構造數據類型、面向對象編程、類和對象、繼承與派生、模板、STL標準模板庫、文件操作、RTTI與異常處理、網絡通信、圖書管理系統、網絡五子棋等。書中知識點講解細緻,側重介紹每個知識點的使用場景,涉及的代碼給出了詳細的注釋,可以使讀者輕鬆領會C++程序開發的精髓,快速提高開發技能。同時,本書配套了大量教學視頻,掃碼即可觀看,還提供相關程序的源文件,方便讀者實踐。本書適合C++初學者、軟件開發入門者自學使用,也可用作高等院校相關專業的教材及參考書。
優惠價: 87 517
無庫存
零基礎學C++程序設計(簡體書)
滿額折
出版日:2022/07/29 作者:雍俊海  出版社:清華大學出版社(大陸)  裝訂:平裝
本書是《C++程序設計從入門到精通》(雍俊海編著,ISBN:978-7-302-59237-2)的簡版,講解C++程序設計知識及其編程方法,包括結構化程序設計、面向對象程序設計、異常處理、模板與標準模板庫、標準輸入輸出與文件處理、編程規範和程序測試等內容。本書的章節編排與內容以人們學習與認知過程為基礎,緊扣 標準,與公司的實際需求相匹配;內容力求簡潔,每章都附有習題。本書採用特殊字體突出中心詞,有助於讀者迅速瞭解與掌握C++程序設計的知識和方法,並應用到實踐中。 本書內容豐富易學,而且提供大量例程和例句,既可以作為計算機專業和非計算機專業的C++程序設計和面向對象程序設計等課程的基礎教材,也可以作為需要使用C++語言的工程人員和科技工作者的自學參考書。
優惠價: 87 308
無庫存
Cluster Analysis and Applications
90 折
出版日:2022/07/24 作者:Rudolf Scitovski  出版社:Springer Nature  裝訂:平裝
1 Introduction2 Representatives2.1 Representative of data sets with one feature2.1.1 Best LS-representativ2.1.2 Best 1-representative2.1.3 Best representative of weighted data2.1.4 Bregman divergences2.2 Representative of data sets with two features2.2.1 Fermat-Torricelli-Weber problem2.2.2 Centroid of a set in the plane2.2.3 Median of a set in the plane 2.2.4 Geometric median of a set in the plane2.3 Representative of data sets with several features2.3.1 Representative of weighted data2.4 Representative of periodic data2.4.1 Representative of data on the unit circle2.4.2 Burn diagram3 Data clustering3.1 Optimal k-partition3.1.1 Minimal distance principle and Voronoi diagram3.1.2 k-means algorithm3.2 Clustering data with one feature3.2.1 Application of the LS-distance-like function3.2.2 The dual problem3.2.3 Least absolute deviation principle3.2.4 Clustering weighted data3.3 Clustering data with two or several features3.3.1 Least squares principle3.3.2 The dual problem3.3.3 Least absol
優惠價: 9 3131
無庫存
How to Be a Knight (Lego)
滿額折
出版日:2022/07/05 作者:Matt Huntley  出版社:GOLDEN BOOKS PUB CO INC  裝訂:精裝
A brand-new LEGO(R) Little Golden Book about using courage and creativity to be a knight Milo wants to be a knight like his big, bold brothers, but he's not sure he's brave enough. Will a dragon in distress help him find the courage and creativity to make his dreams come true? Find out in this sweet and silly storybook, the first in a line of LEGO(R) Little Golden Books. The combination of two classics-LEGO(R) Minifigures and Little Golden Books-makes this the perfect book for kids ages 2-5 or collectors of all ages LEGO, the LEGO logo, the Brick and Knob configurations, and the Minifigure are trademarks of the LEGO Group. (c)2021 The LEGO Group.Manufactured by AMEET Sp. z o.o. under license from the LEGO Group.
優惠價: 1 228
無庫存
C語言程序設計(簡體書)
滿額折
出版日:2022/07/01 作者:張曙光; 劉英; 周雅潔; 胡岸琪  出版社:人民郵電出版社  裝訂:平裝
本書是“C語言程序設計”的入門教材,其目的是培養學生基本的程序設計能力。全書遵循ANSI/ISO C的標準,由具有多年教學經驗和實際項目開發經驗的教師用通俗易懂的語言編寫而成。書中系統地介紹了C語言的基本知識,內容主要包括:計算機的基本組成、數據類型、運算符和表達式、結構化程序的3種基本結構、函數、數組、指針、結構體及共用體、文件操作等。 本書以程序設計為中心,內容安排循序漸進。每章首先介紹基本的語法知識,使學生掌握初步的語法知識後能夠編寫簡單的程序,然後再通過一些經典的算法和豐富的例題鞏固所學知識點並理解其中的難點,達到掌握基本的程序設計方法和提高編程能力的目的。 本書除配有電子教案和代碼外,還提供了一個作者開發的可視化輔助學習工具―― “C語言程序執行流程可視化學習系統”(該工具在程序調試時可以定位到運算符級),以幫助學生理解C語言知識,學習處理程序錯誤的方法。 本書可作為高等院校C語言程序設計課程的教材和參考用書,也可作為社會各類計算機應用人員和參加計算機等級考試人員的C語言程序設計自學用書。
優惠價: 87 219
無庫存
從零開始學C語言(簡體書)
滿額折
出版日:2022/07/01 作者:明日科技  出版社:化學工業出版社  裝訂:平裝
本書從零基礎讀者的角度出發,通過通俗易懂的語言、豐富多彩的實例,循序漸進地讓讀者在實踐中學習C語言編程知識,並提升自己的實際開發能力。全書共分為4篇22章,內容包括初識C語言、算法、C語言的開發環境、C語言程序結構、數據類型、常用數據輸出輸入函數、運算符與表達式、條件判斷語句、循環控制語句、數組、字符串處理函數、自定義函數、指針、結構體與鏈表、共用體與枚舉類型、位運算、預處理、文件操作、內存管理、網絡套接字編程、貪吃蛇大作戰、繽紛水果消消樂等。書中知識點講解細緻,側重介紹每個知識點的使用場景,涉及的代碼給出了詳細的注釋,可以使讀者輕鬆領會C語言程序開發的精髓,快速提高開發技能。同時,本書配套了大量教學視頻,掃碼即可觀看,還提供所有程序源文件,方便讀者實踐。本書適合C語言初學者、軟件開發入門者自學使用,也可用作高等院校相關專業的教材及參考書。
優惠價: 87 517
無庫存
Linux C/C++服務器開發實踐(簡體書)
滿額折
出版日:2022/07/01 作者:朱文偉; 李建英  出版社:清華大學出版社(大陸)  裝訂:平裝
本書較為全面地介紹了基於Linux網絡編程的基礎知識和編程技術,章節安排貼近企業項目需求,對基於Linux C/C++語言的多線程編程和Linux操作系統支持的網絡庫函數等進行講解,由易到難,逐層遞進。 本書共分12章,內容包括網絡概述、網絡基礎概念、套接字、TCP編程、UDP編程、原始套接字編程、網絡I/O模型、服務器設計,以及四大綜合實踐項目(HTTP服務器、FTP服務器、並發聊天服務器與C/S和P2P聯合架構的並發遊戲服務器),通過項目練習幫助讀者鞏固所學的編程技術。 本書適合具有Linux C/C++編程基礎、需要掌握Linux服務器編程的開發人員閱讀,也適合高等院校和培訓學校計算機軟件開發相關專業的師生作為參考用書。
優惠價: 87 517
無庫存
終極刺客:C羅傳(簡體書)
滿額折
出版日:2022/07/01 作者:馮逸明  出版社:台海出版社  裝訂:平裝
2002年8月13日,當17歲的C羅代表葡萄牙體育初次踏上綠茵場那一刻起,也許沒有人能想到,20年之後,他將擁有怎樣一個波瀾壯闊的職業生涯…… 2022年,20年彈指一揮間。C羅從葡萄牙體育啟程,在曼聯成長,到皇馬綻放,赴尤文開疆,然後再回曼聯,回到夢開始的地方,一切還是當年的模樣 。
優惠價: 87 308
無庫存
出版日:2022/06/30 作者:Paolo Squatriti  出版社:Cambridge Univ Pr  裝訂:精裝
Why did weeds matter in the Carolingian empire? What was their special significance for writers in eighth- and ninth-century Europe and how was this connected with the growth of real weeds? In early medieval Europe, unwanted plants that persistently appeared among crops created extra work, reduced productivity, and challenged theologians who believed God had made all vegetation good. For the first time, in this book weeds emerge as protagonists in early medieval European history, driving human farming strategies and coloring people's imagination. Early medieval Europeans' effort to create agroecosystems that satisfied their needs and cosmologies that confirmed Christian accounts of vegetable creation both had to come to terms with unruly plants. Using diverse kinds of texts, fresh archaeobotanical data, and even mosaics, this interdisciplinary study reveals how early medieval Europeans interacted with their environments.
若需訂購本書,請電洽客服 02-25006600[分機130、131]。
Concepts of Programming Languages, Global Edition
滿額折
出版日:2022/06/24 作者:Robert Sebesta  出版社:Pearson Education Limited  裝訂:平裝
Hallmark FeaturesIntroduces the fundamental constructs of contemporary programming languages•Critical evaluation of existing and future programming languages gives students the necessary tools for evaluating on their own.•An in-depth discussion of programming language structures, presenting a formal method of describing syntax, and introducing approaches to lexical and syntax analysis prepare students for the study of compiler design.•Coverage of advanced object-oriented topics and languages is integrated throughout.Addresses the most up-to-date information in this field•New - New material on Swift, a contemporary programming language, is now part of several chapters.•New - Section on Delphi now included in Chapter 2.•New - Section on optional types is included in Chapter 6.•New and Updated - Content describing iterations in Python are part of Chapter 8.•Revised - To ensure the material remains relevant to students, sections on outdated languages (specifically Lua and Objective-C) have
優惠價: 1 1500
無庫存
Shakespeare's Double Plays:Dramatic Economy on the Early Modern Stage
90 折
出版日:2022/06/23 作者:Brett Gamboa  出版社:Cambridge Univ Pr  裝訂:平裝
In the first comprehensive study of how Shakespeare designed his plays to suit his playing company, Brett Gamboa demonstrates how Shakespeare turned his limitations to creative advantage, and how doubling roles suited his unique sense of the dramatic. By attending closely to their dramaturgical structures, Gamboa analyses casting requirements for the plays Shakespeare wrote for the company between 1594 and 1610, and describes how using the embedded casting patterns can enhance their thematic and theatrical potential. Drawing on historical records, dramatic theory, and contemporary performance this innovative work questions received ideas about early modern staging and provides scholars and contemporary theatre practitioners with a valuable guide to understanding how casting can help facilitate audience engagement. Supported by an appendix of speculative doubling charts for plays, illustrations, and online resources, this is a major contribution to the understanding of Shakespeare's dra
優惠價: 9 1296
無庫存
Exploring Interfaces
90 折
出版日:2022/06/09 作者:Mónica Cabrera  出版社:Cambridge Univ Pr  裝訂:平裝
Models of theoretical linguistics now emphasize the meeting points, or interfaces, between different aspects of our language capacity. Syntactic operations include structure-building, checking long-distance relationships between units, and connecting alternative word orders. This volume presents a collection of original studies that explore the mapping between these operations and other language-related areas such as word meanings, discourse contexts, the construction of meaning for larger units, and the alternative expressions of word order. It differs from previous traditional research on interfaces by bringing together studies and analyses from a range of languages, using monolingual varieties that include second language phenomena. Case studies of different types of interfaces, as well as studies based on lesser known sets of linguistic data, provide important examples that propose a new view of the connections between syntactic processes and other areas of grammar.
優惠價: 9 1458
無庫存
C程序設計(第五版)學習輔導(簡體書)
滿額折
出版日:2022/06/01 作者:譚浩強  出版社:清華大學出版社(大陸)  裝訂:平裝
本書是與譚浩強所著的《C程序設計(第五版)》(清華大學出版社出版)配合使用的一本重要的參考用書。本書包括4個部分,第1部分是《C程序設計(第五版)》一書的習題和參考解答,包括該書各章的全部習題,對全部編程習題都給出了參考解答,共計132個程序;第2部分是深入學習C程序設計,包括預處理指令、位運算、常見錯誤分析和C程序案例;第3部分是上機指南,詳細介紹Visual C6.0和Visual Studio2010集成環境下編輯、編譯、調試和運行程序的方法;第4部分是上機實踐指導,包括程序的調試與測試、實驗的目的與要求,並提供了12個實驗。本書內容豐富,實用性強,可以有效地幫助讀者學好C程序設計並提高應用水平,不僅可以作為《C程序設計(第五版)》的配套教材,而且可以作為其他版本的C語言教材的參考書;既適合高等學校師生使用,也可供自學者參考。 譚浩強教授,我國著名計算機教育專家。1958年畢業於清華大學自動控制系。青年時期曾擔任清華大學學生會主席、北京市學聯副主席、北京市人民代表、全國文教戰線先進分子。他是我國計算機普及和高校計算機基礎教育的開拓者之一。現任全國高等院校計算機基礎教育研究會榮譽會長、教育部全國計算機應用技術證書考試委員會主任委員,享受國務院政府特殊津貼。曾獲國家科技進步獎、優秀教學成果獎,被原國家科學技術委員會和中國科學技術協會表彰為「全國先進科普工作者」,被北京市人民政府評為「北京市有突出貢獻的專家」。 譚浩強教授創造了三個世界紀錄:(1)30年來他(以及和他人合作)共編著出版了160多本計算機著作,主編了400多本計算機書籍,是出版科技著作數量最多的人。(2)他編著和主編的書發行量超過6000萬冊,是讀者最多的科技作家。我國平均每21人、知識分子每1.2人就擁有一本譚浩強的書。(3)他和他人合著的《BASIC語言》發行1250多萬冊,他所著的《C程序設計》發行1400多萬冊,雙雙創造科技書籍發行量的最高紀錄。他曾在中央電視台主講了BASIC,FORTRAN,COBOL,Pascal,QBASIC,C,Visual Basic七種計算機語言,觀眾超過
優惠價: 87 260
無庫存
C語言程序設計教程(微課版)(簡體書)
滿額折
出版日:2022/06/01 作者:張丹陽; 柴君  出版社:人民郵電出版社  裝訂:平裝
本書以C語言作為語言載體,講述了程式設計的基礎知識、基本演算法和程式設計思想,在語法知識學習的基礎上,重點放到了程式設計能力的培養上,其目的在於使學生學習C語言程式設計之後,能結合實際獲得基本的程式設計能力。全書共組織為12個專案,專案1介紹C語言的特點、語法成分、程式結構等;專案2介紹常見的演算法表達形式;專案3、4、5、6介紹C語言的基本語法和基本程式結構;專案7、9、11、12介紹C語言是如
優惠價: 87 208
無庫存
C++20高級編程(簡體書)
滿額折
出版日:2022/06/01 作者:羅能  出版社:機械工業出版社  裝訂:平裝
本書主要講解C++庫、框架開發中的高級編程技術,以及最新的C++20標準特性。全書共10章,分別為:類型與對象、編譯時多態、概念約束、元編程介紹、模板元編程、constexpr元編程、Ranges標準庫、協程、模塊、綜合運用。其中C++20的四大特性獨立成章,一些小的特性則貫穿於全書,其他章節則探討了面向對象、元編程、函數式編程、併發編程等話題。本書針對以上新特性準備了豐富的代碼樣例,相信通過這些代碼讀者很容易掌握這些新特性。作為一本講解C++高級編程的書,本書還探討了很多元編程話題,這是作為庫開發必不可少的技能,它們也將隨著C++的演進而不斷演進,大大提升庫開發者的編程體驗,尤其是近年來C++的標準提案經歷了從模板元編程向constexpr元編程轉換的過程。
優惠價: 87 569
無庫存
C最強入門邁向頂尖高手之路王者歸來(電子書)
出版日:2022/06/01 作者:洪錦魁  出版社:深智數位  裝訂:電子書
C最強入門邁向頂尖高手之路王者歸來
優惠價: 8 496
The Mamluk Sultanate:A History
90 折
出版日:2022/05/31 作者:Carl F. Petry  出版社:Cambridge Univ Pr  裝訂:平裝
The Mamluk Sultanate ruled Egypt, Syria and the Arabian hinterland along the Red Sea. Lasting from the deposition of the Ayyubid dynasty (c. 1250) to the Ottoman conquest of Egypt in 1517, this regime of slave-soldiers incorporated many of the political structures and cultural traditions of its Fatimid and Ayyubid predecessors. Yet its system of governance and centralisation of authority represented radical departures from the hierarchies of power that predated it. Providing a rich and comprehensive survey of events from the Sultanate's founding to the Ottoman occupation, this interdisciplinary book explores the Sultanate's identity and heritage after the Mongol conquests, the expedience of conspiratorial politics, and the close symbiosis of the military elite and civil bureaucracy. Carl F. Petry also considers the statecraft, foreign policy, economy and cultural legacy of the Sultanate, and its interaction with polities throughout the central Islamic world and beyond. In doing so, Pet
優惠價: 9 1296
無庫存
出版日:2022/05/31 作者:Carl F. Petry  出版社:Cambridge Univ Pr  裝訂:精裝
The Mamluk Sultanate ruled Egypt, Syria and the Arabian hinterland along the Red Sea. Lasting from the deposition of the Ayyubid dynasty (c. 1250) to the Ottoman conquest of Egypt in 1517, this regime of slave-soldiers incorporated many of the political structures and cultural traditions of its Fatimid and Ayyubid predecessors. Yet its system of governance and centralisation of authority represented radical departures from the hierarchies of power that predated it. Providing a rich and comprehensive survey of events from the Sultanate's founding to the Ottoman occupation, this interdisciplinary book explores the Sultanate's identity and heritage after the Mongol conquests, the expedience of conspiratorial politics, and the close symbiosis of the military elite and civil bureaucracy. Carl F. Petry also considers the statecraft, foreign policy, economy and cultural legacy of the Sultanate, and its interaction with polities throughout the central Islamic world and beyond. In doing so, Pet
若需訂購本書,請電洽客服 02-25006600[分機130、131]。
C How to Program: With Case Studies in Applications and Systems Programming, Global Edition
滿額折
出版日:2022/05/27 作者:Paul Deitel; Harvey Deitel  出版社:Pearson Education Limited  裝訂:平裝
Thistitle is a Pearson Global Edition. The editorial team at Pearson has workedclosely with educators around the world to include content which is especiallyrelevant to an international and diverse audience.For courses in computerprogramming.A user-friendly,code-intensive introduction to C programming with case studies introducing applicationsand system programming.C How to Program is a comprehensive introduction toprogramming in C. Like other texts of the Deitels How to Program series,the books modular presentation serves as a detailed, beginner source ofinformation for college students looking to embark on a career in coding, orinstructors and software-development professionals seeking to learn how toprogram with C. The signature Deitel live-code approach presents concepts inthe context of 142 fully working programs rather than incomplete snips of code.This gives students a chance to run each program as they study it and see howtheir learning applies to real-world programming scenari
優惠價: 1 3299
無庫存
Ada Twist and the Disappearing Dogs: (The Questioneers Book #5)
滿額折
出版日:2022/05/17 作者:Andrea Beaty  出版社:Amulet Books  裝訂:精裝
A new addition to the bestselling Questioneers chapter book series following Ada Twist, the star of the Netflix TV show!Blue River Creek has a problem: There's a pet thief on the loose! Or at least, Sofia and Iggy are convinced that there is, once their pets go missing. But as a scientist, Ada knows it's important not to jump to conclusions and to follow the facts. How will they find out what really happened to the town's pets? By using the Scientific Method of course! Through making a hypothesis, collecting data, and experimentation, the Questioneers must find the missing animals before even more pets disappear!
優惠價: 79 391
無庫存
寫給中小學生的C++入門(全2冊)(簡體書)
滿額折
出版日:2022/05/05 作者:陳猛  出版社:山東大學出版社  裝訂:平裝
本書使用C++語言,通過淺顯易懂的例子,由淺入深的向學生講解編程學習的基本語法知識。此書適合作為中小學生編程學習的教材,也適合有一定基礎的老師作為教學參考書籍。內容分為二十二個章節,涵蓋C++基礎語法的所有內容及簡單算法。
優惠價: 87 465
無庫存
C語言程序設計實驗指導(簡體書)
滿額折
出版日:2022/05/01 作者:郭永豔; 韓姍姍; 秦娥  出版社:清華大學出版社(大陸)  裝訂:平裝
全書共分為9章。第1章是C語言編程概述;第2章是編程基礎知識;第3~9章是具體的C語言編程知識,包括選擇結構、循環結構、數組、函數、指針、結構體和文件。其中,第2~9章的章節均按照知識梳理、實驗案例、實踐項目、實踐項目運行結果(或參考源代碼)及本章常見錯誤小結的順序進行編寫,符合認知規律。 本書內容豐富,既可以作為高等學校“C語言程序設計”課程的實驗教材,也可以供自學者參考。
優惠價: 87 198
無庫存
Visual C++實訓(第4版)(簡體書)
滿額折
出版日:2022/05/01 作者:鄭阿奇; 丁有和  出版社:清華大學出版社(大陸)  裝訂:平裝
《Visual C++實訓(第4版)》以Microsoft Visual Studio 2010(Visual C++)中文專業版為平臺,內容包括實驗實訓和綜合應用實習兩大部分。實驗實訓包括: Visual C++開發環境,C++程序基礎,Windows編程基礎,常用控件,功能區和狀態欄,框架窗口、文檔和視圖,圖形和文本,數據庫編程。綜合應用實習是設計一個學生信息管理的較完整的程序系統,在前三版的基礎上進行了全面更新,包括用Visual Studio Installer進行程序部署。實驗還增加了“功能區”和一些**MFC控件內容,擴展了“簡單計算器”實訓,修改了“文字”內容。本書與《Visual C++教程》(第4版)配套,又有延伸和拓展,並自成體系,既可配套使用,也可單獨使用。本書既可作為大學本科、高職高專等各類學校的實訓教材,也可作為Visual C++培訓和用戶的自學參考書。
優惠價: 87 260
無庫存
青少年編程魔法課堂:C++圖形化創意編程(簡體書)
滿額折
出版日:2022/05/01 作者:張新華; 葛陽; 伍婉秋  出版社:人民郵電出版社  裝訂:平裝
這是一本專為沒有編程基礎的讀者編寫的C++入門書,即使是小學生也可以輕鬆閱讀本書。與多數C++入門書籍不同的是,本書基於作者改進的Dev-C++開發工具。該工具結合了遊戲開發過程中經常使用的三維動畫引擎(OpenGL)等技術,借鑒了繪圖式編程語言(LOGO)的特點,使入門者只需通過極簡單的幾行代碼,就能實現複雜而有趣的三維圖形和動畫的繪製。全書包含十幾個短小且趣味性強的程序,通過遊戲化編程的方式,激發孩子們對計算機編程的興趣,使他們能夠輕鬆進入圖形化C++的奇妙世界。
優惠價: 87 312
無庫存
C語言程序設計(簡體書)
滿額折
出版日:2022/05/01 作者:(印)Yashavan P.Kanetkar  出版社:人民郵電出版社  裝訂:平裝
學習任何程序設計語言的好方法都是創建良好的程序,C 語言也不例外。一旦決定編寫程序我們就會發現,總是有至少兩種方法可以實現。那麼,如何才能找到好的方法來實現程序?本書就能幫助讀者解決此類問題。本書是一本C 語言程序設計的教材。多年來,本書被很多工程和科學研究所及院校指定為學習教材。本書這一版本(第17 版)除了講解C 語言中基本的函數、指針、控制指令、數據類型、數組、字符串、輸入輸出、位操作等內容外,還增加了C 語言程序設計的各個主題的實例和麵試問題,以便讀者儘快熟悉C 語言的實際應用。書中的實例和習題已經過作者認真挑選,集中體現了各個知識要點的具體用法。本書提供可供讀者下載的程序源代碼,並配套出版《C 語言程序設計 習題解答》。本書結構合理,內容深入淺出,既適合用作高等學校本科和專科學生學習C 語言程序設計的教材,也適合用作零基礎的程序設計初學者的自學用書。
優惠價: 87 573
無庫存
C語言程序設計習題解答(簡體書)
滿額折
出版日:2022/05/01 作者:(印)Yashavan P.Kanetkar  出版社:人民郵電出版社  裝訂:平裝
多年來,教材《C 語言程序設計》被很多工程和科學研究所及院校指定為學習教材。本書是《C 語言程序設計》的配套習題集,旨在讓讀者學習基礎知識的同時,交叉地檢查所做習題的正確性,從而增強讀者的信心,改善整個C 語言學習的過程。本書的習題已經過作者認真挑選,集中體現了各個知識要點的具體用法。本書習題豐富,結構合理,內容深入淺出,建議搭配《C 語言程序設計》使用,非常適合用作高等學校本科生和專科生學習C 語言程序設計的練習手冊,也適合用作零基礎的程序設計初學者的自學用書。
優惠價: 87 365
無庫存
Coalitions of the Weak
90 折
出版日:2022/04/30 作者:Victor C. Shih  出版社:Cambridge Univ Pr  裝訂:平裝
For the first time since Mao, a Chinese leader may serve a life-time tenure. Xi Jinping may well replicate Mao's successful strategy to maintain power. If so, what are the institutional and policy implications for China? Victor C. Shih investigates how leaders of one-party autocracies seek to dominate the elite and achieve true dictatorship, governing without fear of internal challenge or resistance to major policy changes. Through an in-depth look of late-Mao politics informed by thousands of historical documents and data analysis, Coalitions of the Weak uncovers Mao's strategy of replacing seasoned, densely networked senior officials with either politically tainted or inexperienced officials. The book further documents how a decentralized version of this strategy led to two generations of weak leadership in the Chinese Communist Party, creating the conditions for Xi's rapid consolidation of power after 2012.
優惠價: 9 1579
無庫存
出版日:2022/04/30 作者:Victor C. Shih  出版社:Cambridge Univ Pr  裝訂:精裝
For the first time since Mao, a Chinese leader may serve a life-time tenure. Xi Jinping may well replicate Mao's successful strategy to maintain power. If so, what are the institutional and policy implications for China? Victor C. Shih investigates how leaders of one-party autocracies seek to dominate the elite and achieve true dictatorship, governing without fear of internal challenge or resistance to major policy changes. Through an in-depth look of late-Mao politics informed by thousands of historical documents and data analysis, Coalitions of the Weak uncovers Mao's strategy of replacing seasoned, densely networked senior officials with either politically tainted or inexperienced officials. The book further documents how a decentralized version of this strategy led to two generations of weak leadership in the Chinese Communist Party, creating the conditions for Xi's rapid consolidation of power after 2012.
若需訂購本書,請電洽客服 02-25006600[分機130、131]。
Business Adaptation to Climate Change
90 折
出版日:2022/04/30 作者:Jorge E. Rivera  出版社:Cambridge Univ Pr  裝訂:平裝
This book seeks to advance the understanding of how businesses may adapt to climate change trends. Specifically, it focuses on two general research questions: Firstly, how do businesses adapt to chronic slow-onset nature adversity conditions linked to climate change? Secondly, how do firms adapt to weather-related natural disasters exacerbated by climate change? In the first part of the book, the authors develop a conceptual framework in response to these questions. In the second part, they test this framework using multiple empirical studies involving large data analyses of: (a) the U.S. western ski industry adaptation to warmer temperatures, and (b) the effect of natural disasters on the foreign investment of multinational corporations around the world. This book will interest management and public policy students and scholars researching successful business climate change adaptation strategies, as well as business and non-profit organization leaders and policy makers involved in dev
優惠價: 9 1296
無庫存
Principles of Statistical Analysis:Learning from Randomized Experiments
90 折
出版日:2022/04/30 作者:Ery Arias-Castro  出版社:Cambridge Univ Pr  裝訂:平裝
This compact course is written for the mathematically literate reader who wants to learn to analyze data in a principled fashion. The language of mathematics enables clear exposition that can go quite deep, quite quickly, and naturally supports an axiomatic and inductive approach to data analysis. Starting with a good grounding in probability, the reader moves to statistical inference via topics of great practical importance – simulation and sampling, as well as experimental design and data collection – that are typically displaced from introductory accounts. The core of the book then covers both standard methods and such advanced topics as multiple testing, meta-analysis, and causal inference.
優惠價: 9 1674
無庫存
出版日:2022/04/30 作者:Ery Arias-Castro  出版社:Cambridge Univ Pr  裝訂:精裝
This compact course is written for the mathematically literate reader who wants to learn to analyze data in a principled fashion. The language of mathematics enables clear exposition that can go quite deep, quite quickly, and naturally supports an axiomatic and inductive approach to data analysis. Starting with a good grounding in probability, the reader moves to statistical inference via topics of great practical importance – simulation and sampling, as well as experimental design and data collection – that are typically displaced from introductory accounts. The core of the book then covers both standard methods and such advanced topics as multiple testing, meta-analysis, and causal inference.
若需訂購本書,請電洽客服 02-25006600[分機130、131]。
C#代碼整潔之道:代碼重構與性能提升(簡體書)
滿額折
出版日:2022/04/22 作者:(英)詹森‧奧爾斯  出版社:機械工業出版社  裝訂:平裝
本書介紹如何使用各種工具、模式和方法將可讀性、可維護性與可擴展性均不盡人意的代碼重構為整潔的代碼。首先介紹C#的編碼標準和原則,然後詳細討論代碼評審的過程並說明其重要性。接著介紹類、對象與數據結構以及函數式編程的基礎知識。之後介紹異常處理、單元測試、端到端系統測試、線程與併發、API的設計與開發、API密鑰與API安全、處理切面關注點等C#相關知識。結尾介紹一系列工具來提升代碼質量,並介紹重構C#代碼的方法。
優惠價: 87 621
無庫存
出版日:2022/04/20 作者:彭建文  出版社:博碩文化  裝訂:平裝
以學習者視角出發所撰寫的完全自學教材 ♔Visual Studio 2017/2019/2022以上版本適用 ♔百分百可以完全自學的C#教材 ♔按照「認識」、「學會」、「應用」、「求職」四階段編撰之C#學習教材 ♔精心設計具生活經驗、實用化的學習範例 ♔引導學習歷程:實戰範例→原理講解→參考資料→重點整理→分析與討論 ♔所有範例、練習、習題皆為實戰題目,可以直接應用於職場、工作與專題製作 【內容簡介】 作者將C#程式設計的實務知識分為「基礎篇」、「進階篇」、「深入篇」等三個層級,上冊內容精心規劃了十個章節及六個附錄,主要教導Windows Form應用程式、判斷與選擇、重複敘述、變數範圍、常用類別、陣列、常用控制項等基礎概念,以及自訂函式、列舉與結構、檔案處理等進階概念。除了可讓初學者快速入門C#程式設計,再搭配本書的精選範例以及清楚詳盡的步驟說明,將可逐步讓你邁向C#程式設計專業之路。 【本書特色】 ♔一本書=自學+教學+參考資料(省去上網找不到資料的困難與大量時間) ♔疊加式之內容設計,可依據個人需求與時間多寡來學習不同難度的範例 ♔每個範例皆為業界實戰經驗所簡化之學習範例 ♔全書以範例導引C#學習歷程 ♔範例程式講解詳細,非常適合自學與課後自我練習 【讀完本書,您將學會】 ♔認識與了解程式設計的邏輯思維 ♔撰寫簡單C#程式 ♔能使用C#自行完成課業習題與日常生活小程式 ♔獨立完成專題 ♔具備求職之C#基本能力
  • 16155
    404
  • 1
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 404

暢銷榜

客服中心

收藏

會員專區