This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/1_Intro/Intro_RunningCpp.md

143 lines
4.1 KiB
Markdown
Raw Normal View History

2020-06-08 20:42:55 +00:00
---
slug: /intro/running-cpp
title: Running C++
author: Nathan Wang, Benjamin Qi
order: 4
---
2020-06-09 00:47:37 +00:00
Running C++ both online and locally (currently for Mac only).
2020-06-08 20:42:55 +00:00
<!-- END DESCRIPTION -->
## Using C++
<div class="h-2"></div>
Here's a basic C++ template you may find useful:
```cpp
#include <bits/stdc++.h>
using namespace std;
int main() {
// these two lines open the file into the standard input/output,
// so you can just use cin/cout.
freopen("file.in", "r", stdin); // read from file.in
freopen("file.out", "w", stdout); // write to file.out
// Code goes here!!
}
```
2020-06-09 00:47:37 +00:00
## Running Online
* [CSAcademy](https://csacademy.com/workspace/)
* pretty nice (unless you get "Estimated Queue Time: ...")
* [Ideone](http://ideone.com/) (used this for a while ...)
* okay with an ad blocker
* make sure your code is not public
* sometimes randomly erases your code when you first create it (so get in the habit of copying your code before creating it!)
* [OnlineGDB](https://www.onlinegdb.com/)
2020-06-08 20:42:55 +00:00
2020-06-09 00:47:37 +00:00
Of course, you can't use File I/O on these websites (or do a lot of other stuff ...).
2020-06-08 19:51:58 +00:00
2020-06-09 00:47:37 +00:00
## Running C++ Locally (on Mac)
2020-06-08 19:51:58 +00:00
2020-06-09 00:47:37 +00:00
[Clang](https://en.wikipedia.org/wiki/Clang) is the default compiler for Mac OS X, but you should use [G++](https://en.wikipedia.org/wiki/GNU_Compiler_Collection).
### Installation
I had a lot of issues when first trying to install G++ on Mac. Please let me know if these instructions do not work!
Open terminal and run
2020-06-08 19:51:58 +00:00
```
brew install gcc
```
2020-06-09 00:47:37 +00:00
2020-06-08 19:51:58 +00:00
According to [this](https://stackoverflow.com/questions/30998890/installing-opencv-with-brew-never-finishes) if brew doesn't seem to finish for a long time then
2020-06-09 00:47:37 +00:00
2020-06-08 19:51:58 +00:00
```
brew install gcc --force-bottle
```
2020-06-09 00:47:37 +00:00
probably suffices.
2020-06-08 19:51:58 +00:00
### Confirmation
You should be able to compile with g++ or maybe g++-#, where # is the version number (currently 9). Running the following command:
```
g++-9 --version
```
should display something like this:
```
g++-9 (Homebrew GCC 9.2.0_2) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
```
2020-06-09 00:47:37 +00:00
### Adding Shortcuts
2020-06-08 19:51:58 +00:00
Open your bash profile with a text editor such as gedit (or sublime text).
```
brew install gedit
gedit ~/.zshenv
```
You can add aliases and functions here, such as the following:
```
alias clr="clear"
alias ZES='source ~/.zshenv'
alias ZEO='subl ~/.zshenv'
alias IMPL='cd ~/Documents/GitHub/USACO/Implementations/'
co() {
g++-9 -std=c++11 -O2 -Wl,-stack_size -Wl,0x10000000 -Wall -Wextra -o $1 $1.cpp
}
run() {
co $1 && ./$1
}
```
2020-06-09 00:47:37 +00:00
Now you can easily compile and run C++ from the command line by calling `run`.
2020-06-08 19:51:58 +00:00
```
run [prog name]
```
2020-06-09 00:47:37 +00:00
### Troubleshooting
2020-06-08 19:51:58 +00:00
Make sure you have installed XCode command line tools.
```
xcode-select --install # make sure x-code command line tools are installed
softwareupdate --list
softwareupdate -i -a # installs everything
```
## Tools
2020-06-09 00:47:37 +00:00
### IDEs
2020-06-08 19:51:58 +00:00
* [Geany](https://www.geany.org/)
* [Visual Studio Code](https://code.visualstudio.com/)
* [XCode](https://developer.apple.com/xcode/)
2020-06-09 00:47:37 +00:00
* Mac only
2020-06-08 19:51:58 +00:00
* [Codeblocks](http://www.codeblocks.org/)
2020-06-09 00:47:37 +00:00
* bad on Mac :(
2020-06-08 19:51:58 +00:00
### Text Editors
* [Sublime Text 3](https://www.sublimetext.com/)
2020-06-09 00:47:37 +00:00
* [Editing Build Settings](https://stackoverflow.com/questions/23789410/how-to-edit-sublime-text-build-settings)
* [FastOlympicCoding Addon](https://github.com/Jatana/FastOlympicCoding)
* [Sublime Snippets](https://www.granneman.com/webdev/editors/sublime-text/top-features-of-sublime-text/quickly-insert-text-and-code-with-sublime-text-snippets)
* [Symlink](https://www.sublimetext.com/docs/3/osx_command_line.html)
* Using `/usr/local/bin/subl` instead of `~/bin/subl` worked for me on OS X Mojave.
2020-06-08 19:51:58 +00:00
* [Atom](https://atom.io/)
2020-06-09 00:47:37 +00:00
## Other Useful Links
2020-06-08 19:51:58 +00:00
* [Intro to Command Line](http://blog.teamtreehouse.com/introduction-to-the-mac-os-x-command-line)
* [Command Line Shortcuts](https://jonsuh.com/blog/bash-command-line-shortcuts/)
* [Run Python Script](https://stackoverflow.com/questions/7855996/cant-run-python-py-files-from-terminal-on-mac)
* [Competitive C++ Style Guide](https://codeforces.com/blog/entry/64218)