This is our Philippines store.

Looks like you're in United States. You need a Philippines address to shop on our Philippines store. Go to our United States store to continue.

Showing results for "marcin jamro"

  • Bestsellers
  • Highest Rated
  • Price: Low to High
  • Title: A to Z
  • Title: Z to A
  • Date: Newest to Oldest
  • Date: Oldest to Newest
Clear All

Showing 1 - 3 of 3 Results

Adult content is visible. 

C# Data Structures and Algorithms

Harness the power of C# to build a diverse range of efficient applications

2024

EN

Write sophisticated C\# code with this complete guide to using diverse data structures and algorithms, featuring ready-to-use code snippets, detailed explanations, and illustrationsKey FeaturesMaster lists, stacks, queues, dictionaries, sets, and trees, among other data structuresDelve into effective design and implementation techniques to meet your software requirementsVisualize data structures and algorithms through illustrations for a cleare...

PHP1,836.89

or Free with Kobo Plus

Windows Application Development Cookbook

Discover over 125 solution-based recipes to help you build applications for smartphones, tablets, and desktops


2016

EN

Discover over 125 solution-based recipes to help you build applications for smartphones, tablets, and desktopsKey FeaturesLearn to build applications for Windows 10, the latest Windows versionDevelop your applications to be compatible with smartphones, tablets, and desktopsThis guide is packed with recipes covering major solutions to day-to-day problems faced by Windows programmersBook DescriptionNeed to ensure you can always...

PHP2,131.19

or Free with Kobo Plus

C# Data Structures and Algorithms

Explore the possibilities of C# for developing a variety of efficient applications

2018

EN

A complete guide on using data structures and algorithms to write sophisticated C\# codeKey FeaturesMaster array, set and map with trees and graphs, among other fundamental data structuresDelve into effective design and implementation techniques to meet your software requirementsExplore illustrations to present data structures and algorithms, as well as their analysis in a clear, visual mannerBook DescriptionData structures a...

PHP2,131.19

or Free with Kobo Plus

People who read this also enjoyed

PHP 7 Data Structures and Algorithms

Implement linked lists, stacks, and queues using PHP

2017

EN

Increase your productivity by implementing data structures Key FeaturesGain a complete understanding of data structures using a simple approachAnalyze algorithms and learn when you should apply each solutionExplore the true potential of functional data structuresBook DescriptionPHP has always been the the go-to language for web based application development, but there are materials and resources you can refer to to see how it...

PHP1,873.79

or Free with Kobo Plus

Practical C Programming

Why Does 2+2 = 5986?

1997

EN

There are lots of introductory C books, but this is the first one that has the no-nonsense, practical approach that has made Nutshell Handbooks® famous.C programming is more than just getting the syntax right. Style and debugging also play a tremendous part in creating programs that run well and are easy to maintain. This book teaches you not only the mechanics of programming, but also describes how to create programs that are easy to read, debug, and update.Practical rules are stressed. F...

PHP1,174.79

2017

EN

“As an author, editor, and publisher, I never paid much attention to the competition—except in a few cases. This is one of those cases. The UNIX System Administration Handbook is one of the few books we ever measured ourselves against.”—Tim O’Reilly, founder of O’Reilly Media“This edition is for those whose systems live in the cloud or in virtualized data centers; those whose administrative work largely takes the form of automation and con...

PHP3,514.49

Hadoop: The Definitive Guide

Storage and Analysis at Internet Scale


2015

EN

Get ready to unlock the power of your data. With the fourth edition of this comprehensive guide, youâ??ll learn how to build and maintain reliable, scalable, distributed systems with Apache Hadoop. This book is ideal for programmers looking to analyze datasets of any size, and for administrators who want to set up and run Hadoop clusters.Using Hadoop 2 exclusively, author Tom White presents new chapters on YARN and several Hadoop-related projects such as Parquet, Flume, Crunch, and...

PHP2,349.99


2013

EN

Computer Programming In C Language : Computer Programming In C Language teaches the generic Programming techniques using C programming language in an easy-to-follow style, without assuming previous experience in any other language. A variety of examples make learning these Concepts with C both fun and practical. This book is organized in such a manner that students and programmers with prior knowledge of Programming can find it easy, crisp and readable. Each Chapter contains many example p...

PHP349.17

or Free with Kobo Plus

2012

EN

The Second Edition of Using C in Software Design provides a creative approach to learning the C programming language by emphasizing software engineering. This inexpensive book, extensively tested in several academic and professional settings, provides a gentle, but complete, introduction to the C language in both the original edition published by Academic Press Professional and the current ebook edition. It provides enough information for a practicing scientist or engineer to be able to wr...

PHP174.29

2019

EN

Use BPF Tools to Optimize Performance, Fix Problems, and See Inside Running SystemsBPF-based performance tools give you unprecedented visibility into systems and applications, so you can optimize performance, troubleshoot code, strengthen security, and reduce costs. BPF Performance Tools: Linux System and Application Observability is the definitive guide to using these tools for observability.Pioneering BPF expert Brendan Gregg presents mor...

PHP3,514.49

XML Pocket Reference

Extensible Markup Language

2005

EN

XML, the Extensible Markup Language, is everywhere: the syntax of choice for newly designed document formats across almost all computer applications. Now used daily by developers, XML is living up to its reputation as one of the most important developments in document interchange in the history of computing.A perennial bestseller, the handy XML Pocket Reference from O'Reilly has been revised once again to give you quick access to the latest goods. In addition to its compre...

PHP419.19

Dynamic Programming for Coding Interviews

A Bottom-Up approach to problem solving


2017

EN

I wanted to compute 80th term of the Fibonacci series. I wrote the rampant recursive function,int fib(int n){ return (1==n 2==n) ? 1 : fib(n-1) + fib(n-2);}and waited for the result. I wait… and wait… and wait…With an 8GB RAM and an Intel i5 CPU, why is it taking so long? I terminated the process and tried computing the 40th term. It took about a second. I put a check and was shocked to find that the above recursive function was called 204,668,309 times while computing the 40th term. More t...

PHP232.59