Difference between revisions of "Main Page"

From ProgrammingExamples
Jump to: navigation, search
(STL Data Structures)
 
(65 intermediate revisions by 9 users not shown)
Line 1: Line 1:
 
==Welcome to ProgrammingExamples.net!==
 
==Welcome to ProgrammingExamples.net!==
This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages.
+
This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!
  
== C++ ==
+
Please read [[Help:Editing|Editing Wiki Pages]] and [[Help:DosAndDonts|Do's and Don'ts]] before getting started.
* [[CPP/AlphebetizeString|Alphabetize a vector of strings]]
+
* [[CPP/ZeroPad|Pad a number with zeros]]
+
* [[CPP/Array|Array]]
+
* [[CPP/2DArray|2D Array]]
+
* [[CPP/BinaryIO|Binary input and output]]
+
* [[CPP/ExecuteLinuxCommand|Execute a linux command]]
+
* [[CPP/Casting|Casting]]
+
* [[CPP/CharacterArray|Character array]]
+
* [[CPP/KeyboardInput|Keyboard input]]
+
* [[CPP/CommandLineArguments|Command line arguments]]
+
* [[CPP/DeepCopy|Deep copy]]
+
* [[CPP/DefaultArguments|Default arguments]]
+
* [[CPP/Enum|Enum]]
+
* [[CPP/Exceptions|Exceptions]]
+
* [[CPP/FunctionPointer|Function pointer]]
+
* [[CPP/Infinity|Infinity]]
+
* [[CPP/Logging|Logging]]
+
* [[CPP/Macros|Macros]]
+
* [[CPP/Namespaces|Namespaces]]
+
* [[CPP/NAN|NAN (not a number)]]
+
* [[CPP/OverloadOperator|Overload operator]]
+
* [[CPP/ParallelSort|Parallel sort]]
+
  
=== I/O ===
+
== Coding Standards ==
* [[CPP/IO/FileInput|File input]]
+
We don't want to get too carried away here, but below are some guidelines.
* [[CPP/IO/FileOutput|File output]]
+
  
=== Strings ===
+
* Use a sensible and internally consistent indentation scheme
* [[CPP/Strings/Compare|Compare strings]]
+
* Use "best coding practices" for your language
* [[CPP/Strings/Concatenate|Concatenate]]
+
* Use descriptive, fully spelled variable names (in English please)
* [[CPP/Strings/CountCharacters|Count characters]]
+
** Good: dispatchTable, dispatch_table
 +
** Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
 +
* Comment (only) to clarify your code or your intention.
  
=== Classes ===
+
== Languages ==
* [[CPP/Classes/ClassTemplate|Class template]]
+
* [[CPP|C++]]
* [[CPP/Classes/ConstructorInheritance|Constructor inheritance]]
+
* [[Java]]
* [[CPP/Classes/InitializationList|Initialization list]]
+
* [[Python]]
* [[CPP/Classes/DerivedClass|Derived class]]
+
* [[Perl]]
* [[CPP/Classes/DownCasting|Down casting]]
+
* [[Bash]]
* [[CPP/Classes/FriendClass|Friend class]]
+
* [[Matlab]]
* [[CPP/Classes/NestedClasses|Nested classes]]
+
* [[CPP/Classes/PureVirtualFunction|Pure virtual function]]
+
  
=== Loops ===
+
== Libraries ==
* [[CPP/Loops/DoWhile|Do while]]
+
* [[Boost]]
* [[CPP/Loops/While|While]]
+
* [[Eigen]]
* [[CPP/Loops/For|For]]
+
* [[OpenMP]]
  
=== STL Data Structures ===
+
== GUI Systems ==
*[[CPP/STL/String|String]]
+
* [[Qt]]
*[[CPP/STL/Vector|Vector]]
+
* [[wxWidgets]]
*[[CPP/STL/List|List]]
+
*[[CPP/STL/Set|Set]]
+
*[[CPP/STL/MultiSet|MultiSet]]
+
*[[CPP/STL/Map|Map]]
+
*[[CPP/STL/MultiMap|MultiMap]]
+
*[[CPP/STL/Pair|Pair]]
+
*[[CPP/STL/PriorityQueue|Priority queue]]
+
*[[CPP/STL/Queue|Queue]]
+
  
=== Debugging ===
+
== Visualization/Graphics/Images ==
* [[CPP/Debugging/Assert|Assert]]
+
* [http://www.vtk.org/Wiki/VTK/Examples/Cxx VTK]
* [[CPP/Debugging/LineNumbers|LineNumbers]]
+
* [http://www.itk.org/Wiki/ITK/Examples ITK]
 +
* [[OpenGL]]
  
=== C++0x ===
+
== Computer Vision ==
*[[CPP/C++0x/Hash|Hash]]
+
* [[OpenCV]]
 
+
* [[PCL]]
=== Math ===
+
*[[CPP/Math/Exponential|Exponential function]]
+
*[[CPP/Math/MinMax|Min and Max]]
+
*[[CPP/Math/Trig|Trig functions]]
+
 
+
=== GUI Systems ===
+
====Qt====
+
====wxWidgets====
+

Latest revision as of 21:20, 21 November 2016

Welcome to ProgrammingExamples.net!

This site is intended to provide short, compilable code snippets demonstrating frequently used concepts in several programming languages. Please feel free to modify the existing examples, and add new examples!

Please read Editing Wiki Pages and Do's and Don'ts before getting started.

Coding Standards

We don't want to get too carried away here, but below are some guidelines.

  • Use a sensible and internally consistent indentation scheme
  • Use "best coding practices" for your language
  • Use descriptive, fully spelled variable names (in English please)
    • Good: dispatchTable, dispatch_table
    • Bad: dispTbl, disp_tbl, mesaDespacho, avsändande_bord
  • Comment (only) to clarify your code or your intention.

Languages

Libraries

GUI Systems

Visualization/Graphics/Images

Computer Vision