HOME > 상세정보

상세정보

Algorithms in C++ 3rd ed

Algorithms in C++ 3rd ed (30회 대출)

자료유형
단행본
개인저자
Sedgewick, Robert , 1946-. Sedgewick, Robert 1946-
서명 / 저자사항
Algorithms in C++ / Robert Sedgewick ; [with C++ consulting by Christopher J. VanWyk].
판사항
3rd ed.
발행사항
Reading, Mass. :   Addison-Wesley ,   c1998-.  
형태사항
<v. 1-2; in 5> : ill. ; 24 cm.
ISBN
0201314525 (v. 1) 0201350882
일반주기
First ed. issued as: Algorithms in C. c1990.  
내용주기
[1], pts. 1-4. Fundamentals, data structures, sorting, searching. [2], pt. 5. Graph algorithms.
서지주기
Includes bibliographical references and indexes.
일반주제명
C++ (Computer program language) Computer algorithms.
000 01218camuu2200325 a 4500
001 000000671126
005 20021021165851
008 981014m19989999maua b 001 0 eng c
010 ▼a 98071799
020 ▼a 0201314525 (v. 1)
020 ▼a 0201350882
040 ▼a ULA ▼c ULA ▼d IQU ▼d OCL ▼d 211009
041 0 ▼a eng
049 ▼l 111163534 ▼v 1 ▼l 121065960 ▼v 1 ▼f 과학 ▼l 121065961 ▼v 2 ▼f 과학
050 4 ▼a QA76.73.C153 ▼b S38 1998
082 0 4 ▼a 005.133 ▼2 21
090 ▼a 005.133 ▼b S448ac3
100 1 ▼a Sedgewick, Robert , ▼d 1946-.
245 1 0 ▼a Algorithms in C++ / ▼c Robert Sedgewick ; [with C++ consulting by Christopher J. VanWyk].
250 ▼a 3rd ed.
260 ▼a Reading, Mass. : ▼b Addison-Wesley , ▼c c1998-.
300 ▼a <v. 1-2; in 5> : ▼b ill. ; ▼c 24 cm.
500 ▼a First ed. issued as: Algorithms in C. c1990.
504 ▼a Includes bibliographical references and indexes.
505 1 ▼a [1], pts. 1-4. Fundamentals, data structures, sorting, searching. [2], pt. 5. Graph algorithms.
650 0 ▼a C++ (Computer program language)
650 0 ▼a Computer algorithms.
700 1 ▼a Sedgewick, Robert ▼d 1946- ▼t Algorithms in C.
950 1 ▼c (v.1. US$ 44.95)

No. 소장처 청구기호 등록번호 도서상태 반납예정일 예약 서비스
No. 1 소장처 중앙도서관/서고6층/ 청구기호 005.133 S448ac3 1 등록번호 111163534 (6회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M
No. 2 소장처 과학도서관/Sci-Info(2층서고)/ 청구기호 005.133 S448ac3 1 등록번호 121065960 (16회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M
No. 3 소장처 과학도서관/Sci-Info(2층서고)/ 청구기호 005.133 S448ac3 2 등록번호 121065961 (8회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M
No. 소장처 청구기호 등록번호 도서상태 반납예정일 예약 서비스
No. 1 소장처 중앙도서관/서고6층/ 청구기호 005.133 S448ac3 1 등록번호 111163534 (6회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M
No. 소장처 청구기호 등록번호 도서상태 반납예정일 예약 서비스
No. 1 소장처 과학도서관/Sci-Info(2층서고)/ 청구기호 005.133 S448ac3 1 등록번호 121065960 (16회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M
No. 2 소장처 과학도서관/Sci-Info(2층서고)/ 청구기호 005.133 S448ac3 2 등록번호 121065961 (8회 대출) 도서상태 대출가능 반납예정일 예약 서비스 B M

컨텐츠정보

책소개

Defines and explores the implementation and figures of the algorithms required for various applications, offering commentary, descriptions, and exercises for developers, researchers, and students.

"This is an eminently readable book which an ordinary programmer, unskilled in mathematical analysis and wary of theoretical algorithms, ought to be able to pick up and get a lot out of.."
- Steve Summit, author of
C Programming FAQs

Sedgewick has a real gift for explaining concepts in a way that makes them easy to understand. The use of real programs in page-size (or less) chunks that can be easily understood is a real plus. The figures, programs, and tables are a significant contribution to the learning experience of the reader; they make this book distinctive.
- William A. Ward, University of South Alabama

Robert Sedgewick has thoroughly rewritten and substantially expanded his popular work to provide current and comprehensive coverage of important algorithms and data structures. Many new algorithms are presented, and the explanations of each algorithm are much more detailed than in previous editions. A new text design and detailed, innovative figures, with accompanying commentary, greatly enhance the presentation. The third edition retains the successful blend of theory and practice that has made Sedgewick's work an invaluable resource for more than 250,000 programmers!

This particular book, Parts 1-4, represents the essential first half of Sedgewick's complete work. It provides extensive coverage of fundamental data structures and algorithms for sorting, searching, and related applications. The algorithms and data structures are expressed in concise implementations in C, so that you can both appreciate their fundamental properties and test them on real applications. Of course, the substance of the book applies to programming in any language.

Highlights
  • Expanded coverage of arrays, linked lists, strings, trees, and other basic data structures
  • Greater emphasis on abstract data types (ADTs) than in previous editions
  • Over 100 algorithms for sorting, selection, priority queue ADT implementations, and symbol table ADT (searching) implementations
  • New implementations of binomial queues, multiway radix sorting, Batcher's sorting networks, randomized BSTs, splay trees, skip lists, multiway tries, and much more
  • Increased quantitative information about the algorithms, including extensive empirical studies and basic analytic studies, giving you a basis for comparing them
  • Over 1000 new exercises to help you learn the properties of algorithms

Whether you are a student learning the algorithms for the first time or a professional interested in having up-to-date reference material, you will find a wealth of useful information in this book.




정보제공 : Aladin

저자소개

Robert Sedgewick(지은이)

<C++ 알고리즘>

정보제공 : Aladin

관련분야 신착자료

Harvard Business Review (2025)