code programming

From Python to C++ — and Why the Difference Matters

You already have a working Python program. You are going to write it again in C++, line for line, and reproduce its worst bug on purpose. Along the way you find out why the compiler wants to know the size of the box before you put anything in it, and why the error now arrives before the program has even run.

  • trending_upIntermediate
  • schedule6h 15m
  • menu_book12個のレッスン
  • publicEnglish
  • workspace_premiumBasic
From Python to C++ — and Why the Difference Matters

ブリーフィング

This is not a C++ course for people who have never programmed. It is a second language for someone who has a first one, taught entirely by contrast. Python let you write `age = 11` and never asked what `age` was. C++ makes you declare it, and it makes you choose between six kinds of box before you have put anything in one. That is annoying for about two hours and then it is the reason your program runs fast enough to finish inside a four-second limit. The spine of the segment is a port. You take the small question-and-answer script from the Python track — the one that asks your name, asks your favourite food and judges the answer — and you rebuild it in C++ a line at a time. Then you type your answer with a trailing space and it fails in exactly the same way it failed in Python. That is the point of the whole exercise. The trailing space was never a Python bug. It was an input bug, and it followed you. The last module points at USACO Bronze: what a competitive problem actually looks like on paper, how the input arrives, why the array is fixed at a thousand before you have read a single number, and why nearly everyone in that room is writing C++.

コースアウトライン · 4個のモジュール

lockアクセスで解放
  1. 01 The Box Has a Size
    3個のレッスン·1h 22m

    Python worked out what you meant. C++ makes you say it in advance, once, and then holds you to it for the rest of the program. Everything in this module is that one trade, examined.

  2. 02 Where the Error Arrives
    3個のレッスン·1h 23m

    Python runs a line, then reads the next one. C++ reads the whole file, refuses it if any part of it is wrong, and only then produces something you can run. Nothing you wrote today runs until all of…

  3. 03 The Port
    3個のレッスン·1h 55m

    Port it, do not rewrite it. Same order, same questions, same output. If you improve it while you translate it you will not be able to tell which differences are C++ and which are you.

  4. 04 The Shape of a Contest Problem
    3個のレッスン·1h 35m

    A contest problem is a contract. Input format, output format, constraints, limits. Read the constraints before you think about the algorithm — they are telling you which algorithm is allowed.

よくある質問

From Python to C++ — and Why the Difference Mattersでは何を学べますか?
You already have a working Python program. You are going to write it again in C++, line for line, and reproduce its worst bug on purpose. Along the way you find out why the compiler wants to know the size of the box before you put anything in it, and why the error now arrives before the program has
事前の経験が必要ですか?
From Python to C++ — and Why the Difference Mattersを開始する前に、ある程度の事前知識が推奨されます。
From Python to C++ — and Why the Difference Mattersはどのくらいの時間がかかりますか?
From Python to C++ — and Why the Difference Mattersには4個のモジュールと12個のレッスンが含まれています。自分のペースで学習できます。
アクセスするにはどうすればよいですか?
From Python to C++ — and Why the Difference Mattersは任意の有料サブスクリプションに含まれています。

プログラミングのその他

Binary, Hex and Data Units
Beginner Binary, Hex and Data Units The topic that costs more marks than any other on the paper, taught by hand. Bits and bytes, binary and hex in all six directions, the 1000-versus-1024 trap, file sizes, transmission times, overflow, two's complement and character sets. Every module ends in a timed drill marked the way an examiner marks it.
Python From a White Sheet
Beginner Python From a White Sheet 9人の学生がすでに歩んだ正確な道筋です。空のファイルから、質問をして、答えをチェックして、不正な入力を拒否するプログラムまで。プログラミングの経験は必要ありません。数学の知識も必要ありません。あなたは意図的に何度も失敗させられます。
First Program — Scratch for ages 5–9
Beginner First Program — Scratch for ages 5–9 Nine Scratch blocks, three sessions of about twenty-five minutes, and one small program a child of five to nine builds themselves. Written for the parent sitting beside them: what to click, what they will get stuck on, what to say when it goes wrong, and when to keep your hands off the mouse.
ハイプなしのAI
Beginner ハイプなしのAI モデルが回答するとき実際に何をしているのか、なぜそれが思考のように見えるものを生み出すのか、なぜ引用を作り出すのか、そしてほぼ誰も説明しないコストの仕組み:チャットは毎回会話全体を再送信します。計算は自分でやります。
IGCSE と GCSE コンピュータサイエンス — 実際に採点される理論
Intermediate IGCSE と GCSE コンピュータサイエンス — 実際に採点される理論 論文の理論部分で、試験会場で生き残るように教えられています。メモリ階層とブート時に実際に起こること。コンパイラ、インタプリタ、アセンブラ、正しく聞こえるのに採点されない答えを含む。スプレッドシートからキーと正規化までのデータベース。Enter キーを押してページが表示されるまでの完全なパス、DNS も含む。システムソフトウェア、および試験用紙で最も簡単な 10 点の倫理と法律のセクション。
Programming for the Exam — Python Answers That Score
Intermediate Programming for the Exam — Python Answers That Score The programming half of the paper, taught at exam pitch. Pseudocode translated both ways, because the mark scheme is written in a notation nobody practises. Trace tables done column by column, including the ones with a loop and a condition inside it. Linear and binary search, bubble and insertion sort, what each costs and the comparison questions boards love. Validation against verification, and the boundary test data everybody forgets. Procedures against functions, and a systematic method for finding your own error with four minutes left.