blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
fc367bfbf43a6c7984e121f6c9ae9b7fd476ed10
05a8e4cdcc7b49dc7c92e759fc2f14d398ca9a2e
/projeto/QtTcpClientConsumer/plotter.cpp
45f19e629129900dae19464d0484c8ec02e14a17
[]
no_license
Ana-Beatriz-Marinho/DCA1202
8123bd2b6d1ad124f8be213caff99828d6258391
7e924f1cad7b0e2e173ef15d17a6da54499ea616
refs/heads/master
2020-04-03T11:47:48.357799
2018-12-12T10:39:11
2018-12-12T10:39:11
155,232,077
0
0
null
null
null
null
UTF-8
C++
false
false
1,249
cpp
#include "plotter.h" #include <QPainter> #include <QBrush> #include <QPen> #include <cmath> #include <QMouseEvent> using namespace std; #define PI 3.1415 Plotter::Plotter(QWidget *parent) : QWidget(parent){ } void Plotter::paintEvent(QPaintEvent *evento){ QPainter painter(this); QBrush brush; QPen pen; int x1, y1,...
[ "anabibimn@hotmail.com" ]
anabibimn@hotmail.com
6a2d9538d823f77e96bda5d4e459a5fdd25bca3b
b0dd7779c225971e71ae12c1093dc75ed9889921
/libs/math/test/test_rational_instances/test_rational_ldouble2.cpp
49fdce22061a2e30762e6330d6a2052f54002db2
[ "LicenseRef-scancode-warranty-disclaimer", "BSL-1.0" ]
permissive
blackberry/Boost
6e653cd91a7806855a162347a5aeebd2a8c055a2
fc90c3fde129c62565c023f091eddc4a7ed9902b
refs/heads/1_48_0-gnu
2021-01-15T14:31:33.706351
2013-06-25T16:02:41
2013-06-25T16:02:41
2,599,411
244
154
BSL-1.0
2018-10-13T18:35:09
2011-10-18T14:25:18
C++
UTF-8
C++
false
false
338
cpp
// (C) Copyright John Maddock 2006-7. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include "test_rational.hpp" template void do_test_spots<long double, int>(long...
[ "tvaneerd@rim.com" ]
tvaneerd@rim.com
70780414496f670ad6b1c11e867727dd4c6db92a
8f7fa80257b32885aeb7964e82b73147ae74365f
/bst/BST_connect34.h
1e039520375ea6f1c0fa435d270bf3e40a941448
[]
no_license
npjtwy/DS_CPP
0f063a333121711666f29301dcefc0ffd1d06efe
6dbe68e67249cb513884f6828355f3bb8e13639a
refs/heads/master
2021-01-11T19:15:10.479933
2017-05-24T08:49:08
2017-05-24T08:49:08
79,341,972
0
0
null
null
null
null
GB18030
C++
false
false
653
h
#pragma once /* * 3+4 重构 将失衡子树重组为平衡子树 */ template<typename T> BinNodePosi(T) BST<T>::connect34( //按照“3 + 4”结构,联接3个节点及四棵子树 BinNodePosi(T) a, BinNodePosi(T) b, BinNodePosi(T) c, BinNodePosi(T) t1, BinNodePosi(T) t2, BinNodePosi(T) t3, BinNodePosi(T) t4 ) { a->lChild = t1; if ( t1 ) t1->parent = a; a->rChild = t2; i...
[ "nwpuwy.qq.com" ]
nwpuwy.qq.com
8b0442ca06df5883727451b0e6222dd8549cb9dc
4dda91e22ad7ea1fbfe4a8065865a380fdb9bda5
/大作业22.cpp
a4df1575f775b11185316405cb9c942afb70b000
[]
no_license
glj-27/github
1d4e49543bc39ef9d2f65418d8f70e463b4ecdca
c323b6404c6aa04a0e6e5b9fc2ee265837954be1
refs/heads/master
2020-07-10T10:03:26.814252
2019-08-25T03:00:19
2019-08-25T03:00:19
204,236,443
0
0
null
null
null
null
GB18030
C++
false
false
15,723
cpp
#include<iostream> #include<cstdio> #include<cstring> #include <conio.h> #include<stdlib.h> #include<fstream> #include<algorithm> using namespace std; class people { public: char name[20]; int birthday[3]; char phone[20]; char email[30]; char relationship; char mm[30]; }; int num;people student[100]; bool compare...
[ "glj1522029024@163.com" ]
glj1522029024@163.com
7a5fd5e5340e4ffc1888d7a218a5e8135947c3b3
1a0ad7854a9b0a6ef5e946f7ee144ee6e5700f97
/Location-Aware-IM/limit.cpp
ecb5c933c76926e025227e4e0f7d836f19915252
[]
no_license
TsinghuaDatabaseGroup/SocialInfluenceMaximization
9f07241afdf10d350c387c2b5832e07645538440
68824561f616468dd5d3c63b6c11c811205a518b
refs/heads/master
2021-09-02T06:21:13.423035
2017-12-31T00:47:54
2017-12-31T00:47:54
114,575,221
13
2
null
null
null
null
UTF-8
C++
false
false
256
cpp
#include <vector> #include "limit.h" vector<bool> Args::is_native(MAX_NODE, false); vector<bool> Args::is_cdd(MAX_NODE, false); int Args::MAX_QK = 5000; int Args::MAX_CK = 5000; int Args::MIN_CK = 10; int Args::CACHE_RATIO = 10; int Args::CAPACITY = 500;
[ "liguoliang@mail.tsinghua.edu.cn" ]
liguoliang@mail.tsinghua.edu.cn
d0ac7841f09137315a59638863caa6479b8e22be
74a9456b605da15cbce5eefcfc22b2c049925d24
/mimosa/fft/scwf-gen.hxx
6e9111bd94c0531e5feb61874195eb6740aa7979
[ "MIT" ]
permissive
abique/mimosa
195ae693e2270fbfe9129b95b981946fab780d4e
87fff4dfce5f5a792bd7b93db3f3337e477aae76
refs/heads/master
2022-06-30T16:32:55.355008
2022-06-07T11:38:47
2022-06-07T11:38:47
2,087,313
27
8
MIT
2018-01-16T07:20:04
2011-07-22T05:40:03
C++
UTF-8
C++
false
false
1,410
hxx
#pragma once #include "scwf-gen.hh" namespace mimosa { namespace fft { template <typename fp_type, int len> void generateIdealSawSpectrum(fp_type *spectrum) { static_assert(len & (len - 1) == 0, "len is a power of 2"); static_assert(len >= 4, "len must be greater or equal to 4"); for (int i = 0; i < len...
[ "bique.alexandre@gmail.com" ]
bique.alexandre@gmail.com
4fa0fe5910b5816de06624c47c5d26cb0e1fa7e2
af28900bba69ae238baf6851ccc2ab2ca8978c75
/Polymorphic Malware/Polymorphic_Engine.cpp
72689da65df9be3aaef47420f9873c3f48b7f684
[]
no_license
tmd2018/Polymorphic-Engine-
dcdc4acf75615b114045201ba4c8c455de7140a3
3061c3af63d8f86b4862fd96204da9db8096249e
refs/heads/master
2020-05-31T21:28:12.040614
2017-05-12T15:33:50
2017-05-12T15:33:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,233
cpp
// Calc.cpp : Defines the entry point for the console application. // #include <iostream> #include <cstdlib> #include <ctime> #include <cstring> #include <string> #include <cctype> #include <sstream> #include<fstream> #include<ostream> using namespace std; void Encrypt(string&, int key); string Decrypt(string strTarge...
[ "szm0093@auburn.edu" ]
szm0093@auburn.edu
a8fb1f58469498d423aaa78c8f3900c8c60089ed
36995789e9fe22d629bfe1b1dc78ed4cffaa6f75
/firmware/arduino/Board4Control/Board4Control_LCD.h
4d69b5b067b7766b737eebe4ec7fc11e53cb0bae
[]
no_license
FBSeletronica/4ControlBoard
feff9d59391c4dc770a5bd57ca99b15be408aa23
83b0a4db03e59af6b45ec9177873bf5e5b04a5e5
refs/heads/master
2021-01-10T17:14:12.736067
2016-02-07T00:12:51
2016-02-07T00:12:51
45,721,579
1
0
null
null
null
null
UTF-8
C++
false
false
3,123
h
/* this library is based on arduino LiquidyCristal library: https://github.com/arduino/Arduino/tree/master/libraries/LiquidCrystal */ #ifndef Board4Control_LCD_h #define Board4Control_LCD_h #include <inttypes.h> #include "Print.h" // commands #define LCD_CLEARDISPLAY 0x01 #define LCD_RETURNHOME 0x02 #define L...
[ "fabio_souza53@hotmail.com" ]
fabio_souza53@hotmail.com
610b16e15df3731843ef78999e985522237a8365
220846e017a9992e596bd1ea806d527e3aeea243
/79_Word_Search.cpp
a5cb29e5ac66481ecfd1fe0e20310c24639cfb08
[]
no_license
anzhe-yang/Leetcode
bfa443b7a74ddbd441348c364ee00004173ddd86
fe9eb16136035f25f31bddb37c6b4884cd7f6904
refs/heads/master
2020-04-08T14:49:04.781848
2019-10-25T02:39:22
2019-10-25T02:39:22
159,453,173
0
0
null
null
null
null
UTF-8
C++
false
false
1,894
cpp
/** 问题描述: * 给定一个 2D 的字母数组,返回单词是否存在于这个数组中。 * 该单词可以由顺序相邻的单元的字母构成,其中“相邻”单元是水平或垂直相邻的单元。 * 相同的字母单元格不得多次使用。 */ #include <iostream> #include <vector> #include <string> using namespace std; bool exist(vector<vector<char>>& board, string word, int x, int y, int pos, int m, int n, int len) { char cur = board[x][y];...
[ "anzhe_yang@yanganzhedeMacBook-Pro.local" ]
anzhe_yang@yanganzhedeMacBook-Pro.local
92fde826bf54f34327539f61af4972bf3d8bb83b
560b0fe26827a16eb6ffd16f5b5e3e28844158ba
/cpp/core/mailiverse/mail/cache/Info.cpp
c5b553195b4d17fd6ac2461e1de6890a08e46d95
[]
no_license
timprepscius/mailiverse
855e76b4d685305e426e6db9f97d15d8e86cf4c3
9c7fe87d9723aa81015598a29b4fe1bb61e226ac
refs/heads/master
2021-01-15T14:29:07.506168
2014-01-19T20:11:13
2014-01-19T20:11:13
11,405,168
2
1
null
null
null
null
UTF-8
C++
false
false
243
cpp
/** * Author: Timothy Prepscius * License: BSD + keep my name in the code! */ #include "Info.h" using namespace mailiverse::mail::cache; Info::Info() : cacheVersion(Version::NONE), localVersion(Version::NONE) { } Info::~Info() { }
[ "tprepscius" ]
tprepscius
22e017201d1cf23d831732fe07a83214bcaf4f3b
ae4d9cf742b9f6e5024bcd5bdf4b4473558da9e3
/_PSmine/PS모음/boj/10992.cpp
ec396174b0a36e044be133e44dd64881de9bc486
[]
no_license
son0179/ttt
b6d171141e0b7894258cfb367023de62cdc9dd19
a5153b0170c0df156c96d9be85b21d73f1f2e21e
refs/heads/master
2023-02-09T22:01:57.658467
2021-01-05T09:14:52
2021-01-05T09:14:52
200,059,589
1
0
null
null
null
null
UTF-8
C++
false
false
377
cpp
#include<stdio.h> int main() { int n,a,b; scanf("%d",&n); if(n==1) { printf("*"); } else { for(int i=1; i<n; i++) { a=1; b=1; while(a<=n-i) { printf(" "); a++; } printf("*"); if(i!=1) { while(b<=(i-1)*2-1) { printf(" "); b++; } printf("*"); } printf("\n"); ...
[ "starson2648@gmail.com" ]
starson2648@gmail.com
6789f7991ce38c5d29f8d123ee2128dd61fffef0
cfcfb3502a0f2ebc4e1c5da3eb75336eda331146
/Praktikum Pemograman 2/modul 6/lisitng_1.cpp
e09351f406d5af4842840c974c5ca77eeee25358
[]
no_license
fadhilelrizanda/c-code
f5f05c8bbe31e1fd91acad034b721ce99a222cf4
9e67666b4c4144fac7205ceb89aa49f0498e570e
refs/heads/master
2023-01-31T07:46:59.679251
2020-12-10T03:43:38
2020-12-10T03:43:38
282,821,800
0
0
null
null
null
null
UTF-8
C++
false
false
1,101
cpp
#include <iostream> using namespace std; class Rectangle { public: int *length, *width; public: Rectangle(int a, int b) { length = new int; width = new int; *length = a; *width = b; } int arectangle() { return (*length * *width); } ~Rectangle()...
[ "fadhilelrizanda@gmail.com" ]
fadhilelrizanda@gmail.com
a22961755da4ae0d5a9e4bfac99a54b456ee68a8
810d3856f8c1bb5364ea20917690a8f3b5e83e66
/c_cpp/dev/ALGO-184/contest_9_A.cpp
4f98d7befeb42e2354b1286870ba4a7c36aa0904
[]
no_license
Saber-f/code
6c36bff79a6590bf8eb4f740cf5c403d31ddb17e
9e8646a320d91c0019493854f879bd6aefa6521d
refs/heads/master
2021-07-15T21:53:54.440183
2019-05-20T07:18:37
2019-05-20T07:18:37
129,101,087
0
0
null
null
null
null
UTF-8
C++
false
false
274
cpp
#include<stdio.h> int main(void) { int n,m,num = 0; scanf("%d %d",&n,&m); for(int t,i =0; i < n; i++) { scanf("%d",&t); if(t%m == 0) num += t/m; else num += t/m + 1; } if(num % 2 == 0) printf("%d",num /2); else printf("%d",(num+1)/2); return 0; }
[ "735974175@qq.com" ]
735974175@qq.com
1264d182f0b170ab05386c58477b81f13fd376e8
d65246568137d0f0713139b11f38838bec0185e4
/miro/Worley.cpp
df9cf1a2a9c8856f837f12948e5f2ed4676490aa
[]
no_license
rayyada/CSE168PA2
4cd2e5c1e7702f3db56fe9e266e9afdc460aee78
3cbe06486931f981c73c6cdc0b098dc7b92e5282
refs/heads/master
2021-01-01T03:54:17.446239
2016-05-19T03:58:00
2016-05-19T03:58:00
58,539,262
0
0
null
null
null
null
UTF-8
C++
false
false
20,583
cpp
#include "Worley.h" #include "Material.h" #include <math.h> // private helper functions namespace { // A hardwired lookup table to quickly determine how many feature // points should be in each spatial cube. We use a table so we don't // need to make multiple slower tests. A random number indexed into // this arr...
[ "Ray Yada" ]
Ray Yada
5e418da066f76f779f6e83f272f1b10d6ca77cc7
8ed7b2cb70c6e33b01679c17d0e340f11c733520
/learnqt5/cm/cm-lib/source/framework/command.cpp
3716e22b02dd3f1786f86966099df0483e63ae65
[]
no_license
saibi/qt
6528b727bd73da82f513f2f54c067a669f394c9a
a3066b90cbc1ac6b9c82af5c75c40ce9e845f9a2
refs/heads/master
2022-06-26T20:08:07.960786
2022-06-10T06:49:28
2022-06-10T06:49:28
88,221,337
0
0
null
null
null
null
UTF-8
C++
false
false
903
cpp
#include "command.h" namespace cm { namespace framework { class Command::Implementation { public: Implementation(const QString& _iconCharacter, const QString& _description, std::function<bool()> _canExecute) : iconCharacter(_iconCharacter), description(_description), canExecute(_canExecute) { } QString iconChar...
[ "ymkim@huvitz.com" ]
ymkim@huvitz.com
781647facaa7cc4d0a19fab05eb6bf4ba8737390
a5e486f7e08ab39fc18627518dfc1da8df57f8b5
/DroppingBalls.cpp
3dd8c1cac33e8a59aa6a077a67358ab18336fcae
[]
no_license
Anfer2325/Estructuras-de-datos-y-algoritmos
621aaeabd2666cdae4cfba35387363815b63892a
57b49297d9592f8429869c2962da765b79c2a6a6
refs/heads/master
2020-04-23T18:18:09.648375
2015-02-12T21:45:00
2015-02-12T21:45:00
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
55,221
cpp
/* Definición de algunas excepciones de las distintas implementaciones de los TADs. Estructura de Datos y Algoritmos Facultad de Informática Universidad Complutense de Madrid (c) Marco Antonio Gómez Martín, 2012 */ #ifndef __ARBOLES_H #define __ARBOLES_H #include <string> #include <iosfwd> ...
[ "jaimedel@ucm.es" ]
jaimedel@ucm.es
e711d43d564dbea80ffd823de0196be88ed17b4d
e9a481c76a7921f109882416be1f24a0cbf82dc8
/particle.cpp
088f8764a8de83bd527921869450547798a1bf14
[]
no_license
azgurath/GravSim
91d8daa96d1f1ddacb9fbf94f05c34b05738c877
44d6a58ac45de2e37d06e861fc61c5a4135c3770
refs/heads/master
2020-04-13T21:51:59.773419
2016-10-07T16:06:43
2016-10-07T16:06:43
68,053,751
0
0
null
null
null
null
UTF-8
C++
false
false
581
cpp
/** * @file particle.cpp * @author Andrew Hoover * @date 9/20/2016 * @brief Implementation of particle class. * * Implements the constructor for the particle class, * initializing the location, velocity, mass and next * particle to zero. */ #include "particle.h" /** * Constructor, initializes the p...
[ "azgurath@gmail.com" ]
azgurath@gmail.com
dbca2b47aeae072f824b279a023450880674f916
30d6ffcaed24e22c071b46652890e57ef40fce07
/custom_projects/09_OLED_Interfacing/04_oled_ST7735_80_160_spi/04_oled_ST7735_80_160_spi.ino
643a886ee21c441d1028449f5d948c553c69a05f
[]
no_license
softwaresunleashed/arduino
6fac93d16a13317a6818bd84e760d834b06975ce
f28d5554d449368850f2d95bd88ec8354e6f308c
refs/heads/master
2023-01-12T02:54:18.674457
2020-11-05T12:48:34
2020-11-05T12:48:34
213,021,879
0
0
null
null
null
null
UTF-8
C++
false
false
9,548
ino
/************************************************************************** This is a library for several Adafruit displays based on ST77* drivers. Works with the Adafruit 1.8" TFT Breakout w/SD card ----> http://www.adafruit.com/products/358 The 1.8" TFT shield ----> https://www.adafruit.com/product/802...
[ "softwares.unleashed@gmail.com" ]
softwares.unleashed@gmail.com
9a111d6e64325e4e3603cb95d8193632f032e231
d439909a41a1fcce6c859d1022c145d736d06f73
/aten/src/ATen/native/TensorConversions.cpp
71690c4bf2d17b6aac54d029a02c4a025203b76a
[ "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "BSL-1.0", "Apache-2.0", "BSD-2-Clause" ]
permissive
MarcelRaschke/pytorch-2
f19f41f8dc072bd3c387b9fada8a998f10cb235a
a346a18150866dd62c9bacbca817d2d44148b74d
refs/heads/master
2023-05-12T02:48:04.840889
2022-03-16T15:19:41
2022-03-16T15:19:41
159,927,967
1
1
NOASSERTION
2023-04-04T00:54:40
2018-12-01T09:16:04
C++
UTF-8
C++
false
false
12,927
cpp
#include <ATen/ATen.h> #include <ATen/NativeFunctions.h> #include <c10/util/Optional.h> #include <ATen/quantized/Quantizer.h> #include <c10/core/impl/DeviceGuardImplInterface.h> namespace at { namespace native { // Take a Device that may not have device_index set (i.e., having it as -1 // representing the current de...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
94bf82f377b4124866a3ca88ebd10f197655c430
f43711e16bf8e16fee28df8376814e14ec6ee10e
/Spoj/absys.cpp
1ff54a6186b9934e4eb0777867096a1309c8ab8c
[]
no_license
kshav/My_codes
5e3ed56b99ba2860462d485b2c2c6cdc485db14a
4337b951454b62010bcc91b8f78db2eb04dcdc67
refs/heads/master
2016-09-06T00:24:47.843220
2014-02-19T12:49:31
2014-02-19T12:49:31
16,978,109
0
1
null
null
null
null
UTF-8
C++
false
false
1,724
cpp
#include<iostream> #include<string.h> using namespace std; int main() { int n,t,l=0,j,m,l1,l2,l3,d,e,f; string k; cin>>n; t=0; while(t<n) { cout<<"Loop: "<<t<<"\n"; getline (cin,k); l=k.size(); char w[l]; for(int i=0;i<l;i++) w[i]=0; ...
[ "kshav1908@gmail.com" ]
kshav1908@gmail.com
6f4d5948f123da8605259044df72c057f923c2f1
936fa91805ad7e156705a3446f88ddd258b77a4f
/example/gizmesh_example_gl3/renderer_impl_gl3.cpp
44382cc084f76b539158181c4cdea7abc273d1f1
[ "MIT" ]
permissive
ousttrue/gizmesh
2456edd3b632bfe8835b0c77159caa8d542a47a2
fbc845abcd20eacc06c89c03a9e86a81208c401d
refs/heads/master
2023-08-23T08:41:19.628360
2021-09-10T11:24:53
2021-09-10T11:24:53
243,416,047
0
0
null
null
null
null
UTF-8
C++
false
false
6,012
cpp
#include "gl-api.hpp" #include "renderer.h" #include "teapot.h" #include "wgl_context.h" constexpr const char gizmo_vert[] = R"(#version 330 layout(location = 0) in vec3 vertex; layout(location = 1) in vec3 normal; layout(location = 2) in vec4 color; out vec4 v_color; out vec3 v_world, ...
[ "ousttrue@gmail.com" ]
ousttrue@gmail.com
5a4d15edf9888432ec25b410605ab1ce8971a3ec
02987503becabd24aa359d6ceabcb332ad8c6302
/sgpp-1.1.0/base/src/sgpp/base/grid/storage/hashmap/SerializationVersion.hpp
40e63bcadc80d4d3005cb22dde9fcb885637e7bc
[]
no_license
HappyTiger1/Sparse-Grids
a9c07527481ee28fe24abed6dad378ca9fc6d466
2832b262c1aeaa25312a3f7e48c5a67c90d183a5
refs/heads/master
2020-05-07T14:06:20.673900
2016-08-08T17:57:12
2016-08-08T17:57:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,099
hpp
// Copyright (C) 2008-today The SG++ project // This file is part of the SG++ project. For conditions of distribution and // use, please see the copyright notice provided with SG++ or at // sgpp.sparsegrids.org #ifndef SERIALIZATIONVERSION_HPP #define SERIALIZATIONVERSION_HPP /** * This specifies the available seria...
[ "alexander.atanasov@yale.edu" ]
alexander.atanasov@yale.edu
0e5be2a2f44a67ba2feffd3d77c3fd87b03bc177
302f4bda84739593ab952f01c9e38d512b0a7d73
/ext/Vc-1.3.2/sse/helperimpl.h
0c1663e97f55294413f2eeb22302a8af61e34be9
[ "BSD-3-Clause", "LicenseRef-scancode-free-unknown", "Apache-2.0", "ICU", "BSL-1.0", "X11", "Beerware" ]
permissive
thomaskrause/graphANNIS
649ae23dd74b57bcd8a699c1e309e74096be9db2
66d12bcfb0e0b9bfcdc2df8ffaa5ae8c84cc569c
refs/heads/develop
2020-04-11T01:28:47.589724
2018-03-15T18:16:50
2018-03-15T18:16:50
40,169,698
9
3
Apache-2.0
2018-07-28T20:18:41
2015-08-04T07:24:49
C++
UTF-8
C++
false
false
3,271
h
/* This file is part of the Vc library. {{{ Copyright © 2010-2015 Matthias Kretz <kretz@kde.org> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright not...
[ "thomaskrause@posteo.de" ]
thomaskrause@posteo.de
3e1bca31b4c3271e2d86c8366180befd2972a0dc
98578e9b0e2f19b627c89c82b880448158589f6d
/Lab_4/Lab_4/Bvector.cpp
c6d8e0af2b6020d6292938efd7816b0e6d24b016
[]
no_license
roziukp/OOP-C-
c384e662075cecf6a49f94b2fa1ab40976e47026
a03c104ddcf041cb34f03d88fb3663d2692fd620
refs/heads/master
2020-04-03T12:11:26.532659
2018-10-29T16:25:27
2018-10-29T16:25:27
155,244,067
0
1
null
null
null
null
WINDOWS-1251
C++
false
false
1,866
cpp
#include <iostream> #include "Bvector.h" using namespace std; Bvector::Bvector(int size) { this->size = size; arr = new bool[size]; for (int i = 0; i < size; i++) { cin >> arr[i]; } } Bvector::Bvector(Bvector &object) { size = object.size; arr = new bool[size]; for (int i = 0; i<size; i++) ...
[ "roziukp@gmail.com" ]
roziukp@gmail.com
15f8ad8e0dd20acc7434b34363d067a5cec50da4
04d6eb2e833fcbb69477fd70a7c1ced91e196c51
/third_party/wide-integer/test/test_uintwide_t_n_binary_ops_mul_div_4_by_4_template.h
359fd0fd67f261d5cae3cf4751763c55bbc720c3
[ "BSL-1.0", "MIT" ]
permissive
potassco/clingcon
678138f256f60295af53d081c74bdd2b9bddbdbc
1d4a15721f1e301b3e2074bf9b7a27c6948a9e77
refs/heads/master
2023-04-30T13:24:41.713761
2022-09-11T13:17:49
2022-09-11T13:17:49
62,557,412
22
6
MIT
2023-04-17T15:07:01
2016-07-04T11:32:41
C++
UTF-8
C++
false
false
7,072
h
/////////////////////////////////////////////////////////////////////////////// // Copyright Christopher Kormanyos 2021. // Distributed under the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt // or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef TEST_UINTWIDE_T_N_BINARY_OP...
[ "kaminski@cs.uni-potsdam.de" ]
kaminski@cs.uni-potsdam.de
8793eca0f56ee2d2d85396062f7b95f711e372cc
5d997fe0ccdcff70d2f7933f4c7f11d9c637fd86
/modules/core/mgmt/rwuagent/src/rwuagent_confd_workspace.cpp
979eb4747e5091860b0e7702035753be465835ff
[ "Apache-2.0" ]
permissive
gonotes/RIFT.ware
02e1ea2d11aa99f5a65be6d686f2afabd3284070
45884f1e2b7b0028afae19eb0243dbfeb71edaff
refs/heads/master
2021-01-18T02:50:07.858451
2016-06-02T14:55:14
2016-06-02T14:55:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,770
cpp
/* * * (c) Copyright RIFT.io, 2013-2016, All Rights Reserved * */ /* * @file rwuagent_confd_workspace.cpp * * Management Confd workspace handler */ #include <string> #include <sstream> #include <boost/algorithm/string.hpp> #include "rw_schema_defs.h" #include "rwuagent_mgmt_system.hpp" #include "rw-manifest.p...
[ "Wei.Wang@riftio.com" ]
Wei.Wang@riftio.com
cc416b4a1da592ad1df0bd2eb6d4279706e5b7c5
b5e8a7b5798d6cb124aaf7172d78478eb72bd733
/usaco/agrinet.cpp
7c6c868bfbacd9cdf2692bb6b155c8326359258b
[]
no_license
manolismih/OJsolutions
8e62b29ac604077473926dd63d8a636181db11be
809999d34036033e3a8757518588bf5847ca7f5f
refs/heads/master
2022-05-01T01:19:52.014312
2022-03-10T13:37:13
2022-03-10T13:37:13
244,162,474
2
0
null
null
null
null
UTF-8
C++
false
false
954
cpp
/* ID:manolis2 PROG:agrinet LANG:C++ */ #include <cstdio> #include <queue> using namespace std; FILE *fin = fopen("agrinet.in","r"), *fout = fopen("agrinet.out","w"); struct node{ int komvos,dist; }; inline bool operator<(node a, node b) { return a.dist>b.dist; } inline node tonode(int komvos, ...
[ "manolismih@windowslive.com" ]
manolismih@windowslive.com
9dd320800fb3006b822e19df6c0655cc4076177c
ff0545672e0bf75ea0cfe9423af18de9cb4669df
/compile_error.cpp/compile_error.cpp/compile_error.cpp
be77ed236f5d4ff69733a5f735cf89a7b45032c6
[]
no_license
tsengliwei/UCLA-CS-31-Project1
a76a35fcc797da88e4ea353a565650ad2236fc52
d3fbb587dc711d3e54fda521b73958582db2c895
refs/heads/master
2020-06-08T17:18:52.113530
2015-01-22T23:34:44
2015-01-22T23:34:44
29,706,087
0
0
null
null
null
null
UTF-8
C++
false
false
1,060
cpp
// Code for Project 1 // Report poll results #include <iostream> using namespace std; // see p. 37-38 in Savitch book int main() { int numberSurveyed; int preferHomeTeam; int preferAwayTeam; cout << "How many fans in attendance were surveyed? " cin >> numberSurveye...
[ "tsengliwei@gmail.com" ]
tsengliwei@gmail.com
38d6569f430fcf0e89943b99811ea8775f213c4f
2abc4ab516bec7cc7cf56786328f783ef9e16e85
/Project/PathSearch/PathSearch.h
12f8e7a6490b5e44924aa72ea12f224684e29a27
[]
no_license
chrisloco11/Pathfinder-Lab
420ed379d40bf616f505fab05e0105c5214b862d
aba07e77dbad162be0a39eda8512c71599f77e5e
refs/heads/master
2021-01-18T17:15:27.648013
2014-12-01T19:14:31
2014-12-01T19:14:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,891
h
//! \file PathSearch.h //! \brief Defines the <code>fullsail_ai::algorithms::PathSearch</code> class interface. //! \author Cromwell D. Enage, 2009; Jeremiah Blanchard, 2012 #ifndef _FULLSAIL_AI_PATH_PLANNER_PATH_SEARCH_H_ #define _FULLSAIL_AI_PATH_PLANNER_PATH_SEARCH_H_ // change this to start the program on whatever...
[ "chrisloco11@fullsail.edu" ]
chrisloco11@fullsail.edu
ade1b74a991f3bb4313bcd7e6c483f9b8db6dc69
1ad9c4de957e2a868d9534d415ffe63aec61b17e
/day02/main.cpp
8299c976b9aba2bc058583b699601c008cced1d3
[]
no_license
simrit1/Challange30Days
2823153225c0f0000b02756dc6984ee2e1620757
2b4a054277baf00f0842ff38b17cfbbe9c1ef93d
refs/heads/master
2022-07-03T05:45:44.070219
2020-05-17T00:10:33
2020-05-17T00:10:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,307
cpp
#include <iostream> using namespace std; // prototype void startCalc(); void penjumlahan(float a, float b); void pengurangan(float a, float b); void perkalian(float a, float b); void pembagian(float a, float b); // membuat kalkulator sederhana int main(int argc, char const *argv[]) { startCalc(); return 0; ...
[ "randynetworks@gmail.com" ]
randynetworks@gmail.com
d01500ed985f64e6ad4ad184b90d0e2e93364592
e9d7c12a55dae228bc2c9f1b1819f062cddb3430
/k-ahci.hh
29f0ba5d8469968801684f2d13754a8cd5862baa
[]
no_license
NoorEMobeen/chickadee
33b495e591523036386454afa8da982dcf3953fe
362beaeae5e9e00a10597dcd36c823c2f2259d1e
refs/heads/master
2020-08-06T12:56:12.149657
2019-05-05T17:36:12
2019-05-05T17:36:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,196
hh
#ifndef CHICKADEE_K_AHCI_HH #define CHICKADEE_K_AHCI_HH #include "kernel.hh" #include "k-wait.hh" // achistate: communication with modern SATA disks struct ahcistate { // interesting IDE commands // Specification: "ATA/ATAPI Command Set" for ATA-8 enum idecommand { cmd_identify_device = 0xEC, ...
[ "ekohler@gmail.com" ]
ekohler@gmail.com
dc28b7c00d60e61742c4ba6ec82fc2628c61b012
37b7f418beb3c37c273d9c60add94b7dc83fe0ac
/NeoML/src/Dnn/Layers/BinaryCrossEntropyLayer.cpp
41f28172abca8d8967e5118763a8850799279016
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause", "LicenseRef-scancode-generic-cla", "NCSA", "MIT", "LicenseRef-scancode-protobuf", "LicenseRef-scancode-arm-llvm-sga", "Intel", "LLVM-exception" ]
permissive
MTETERIN/neoml
d7ad604acdf9f5bc012e3d01461ebd650c7c0121
0a69f76507c194de092b82ed28bc55187cc8573b
refs/heads/master
2022-12-11T18:15:23.312458
2020-09-03T15:11:42
2020-09-03T15:11:42
272,790,129
0
0
NOASSERTION
2020-09-03T15:11:43
2020-06-16T19:03:41
null
UTF-8
C++
false
false
6,262
cpp
/* Copyright © 2017-2020 ABBYY Production LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing...
[ "buildtech@abbyy.com" ]
buildtech@abbyy.com
a2f2381089a7d9b9465fcaef40e21bb1b35f3945
b1aa9ad6733efcb53d465809d5109e9174dabf04
/CCode/EngineCode/C4Types.h
0e0d64761046b521373b53758f2f305a976a5d8b
[]
no_license
dumpinfo/GameMatrixTest
d21545dbef9ade76fe092343a8362da4c8b142ca
9e4a73ad17555ddb90020c47e2486698b90e4d0d
refs/heads/master
2023-02-04T01:52:05.342214
2020-12-23T17:22:36
2020-12-23T17:22:36
323,961,033
2
0
null
null
null
null
UTF-8
C++
false
false
16,839
h
#ifndef C4Types_h #define C4Types_h //# \component Utility Library //# \prefix Utilities/ #include "C4Constants.h" #include "C4Shared.h" #include "C4Array.h" #include "C4Tree.h" #include "C4Graph.h" #include "C4Map.h" #include "C4Hash.h" #include "C4Link.h" #include "C4Rect.h" #include "C4Str...
[ "twtravel@126.com" ]
twtravel@126.com
39ba27017847feb75d267b8e7dc07a34fe07448c
e2400461ad0ee9db8a85a30c811e47d30e16e1c8
/seleniumtestcases-qa/seleniumtestcases-qa/src/main/resources/firefox/win64/firefox-sdk/include/nsIDOMSerializer.h
5872abef473cde998cd028f472db4047b936caa0
[]
no_license
pratikcactus/Insights
720a00187858bbca5b2d8cc36aee23e50c74efbc
0c3178a50d60ba4c14a07f6515a84f0ce22cdc8e
refs/heads/master
2021-01-19T14:48:56.139872
2018-01-23T07:12:47
2018-01-23T07:12:47
100,924,200
0
0
null
null
null
null
UTF-8
C++
false
false
4,265
h
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM ../../../dist/idl\nsIDOMSerializer.idl */ #ifndef __gen_nsIDOMSerializer_h__ #define __gen_nsIDOMSerializer_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define N...
[ "pratik.sidam@cactusglobal.com" ]
pratik.sidam@cactusglobal.com
69cfba894bd98e90fafb56c1bdcbd4534b7a83e4
124e8db708315c87eae0e4ee559612138ac79ce3
/Server/NetworkControler.cpp
d319719a98aead7fc9e2dd86bb2a1a2877b13d14
[]
no_license
protective/anno3112
7e2beec4a0a9892fb084d9237baf770cab655c81
8de8a12880501876d89893d9ed92d118c14ffe38
refs/heads/master
2021-01-22T23:54:32.286050
2014-09-27T20:27:59
2014-09-27T20:27:59
15,630,219
0
0
null
null
null
null
UTF-8
C++
false
false
2,992
cpp
/* * File: NetworkControler.cpp * Author: karsten * * Created on 22. februar 2014, 23:13 */ #include "NetworkControler.h" #include "Client.h" #include "Sspacebjects/SSubAble.h" #include "Commands/Processable.h" NetworkControler::NetworkControler() { pthread_mutex_init(&_clientLock ,NULL); } void Network...
[ "karstenjjakobsen@gmail.com" ]
karstenjjakobsen@gmail.com
c533a66a590a143c01c77206870bbfc6763fdc32
5d2d6a0f5f9f12756ed9a80ef4daede2e7d7a320
/includes/Drawable.hh
80c54cd2b634d3cfc98bedde6b9a88ca01fa6342
[]
no_license
z363989254/Bomberman
f1641e77cf73dbd7ef809b60dc2c943cd85d5192
46c2000ea54fb1ab946849b7589a3dc06ffb795f
refs/heads/master
2021-01-06T23:53:37.335149
2015-09-08T15:49:43
2015-09-08T15:49:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
696
hh
// // Background.hh for Bomberman in /home/magrin_j/Project/Bomberman // // Made by Jérémy Magrin // Login <magrin_j@epitech.net> // // Started on Fri Jun 7 17:11:05 2013 Jérémy Magrin // Last update Sun Jun 9 21:51:23 2013 leo chazal // #pragma once #include <Image.hpp> namespace Bomberman { class Drawab...
[ "bhullnatik@gmail.com" ]
bhullnatik@gmail.com
0b37ddd685c341ed620d21eae4aecb7d7d805731
eb5cf33b808de4f35f836cc90715be601c19144a
/Classes/AppDelegate.cpp
4b1cf5455116607b1e616caf4221d5c70edfe774
[]
no_license
kevenxiang/actual_chap06
8202f5956931a43499bb0d1d7f92e84922cdd7eb
102e07e9f37bac416af30aab1ce3c54a5ab86c0f
refs/heads/master
2020-12-03T03:45:06.698976
2017-06-29T11:08:46
2017-06-29T11:08:46
95,769,576
0
0
null
null
null
null
UTF-8
C++
false
false
4,446
cpp
#include "AppDelegate.h" #include "HelloWorldScene.h" #include "TouchOneByOneTest.hpp" #include "ContentLayer.hpp" #include "TouchPriorityTest.hpp" #include "AccelerometerTest.hpp" #include "CustomTest.hpp" // #define USE_AUDIO_ENGINE 1 // #define USE_SIMPLE_AUDIO_ENGINE 1 #if USE_AUDIO_ENGINE && USE_SIMPLE_AUDIO_ENG...
[ "1806322519@qq.com" ]
1806322519@qq.com
6fd7e86a822a3f9898da38c5754fc586ccf2fb6a
7e38fc9705e48e4a7e6a003a8c414e8c3999424b
/CELib/TlsDevice.h
285380e63b08cd42ee4260465a84ebf68ecb9041
[]
no_license
vivianng30/rainer-fabian-gui
e5118df24ed6eab51b819499e0680b804e7eb87a
2ca6f43513487fdf9a10c9354736449b300e21b5
refs/heads/master
2020-03-28T11:11:26.391374
2018-09-20T13:48:54
2018-09-20T13:48:54
148,186,875
0
0
null
null
null
null
UTF-8
C++
false
false
2,334
h
//============================================================================= //============================================================================= #ifndef __TLS_DEVICE_H__ #define __TLS_DEVICE_H__ #include <iphlpapi.h> //=======================================================================...
[ "quang.nguyen@vyaire.com" ]
quang.nguyen@vyaire.com
f3f295508045a61fbcec92b5a57e237439e37f0f
a832f88501dcc2ed2803d8d2e99c5e653c55fb86
/src/vnx_search_archive.cpp
8bf1369ea8716298972e04a1532ba0bd6bc5f5c0
[]
no_license
bucaklilar6-web/vnx-search
0b610cdb392d9887d1ef91a72acb6a73a711c85d
12fbad35f1786e02980e148615822fd0d65a3af9
refs/heads/master
2023-04-05T19:35:27.487674
2021-04-25T18:16:25
2021-04-25T18:16:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,072
cpp
/* * vnx_search_archive.cpp * * Created on: Jul 1, 2020 * Author: mad */ #include <vnx/keyvalue/Server.h> #include <vnx/search/ArchiveProxy.h> #include <vnx/search/ArchiveServer.h> #include <vnx/addons/HttpServer.h> #include <vnx/vnx.h> #include <vnx/Terminal.h> #include <vnx/Server.h> #include <vnx/Proxy....
[ "max.wittal@mwittal.de" ]
max.wittal@mwittal.de
ce080f7890f4cdf8328eb7f10738a08556a778eb
89f8073f32c5e76c36d7e3072002015a5646119f
/common files/sum of e an i.cpp
761c4ca814a042aa023bc53b787881186a5fc903
[]
no_license
PulockDas/Competitive-Programming-Algorithms
f19b8eab081e73c01b4a8ba8673c9df752ff3646
2b3774a34170f10e81ec5b3479f4a49bc138e938
refs/heads/main
2023-06-11T20:59:57.458069
2021-06-29T19:54:05
2021-06-29T19:54:05
308,912,300
0
0
null
null
null
null
UTF-8
C++
false
false
315
cpp
#include <iostream> using namespace std; main () { int n,e,ep; cin>>n; int a; for (int i=0;i<n;i++) { cin>>a; ep=a%10; a=a/10; while(a!=0) { e=a%10; a=a/10; } cout<<"Sum = "<<ep+e<<endl; } }
[ "pulock46@student.sust.edu" ]
pulock46@student.sust.edu
b92de6fa72cdfca1b915d7676fd2246bf5602eb0
5149df84d1bf0bed5ccf2feca01770e0267ebd5a
/public/vphysics_interface.h
46edafa1d614d344cf864a25de23a6c1a6eff501
[ "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-public-domain" ]
permissive
iomeone/Kisak-Strike
924185588bafe60fda198bed39f4e88ae0f2f5b3
ae0f59e7263bf0165809b2bd8a1ff52ff483ebfd
refs/heads/master
2023-02-25T20:08:52.822944
2021-02-05T09:04:58
2021-02-05T09:04:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
54,902
h
//===== Copyright � 1996-2005, Valve Corporation, All rights reserved. ======// // // Purpose: Public interfaces to vphysics DLL // // $NoKeywords: $ //===========================================================================// #ifndef VPHYSICS_INTERFACE_H #define VPHYSICS_INTERFACE_H #ifdef _WIN32 #pragma once #end...
[ "bbchallenger100@gmail.com" ]
bbchallenger100@gmail.com
2db6139b17c565f378bf89f8c625046ea2ab0ad2
753a57645d0824a750fa07176bdf7e37369940f6
/Engine/Plugins/UnrealCS/Source/MonoPlugin/Private/GeneratedScriptLibraries/LightmassPrimitiveSettingsObject.script.h
aa3dfbbe734c6832f9fd395a4e2484542f48f538
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
marynate/UnrealCS
5782c4dd1b3fe6e136dcee54ce430aabd97b70a4
de43f7e42ca037445202d59c8114fafc30e031ec
refs/heads/master
2021-01-19T13:01:35.048880
2017-02-22T02:18:33
2017-02-22T02:18:33
82,354,770
2
1
null
2017-02-18T02:17:07
2017-02-18T02:17:06
null
UTF-8
C++
false
false
351
h
#pragma once namespace UnrealEngine { class _ULightmassPrimitiveSettingsObject { static UClass* StaticClass(){return ULightmassPrimitiveSettingsObject::StaticClass();} public: static void BindFunctions() { mono_add_internal_call("UnrealEngine.ULightmassPrimitiveSettingsObject::StaticClass",(const void*)St...
[ "xg_55@126.com" ]
xg_55@126.com
5a2fecb3012ea7151f989100d27ebdf61070ac65
adf4e5bb27ab2bf5646b6b493698e03c16b38018
/Pacman/Scene.cpp
3c049699e4c16bb2da36a5b421f7fd12b83fca83
[]
no_license
Milosz503/Pacman
6102ee6860a55bdbc0592d138ef2eff4cee69357
6798079677f2c28d24f26e7fca7d7f6ff78dd929
refs/heads/master
2023-09-04T17:10:20.197381
2018-06-04T13:58:49
2018-06-04T13:58:49
429,800,431
0
0
null
null
null
null
UTF-8
C++
false
false
5,541
cpp
#include "Scene.h" #include "ConsoleWindow.h" #include "World.h" Scene::Scene(World* world) : world_(world), player_(nullptr), width_(0), height_(0) { } Scene::~Scene() { removeEntities(); removeTiles(); cleanObjects(); } void Scene::cleanObjects() { //for (int x = 0; x < tiles_.size(); ++x) //{ // fo...
[ "milosz.0518@gmail.com" ]
milosz.0518@gmail.com
a89b95d3f506f968045cbb0fe24a5b29b1e596d3
52fea6f8611737f202ae7012b413199e28e57fa4
/src/stealth.h
31f1f95cee737675b1488cd8c1893a202ed990c7
[ "MIT" ]
permissive
orestdrag/mynovacoin
dceb9f13d9777fac0a4eafa52290a8be36496bb2
1749132193870c4147211e421adb17bc0327d10b
refs/heads/master
2021-01-24T07:57:05.102009
2018-03-12T13:17:24
2018-03-12T13:17:24
122,965,981
0
0
null
null
null
null
UTF-8
C++
false
false
2,478
h
// Copyright (c) 2014 The ShadowCoin developers // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. #ifndef BCCA_STEALTH_H #define BCCA_STEALTH_H #include <stdlib.h> #include <stdio.h> #include <vector> #include <inttypes...
[ "orestdrag@gmail.com" ]
orestdrag@gmail.com
57c2b6a9edf14d14e9bcc13592f0ec19edea4866
87aba51b1f708b47d78b5c4180baf731d752e26d
/Replication/DataFileSystem/PRODUCT_SOURCE_CODE/itk/Modules/Core/Common/include/itkTorusInteriorExteriorSpatialFunction.hxx
6f63fe33f05e31967768cca9f74fc3ec264480f7
[]
no_license
jstavr/Architecture-Relation-Evaluator
12c225941e9a4942e83eb6d78f778c3cf5275363
c63c056ee6737a3d90fac628f2bc50b85c6bd0dc
refs/heads/master
2020-12-31T05:10:08.774893
2016-05-14T16:09:40
2016-05-14T16:09:40
58,766,508
0
0
null
null
null
null
UTF-8
C++
false
false
2,577
hxx
/*========================================================================= * * Copyright Insight Software Consortium * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * ...
[ "jstavr2@gmail.com" ]
jstavr2@gmail.com
58e9ac31ff123567f234c44d22f284f63c5511f6
7ee32ddb0cdfdf1993aa4967e1045790690d7089
/Topcoder/StoneGame.cpp
5d1062ea32a6382e076e8504785f56af572fc0e2
[]
no_license
ajimenezh/Programing-Contests
b9b91c31814875fd5544d63d7365b3fc20abd354
ad47d1f38b780de46997f16fbaa3338c9aca0e1a
refs/heads/master
2020-12-24T14:56:14.154367
2017-10-16T21:05:01
2017-10-16T21:05:01
11,746,917
1
2
null
null
null
null
UTF-8
C++
false
false
6,006
cpp
#include <iostream> #include <sstream> #include <vector> #include <string.h> #include <algorithm> #include <utility> #include <set> #include <map> #include <deque> #include <queue> #include <cmath> #include <cstdlib> #include <ctime> #include <cstdio> #include <stdio.h> using namespace std; #define rep(it,s) for(__ty...
[ "alejandrojh90@gmail.com" ]
alejandrojh90@gmail.com
d0d5a0e7042d6db287c00053a89fd485dca007a3
bdff7e2a59e5b266f82b7ab34ac4f44a00413adb
/Parallel-Computing-Class/HW2/timeBomb.cpp
6b8cd981ee61ded104dd604f9353c4363e511c5c
[]
no_license
BrighamM/Course-Work-Archive
256ffcabce672e8f7a09c7d2cc67b4b0f4e9b096
2e92872e36b86425f1d52b835f277a28772b2763
refs/heads/master
2023-06-23T14:50:26.685535
2021-05-15T22:25:07
2021-05-15T22:25:07
119,736,675
0
0
null
null
null
null
UTF-8
C++
false
false
3,200
cpp
#include <iostream> #include <stdlib.h> #include <stdio.h> #include <time.h> #include <mpi.h> #define MCW MPI_COMM_WORLD using namespace std; int main(int argc, char **argv){ int rank; int size; int eliminatedProcess = -1; srand(time(0)); int bombTimer=rand()%20 + 1; MPI_Init(&argc, &argv); ...
[ "brigham.michaelis@gmail.com" ]
brigham.michaelis@gmail.com
b9ca5b9fc60d6f560cde434383d7640aaa5e9120
7d39413b4d6e99369519db7772f010dce95e79ed
/cpp/test/shared_from_this_test.h
14a55d55447071233fe80aad7ccde4ba0a5afd05
[]
no_license
wangjiaming0909/al
62a890cae0c1b753eccf14eec770adfb71fa8957
2b40372edfc9dcde1a379e97175f006c3c53f557
refs/heads/master
2023-04-20T22:45:11.799670
2023-04-15T09:52:44
2023-04-15T09:52:44
145,864,078
0
0
null
2022-12-08T01:36:19
2018-08-23T14:20:01
HTML
UTF-8
C++
false
false
1,102
h
#pragma once #include <boost\enable_shared_from_this.hpp> #include <string> using namespace boost; class class_without_default_constructor { public: class_without_default_constructor(int a) : a_(a){} private: int a_; }; class share_from_me : public enable_shared_from_this<share_from_me>{ public: fr...
[ "JWang284@slb.com" ]
JWang284@slb.com
1d23406f4ef0aca27c24878df7c83170b3b097e3
71c3c165a803b85964a07b6b710cf6a0e8d52195
/Technikiprogramowaniaslownik/stdafx.cpp
ea893b24a4b16e51f1b462459b88ec66a4ecde3d
[]
no_license
andrzejboni/Technikiprogramowaniaslownik
e3a20da68de6fffee07b289486f2f287f309fc0b
9ee8e688d8b46889257eba799ebda36d3a4dee33
refs/heads/master
2021-01-21T20:15:22.909416
2017-05-23T18:56:03
2017-05-23T18:56:03
92,208,777
0
0
null
null
null
null
UTF-8
C++
false
false
307
cpp
// stdafx.cpp : source file that includes just the standard includes // Technikiprogramowaniaslownik.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "andrzej.boni@outlook.com" ]
andrzej.boni@outlook.com
8307abb8017947deb399caad05d506a3d9d93921
d0a0170ff260d47a7d251216723a5e8be798544f
/day06/t01/app/src/Container.cpp
d8c691f50aa4fbe3e49d69cf31ab8092a508677a
[]
no_license
mmasniy/Maraphon-CPP-Ucode
c5d5a86c53f21b268c2b138fe3023e138dfecc4c
4611c10c342d808c3f48770058f11eced2839068
refs/heads/master
2022-12-09T23:49:07.052325
2020-08-30T16:24:08
2020-08-30T16:24:08
288,213,058
0
2
null
null
null
null
UTF-8
C++
false
false
499
cpp
#include "Container.h" Container::Container(bool isLocked, const LockpickDifficulty difficulty) : m_isLocked(isLocked), m_difficulty(difficulty){ } bool Container::isLocked() const { return m_isLocked; } LockpickDifficulty Container::lockDifficulty() const { return m_difficulty; } bool Container...
[ "masnijmaksim@gmail.com" ]
masnijmaksim@gmail.com
d45a953065c93aa6dced6cdcba661bb7ba942235
6afae5bcd6e954f76f5644669e21614e2b555e8e
/sources/terminal.h
cd8222f3e186034f91d9bee62afe7562663a10b5
[]
no_license
intelfx/pulse-dispatcher
cdfc59b04acce1bd425b5cd23f7db343afe73ae9
74b7340325a1b5aec6ecdb095985174d623c8966
refs/heads/master
2021-01-20T09:32:47.580018
2014-11-23T20:11:00
2014-11-23T20:11:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
538
h
#ifndef _SOURCES_TERMINAL_H #define _SOURCES_TERMINAL_H #include <source.h> #include <options.h> class TerminalSource: public AbstractSource { channels_mask_t toggle_mode_channels_; bool toggle_; std::chrono::milliseconds pulse_width_; void toggle(); void toggle_m (channels_mask_t mask); void toggle_internal (...
[ "intelfx100@gmail.com" ]
intelfx100@gmail.com
f9f66118579705d938786bd41eafa95619c1b7c0
3ff1fe3888e34cd3576d91319bf0f08ca955940f
/pts/src/v20210728/model/Attributes.cpp
4cc530ee3a69369ea15d6d5e88e338995821f42b
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp
9f5df8220eaaf72f7eaee07b2ede94f89313651f
42a76b812b81d1b52ec6a217fafc8faa135e06ca
refs/heads/master
2023-08-30T03:22:45.269556
2023-08-30T00:45:39
2023-08-30T00:45:39
188,991,963
55
37
Apache-2.0
2023-08-17T03:13:20
2019-05-28T08:56:08
C++
UTF-8
C++
false
false
5,767
cpp
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
[ "anonymous" ]
anonymous
3103c67aa8c2614ff8627c0a6e39f6bf48b74896
70971245fb7c522dfa06e4f632b86ff2b8499528
/Source/Core/World/World.cpp
0990fe324ccead11edd4484c1556eea75e6f272d
[ "MIT" ]
permissive
Cube219/CubeEngine
f0f5afdf19ab908490f2b9981fe7baaabb1dd7c4
b54a7373be96333aa38fdf49ea32272c28c42a4b
refs/heads/master
2021-06-08T12:38:13.206138
2021-03-28T06:23:20
2021-03-28T06:23:20
102,942,324
2
0
null
null
null
null
UTF-8
C++
false
false
1,290
cpp
#include "World.h" #include "../Assertion.h" namespace cube { void World::Initialize() { } void World::Shutdown() { mWorldObjectTable.ReleaseAll(); mWorldObjects.clear(); } void World::Update(float dt) { } HWorldObject World::RegisterWorldObject(UPtr<WorldObj...
[ "max804800@gmail.com" ]
max804800@gmail.com
a5e8e0bedde0a13d9457445cb670f84bcd30b5e3
4eda5347b1915958143b53d020e43f563372d296
/第4章/Single/Single/MainFrm.cpp
1e2bfa8aafc943bb0b497438eb4817360d980424
[]
no_license
natsuki-Uzu/Windows_Program
40e4380e7d08f764051104a4bbcc99e9b4ff387c
a994ffaa3174e83a7d69f2c7015dac930312afaf
refs/heads/master
2023-04-26T15:53:39.205163
2012-07-31T06:21:23
2012-07-31T06:21:23
null
0
0
null
null
null
null
GB18030
C++
false
false
1,885
cpp
// MainFrm.cpp : CMainFrame 类的实现 // #include "stdafx.h" #include "Single.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CMainFrame IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd) BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd) ON_WM_CREATE() END_MESSAGE_MAP() static UINT indicat...
[ "Administrator@PRC-20120724DKO.(none)" ]
Administrator@PRC-20120724DKO.(none)
094a6ea26f4356631558c59111f4916d48eae4e8
8383dfe55d0ea81d9d20f8724fd9081bbf3428dd
/vendor/tensorflow_bfloat16_patch/tensorflow/core/kernels/constant_op.cc
00a784c7a9f6895bf2113a081c70e700039868b3
[ "MIT" ]
permissive
soumith/blocksparse
707f179da186e401ba4e6586c64320bd24360127
4071232a4a73a441424434ca2e81b1e4fd4e836c
refs/heads/master
2020-05-25T09:46:53.676995
2019-05-28T05:45:31
2019-05-28T05:45:31
187,745,586
5
0
MIT
2019-05-21T02:16:42
2019-05-21T02:16:42
null
UTF-8
C++
false
false
16,048
cc
/* Copyright 2015 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or a...
[ "jonas@openai.com" ]
jonas@openai.com
fc41d2b3aa56e8aebd921ddc9e0addf38ff13977
ecfa6ca72f03c60a293280108f8dcb6c0f0b7969
/Wordclock/Wordclock/Wordclock/inc/Animation/Clock/AnimationClockTeletype.h
9083ee32f38420f289a9b24f3d033e009f485c5d
[]
no_license
AndreasBur/Wordclock
0946f7b939a4883273237ab903b2eff2087b8306
376a1dd8a385d507a71fa2e67bf2a269b2068242
refs/heads/master
2022-07-19T15:08:35.074029
2022-07-09T11:41:32
2022-07-09T11:41:32
94,092,644
1
0
null
null
null
null
UTF-8
C++
false
false
5,015
h
/****************************************************************************************************************************************************** * COPYRIGHT * --------------------------------------------------------------------------------------------------------------------------------------------------- *...
[ "a.burnickl@gmail.com" ]
a.burnickl@gmail.com
e89208ef5990482965546656c6a36173c60227c2
78918391a7809832dc486f68b90455c72e95cdda
/boost_lib/boost/graph/vf2_sub_graph_iso.hpp
2eff106db658c3613347f288262a88f0efa820cc
[ "MIT" ]
permissive
kyx0r/FA_Patcher
50681e3e8bb04745bba44a71b5fd04e1004c3845
3f539686955249004b4483001a9e49e63c4856ff
refs/heads/master
2022-03-28T10:03:28.419352
2020-01-02T09:16:30
2020-01-02T09:16:30
141,066,396
2
0
null
null
null
null
UTF-8
C++
false
false
42,775
hpp
//======================================================================= // Copyright (C) 2012 Flavio De Lorenzi (fdlorenzi@gmail.com) // Copyright (C) 2013 Jakob Lykke Andersen, University of Southern Denmark (jlandersen@imada.sdu.dk) // // The algorithm implemented here is derived from original ideas by // Pasquale ...
[ "k.melekhin@gmail.com" ]
k.melekhin@gmail.com
9c938ff603321364a192d999d6d9762414a40ecd
09f3df9b4ae970025b8a422635d70287db91493b
/src/cpp/conv3x3.cpp
95ea57901c629ef350ff30cbb8aeae80ddc9af53
[ "BSD-2-Clause" ]
permissive
ikwzm/QCONV-STRIP-Ultra96
3390f07a41e91fe2d4c5552964748770c4ec2b51
38c7ae9af9de9b8d0bfdd0bee8fc49784bd4aa11
refs/heads/master
2021-07-12T21:13:31.441444
2020-08-21T00:52:38
2020-08-21T00:52:38
188,438,599
3
2
null
null
null
null
UTF-8
C++
false
false
5,819
cpp
/* Copyright 2018 The Blueoil Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agre...
[ "ichiro_k@ca2.so-net.ne.jp" ]
ichiro_k@ca2.so-net.ne.jp
b84ac7f60d6f47b91b7df1774289a0a4273dd452
3b4f1dbc4c178bccc58a10fdb6eff650b3406aa6
/Game/Money.cpp
349fbe926ec43631209ae512339a4d0c5f2d31a9
[]
no_license
LuongKimPhuong2611/supermario-master
b0c51096611700e7728e781d21c74528ca156091
ed182738d36a178f8ecb067ccd0ed5c1893173f0
refs/heads/master
2023-02-02T18:52:11.905121
2020-12-18T00:36:20
2020-12-18T00:36:20
322,201,046
0
0
null
null
null
null
UTF-8
C++
false
false
2,418
cpp
#include "Money.h" #include "Brick.h" Money::Money(float posX, float posY) { x = posX; y = posY; oldY = y; tag = EntityType::MONEY; SetState(0); //SetState(MUSHROOM_STATE_WALKING); timeDelay = 0; isDone = false; isOnTop = false; } void Money::GetBoundingBox(float& left, float& top, float& right, float& bottom...
[ "18521275@gm.uit.edu.vn" ]
18521275@gm.uit.edu.vn
7db1380d8897bf00a28d7934b2699b88f6e97f41
96f9b1d313eca3cfa731d121d072a44434cec768
/src/qt/editaddressdialog.cpp
d34001ca8ce1a463810dbbecaa8674a4f8086147
[ "MIT" ]
permissive
jjshsgsa/Bixbcoin-core
32256da6d230fa151fa6f0eb5ac2d59d72c4a62d
f4b5c57e351a9285f136a27b70760e468fa830a8
refs/heads/main
2022-12-27T03:42:02.786514
2020-10-14T18:21:58
2020-10-14T18:21:58
306,915,613
1
0
MIT
2020-10-24T15:41:25
2020-10-24T15:41:24
null
UTF-8
C++
false
false
3,948
cpp
// Copyright (c) 2011-2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "editaddressdialog.h" #include "ui_editaddressdialog.h" #include "addresstablemodel.h" #include "guiutil.h" #inclu...
[ "info@bixbcoin.com" ]
info@bixbcoin.com
f0a32a95bc4489e5010d2bcb142cf234edb61a95
27ffb44629667cb5fc2c0816f7b593a0be462af6
/Library/DXLibrary/DXLibrary/DirectX12/RootSignature/RootSignatureManager.h
6f3daad705e4f2027b86255d1afec712d708cebd
[]
no_license
Moto0116/Library
70ce9c39246781e749209eccdc358966f777abde
856bfdd8cd98e17483fc4734d36caa0189d13778
refs/heads/develop
2021-01-19T18:24:47.576756
2018-03-21T11:16:46
2018-03-21T11:16:46
81,069,617
2
0
null
2017-03-18T11:38:40
2017-02-06T09:21:07
C++
UTF-8
C++
false
false
272
h
#ifndef LIB_DX12_ROOTSIGNATUREMANAGER_H #define LIB_DX12_ROOTSIGNATUREMANAGER_H namespace Lib { namespace Dx12 { class RootSignatureManager { public: RootSignatureManager(); ~RootSignatureManager(); }; } } #endif // !LIB_DX12_ROOTSIGNATUREMANAGER_H
[ "moto01160902@gmail.com" ]
moto01160902@gmail.com
116ba7c650b99fb2c34e7d7c8c4352ca32812c55
0e40a0486826825c2c8adba9a538e16ad3efafaf
/lib/boost/include/boost/mpl/vector/aux_/push_back.hpp
b10f072b9b96c4314ef3e932b3e5ad8803944feb
[ "MIT" ]
permissive
iraqigeek/iZ3D
4c45e69a6e476ad434d5477f21f5b5eb48336727
ced8b3a4b0a152d0177f2e94008918efc76935d5
refs/heads/master
2023-05-25T19:04:06.082744
2020-12-28T03:27:55
2020-12-28T03:27:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,008
hpp
#ifndef BOOST_MPL_VECTOR_AUX_PUSH_BACK_HPP_INCLUDED #define BOOST_MPL_VECTOR_AUX_PUSH_BACK_HPP_INCLUDED // Copyright Aleksey Gurtovoy 2000-2004 // // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See htt...
[ "github@bo3b.net" ]
github@bo3b.net
05f6971ee94821cc12169a51e208a0008970d301
7fcd47097c42fcdb7acb2e10e75759e16ade518e
/binding.cc
0ed90062b6157cb68280204e3e2bee19081929b3
[ "MIT" ]
permissive
joaojeronimo/v8worker
eb1c6600ed3d9e387914a1f47e34975be3f5fb9b
e923014340b3a50023b0ea5d8452b275ed957a37
refs/heads/master
2021-01-22T00:24:05.322290
2015-03-30T13:42:41
2015-03-30T13:42:41
33,125,257
1
0
null
2015-03-30T13:39:14
2015-03-30T13:39:13
null
UTF-8
C++
false
false
6,899
cc
#include <stdio.h> #include <assert.h> #include <stdlib.h> #include <string> #include "v8.h" #include "libplatform/libplatform.h" #include "binding.h" using namespace v8; struct worker_s { int x; void* data; worker_recv_cb cb; Isolate* isolate; std::string last_exception; Persistent<Function> recv; Pers...
[ "ry@tinyclouds.org" ]
ry@tinyclouds.org
f7c1884f38483346d75894e4496b4bde7bb12bc8
d757d87bfb845a578a92afa272e24abdaf2126dd
/support.cpp
8d3961089b94f3e5378337affef267db710b3ec2
[]
no_license
astachey/cs302
b5f9637010fd2e815e034417134f32b82b0a56a6
2998ce7d2f12ce30644d2f442b345efe2eb2cde5
refs/heads/master
2020-05-20T00:40:51.130783
2014-02-06T05:13:37
2014-02-06T05:13:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,580
cpp
// header files #include <cmath> #include "support.h" using namespace std; //RGB::RGB(uchar _R = 0, uchar _G= 0, uchar _B = 0){ // R = _R; // G = _G; // B = _B; // return; //}/ // RGB::operator<() // RGB::distance() double RGB::distance(const RGB& next){ double dist = sqrt(pow((double)R - next.R, 2)) + (pow...
[ "astachey@utk.edu" ]
astachey@utk.edu
ef276fdc3383e673fb992cff9a70b85cfe1e8266
6dacb8f59751c9647685d4b931b2cbef00fcd302
/InterviewPrep/Array _ Strings/majorityElement.cpp
9e67681a83f24553bcbd6048b7e2e4fefae7ecdc
[]
no_license
sudhanshu-t/DSA
88662429514509c3a063d7610db3d32a6854c5c0
042fad26085405f77f159eb08c53555de9fb7732
refs/heads/master
2021-07-19T15:26:34.310444
2020-07-09T11:59:41
2020-07-09T11:59:41
278,350,018
0
0
null
null
null
null
UTF-8
C++
false
false
818
cpp
#include<iostream> #include<vector> using namespace std; int majorityElement(vector<int>& nums) { //Write your code here int pot = nums[0]; int count = 1; for(int i = 1; i < nums.size(); i++){ if(nums[i] != pot){ count--; if(count == 0){ count = 1; ...
[ "sudhanshu21.st@gmail.com" ]
sudhanshu21.st@gmail.com
a902a5f751ab425b27a305baedef0bcc45a338d6
0c95b0e960e0c23e47c9ff953bc60f1003158470
/calculator_controller/calculator_controller.ino
176a56ce1bed445530b7e4b96a7c31ee90fe50d4
[]
no_license
kuzlab/midi_controller_pj
f1a5805de7e56d81fa643e0c567504bf6e300ed2
92612ba747f628e92c348d85fdcfcb7be2bed343
refs/heads/master
2021-01-19T21:52:20.916078
2015-05-18T18:35:04
2015-05-18T18:35:04
33,324,099
0
0
null
null
null
null
UTF-8
C++
false
false
6,519
ino
#include "assign_map.h" #define PIN0 13 #define PIN1 14 #define PIN2 15 #define PIN3 16 #define PIN4 17 #define PIN5 18 #define PIN6 19 #define PIN7 20 #define PIN8 21 #define SW0 2 #define SW1_0 0 #define SW1_1 1 #define LOOP_DELAY 30 #define SEND_MIDI_DELAY 100 //#define _DEBUG_ //#define _COMMAND_MODE_DEBUG_ in...
[ "qzuryu@gmail.com" ]
qzuryu@gmail.com
032c598bddf5520f276318d74a5fb571923dfba1
2906f1a8466c359cada4f2f9ec31c2b24e7c524d
/MIlestone 3/Client/Pkt_Def.h
aa8648d6744ad5de1fd04a856f84351b608acc01
[]
no_license
Minashed/Robot-Controller
7ff60d96d32183f1d9cb201c2ebeeb323f2259b9
01341727aa026333c7c8945274175df1a34b81b3
refs/heads/master
2021-05-05T01:12:00.705226
2018-01-31T05:14:48
2018-01-31T05:14:48
119,632,088
0
0
null
null
null
null
UTF-8
C++
false
false
2,281
h
#ifndef PKTDEF_H #define PKTDEF_H #include <iostream> #include <iomanip> #include <stdio.h> //Globally defined variables #define FORWARD 1 #define BACKWARD 2 #define LEFT 3 #define RIGHT 4 #define UP 5 #define DOWN 6 #define OPEN 7 #define CLOSE 8 //Size of the entire header varies in size #define HEADERSIZE 6 //E...
[ "mmnashed@myseneca.ca" ]
mmnashed@myseneca.ca
64a6dc204d1c390a91084b502c0d7bfe8afb24ac
5175bd24b43d8db699341997df5fecf21cc7afc1
/libs/config/checks/std/cpp_lib_transformation_trait_aliases_14.cpp
1ce92f60a915a8bfdfc1b07dd71fe93456306bdf
[ "BSL-1.0", "LicenseRef-scancode-proprietary-license" ]
permissive
quinoacomputing/Boost
59d1dc5ce41f94bbd9575a5f5d7a05e2b0c957bf
8b552d32489ff6a236bc21a5cf2c83a2b933e8f1
refs/heads/master
2023-07-13T08:03:53.949858
2023-06-28T20:18:05
2023-06-28T20:18:05
38,334,936
0
0
BSL-1.0
2018-04-02T14:17:23
2015-06-30T21:50:37
C++
UTF-8
C++
false
false
840
cpp
// This file was automatically generated on Wed Mar 3 12:23:03 2021 // by libs/config/tools/generate.cpp // Copyright John Maddock 2002-4. // Use, modification and distribution are subject to the // Boost Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/L...
[ "apandare@lanl.gov" ]
apandare@lanl.gov
ac0c7cb82a86670c60e7f6ec3594b902109ec037
f8cdebfd3bb24190e288eda5ec66401a61e9f38d
/exercise_inschool/getLocalLessIndex/getLocalLessIndex.cpp
2e3cbdb4e90e478149f4b1a2583b7a8380fd20e0
[]
no_license
woaishixiaoxiao/algorithm
fd617d7cf8a5d65c5c14df325e99fd8a62fe4165
e9268975d08d48f3607eeb80e53ca4710b47c9cc
refs/heads/master
2020-04-23T21:23:06.390335
2019-07-21T09:38:32
2019-07-21T09:38:32
171,468,927
1
0
null
null
null
null
GB18030
C++
false
false
1,951
cpp
//定义局部最小的概念。arr长度为1时,arr[0]是局部最小。arr的长度为N(N>1)时,如果arr[0]<arr[1],那么arr[0]是局部最小; //如果arr[N-1]<arr[N-2],那么arr[N-1]是局部最小;如果0<i<N-1,既有arr[i]<arr[i-1]又有arr[i]<arr[i+1],那么arr[i]是局部最小。 //给定无序数组arr,已知arr中任意两个相邻的数都不相等,写一个函数,只需返回arr中任意一个局部最小出现的位置即可。 //解释下为什么第二个数比第一个数小,最后一个数比倒数第二个大,那么就一定会有一个局部最小值 //因为相邻的两个是不相等的,所以相邻三个数的关系,就有这么几种情...
[ "823124073@qq.com" ]
823124073@qq.com
624b678d5e90f9a795c3bfa86e8a809f15a9a0c4
c49a1113fd445046e126a1e38cc16044e9e6fa03
/zhouqi/source/OJ.cpp
337d6a5f3fa8077273a9f24887a61aa33b60331a
[]
no_license
VicoandMe/HW
276a8c289fab17e24afbb7a309a265c393ccd407
6900fbaf97761d2c5b7c4d92f976a5c70920f99e
refs/heads/master
2021-01-10T15:26:04.342717
2016-02-02T07:04:31
2016-02-02T07:04:31
50,571,071
0
0
null
null
null
null
GB18030
C++
false
false
739
cpp
#include "OJ.h" #include <string.h> //#include <stdio.h> /* 功能:计算字符串的最小周期。 原型: int GetMinPeriod(char *string); 输入参数: char * string:字符串。 返回值: int 字符串最小周期。 */ int GetMinPeriod(char *inputstring) { int length = strlen(inputstring); for (int i = 1; i < length;i++) { bool ...
[ "li362927450@gmail.com" ]
li362927450@gmail.com
81007cfbf3ec7f5e773a72fe7b1b1a5a8ea48168
25b36236d90aa38deb0e28db06f5f5ee5264d931
/NPLib/Core/NPInputParser.h
0791fe5c74a8c47f83b8bfd0390d79066d4dbc61
[]
no_license
adrien-matta/nptool
54b5ea6fe2d8c226e7422a948d3ecc94d62d1ff2
415ad50066f715ca1de312da1202201f9381e87e
refs/heads/NPTool.2.dev
2021-04-18T23:52:44.645407
2019-09-02T12:38:49
2019-09-02T12:38:49
13,268,020
36
20
null
2016-12-05T11:46:35
2013-10-02T10:11:22
C++
UTF-8
C++
false
false
4,562
h
#ifndef NPINPUTPARSER #define NPINPUTPARSER /***************************************************************************** * Copyright (C) 2009-2016 this file is part of the NPTool Project * * * * For the licensing terms see $NPTOOL/...
[ "matta@lpccaen.in2p3.fr" ]
matta@lpccaen.in2p3.fr
4137e85f25a7e3f48a920606316533af6176a890
15b85084ba3a2d9833de12bfc3ba5d8fbca6fed7
/test.cpp
b22bed4a89814f5ad5327dd2f6b1eb7587a5701a
[]
no_license
kryczko/water_simulation_data
52f5d81580f0a4fca71fa701be3f1ec272c6b77b
47e1e98545df69efcec56419c1409195f6fd987a
refs/heads/master
2016-09-03T07:28:44.740603
2013-09-29T20:00:36
2013-09-29T20:00:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
209
cpp
#include <iostream> #include <vector> using namespace std; int main() { vector <int> array; int j = 7; array[0].push_back(j); array[1].push_back(j); cout << array[0][0] << array[1][0] << endl; return 0; }
[ "kevinryczko@me.com" ]
kevinryczko@me.com
584ef20053e71b2c35bb71683823364f4530998b
0f7a4119185aff6f48907e8a5b2666d91a47c56b
/sstd_utility/windows_boost/boost/interprocess/sync/shm/named_condition_any.hpp
a6fb7baff67d5d57e202696cddb8a65bc2de84b4
[]
no_license
jixhua/QQmlQuickBook
6636c77e9553a86f09cd59a2e89a83eaa9f153b6
782799ec3426291be0b0a2e37dc3e209006f0415
refs/heads/master
2021-09-28T13:02:48.880908
2018-11-17T10:43:47
2018-11-17T10:43:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,511
hpp
////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2005-2012. Distributed under the Boost // Software License, Version 1.0. (See accompanying file // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/interp...
[ "nanguazhude@vip.qq.com" ]
nanguazhude@vip.qq.com
9b63b4da7f2128aae31f22d53696933b3cdcf8f4
077e2cb43a4435e6bad1db626ccfbec18bd0b3a8
/R1/Week2/xymodn.cpp
a9c7e07eb62cfefadef2ce993dae1c91a0ee3c31
[]
no_license
peter0749/581_Homeworks
e57a4bdac33275c6617286d87009744b94b9be87
f9394c8a71f4eb5991b78f22f4126dc1da94f46e
refs/heads/master
2021-01-18T18:42:21.000721
2017-03-25T07:09:02
2017-03-25T07:09:02
52,514,761
0
0
null
null
null
null
UTF-8
C++
false
false
815
cpp
#include <iostream> #include <iomanip> #include <string> #define MAX 100001 using namespace std; int digit[MAX] = {0}; int book[MAX] = {0}; int modN(int x,long long int y, int N) { long long int i, base(1); if(x==0) return 0; if(y==0) return 1; //getch();cout<<"ok"<<endl; for(i=0;i<N;i++) ...
[ "jengku@gmail.com" ]
jengku@gmail.com
ab7f4348b6906422cdcef8a1fc604842a1d25105
ef9a782df42136ec09485cbdbfa8a56512c32530
/branches/Chickens/src/building/storage.h
ac4584fe42ca340bcdc0df10f60b5f0de55068b3
[]
no_license
penghuz/main
c24ca5f2bf13b8cc1f483778e72ff6432577c83b
26d9398309eeacbf24e3c5affbfb597be1cc8cd4
refs/heads/master
2020-04-22T15:59:50.432329
2017-11-23T10:30:22
2017-11-23T10:30:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,866
h
/****************************************************************************\ $URL$ $LastChangedDate$ $LastChangedRevision$ $LastChangedBy$ \****************************************************************************/ //!Basic storage class /*!Basic storage class. Should not be instanced except in inherited form...
[ "sai@agro.au.dk" ]
sai@agro.au.dk
48907d779a89ed7c748a9d4ff41c98ed4f0ba65d
60c275f5670d8a509421dbe53a704cdf85289035
/CodeForces/1452B_Toy_Blocks/B_Toy_Blocks.cpp
e50ef640939c244363943ff72f0e25926d8cb409
[ "MIT" ]
permissive
Cutyroach/Solve_Algorithms
f02f03c5ad146550b136e19292a3599b2eff6702
97d9f8bb65055fe5ad62d108a9359b91f0f40c49
refs/heads/master
2023-03-02T21:27:03.214056
2021-02-09T23:58:47
2021-02-09T23:58:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
693
cpp
#include <bits/stdc++.h> using namespace std; int main() { // freopen("input.txt", "r", stdin); ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); int t; for (cin >> t; t--; ) { int tc; cin >> tc; vector<long long> v(tc); long long max_v = 0, sum = 0; ...
[ "spe0678@gmail.com" ]
spe0678@gmail.com
e5d0a06a5f82cbd114f9c3bf94f4e206560eb637
a11d6802ccb326a4fdcdd32cda309763f732e4d8
/libs/agg23/include/agg_conv_unclose_polygon.h
a92fa45d096245bd3bd45e8f01bd67a398e3affc
[ "LicenseRef-scancode-boost-original" ]
permissive
martindafonte/eosim-fing2014
f14ab03891e4e315a657c9f94f9dcb92b3c43557
9cb9fa777d91b1b90d0c7af4c942b68ab16593b9
refs/heads/master
2021-01-01T20:42:35.068696
2014-11-17T02:04:11
2014-11-17T02:04:11
42,748,038
0
0
null
null
null
null
UTF-8
C++
false
false
1,757
h
//---------------------------------------------------------------------------- // Anti-Grain Geometry - Version 2.3 // Copyright (C) 2002-2005 Maxim Shemanarev (http://www.antigrain.com) // // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears i...
[ "martindafonte@gmail.com" ]
martindafonte@gmail.com
ce1b5a66e31a227f43329fbd78b19bc8ceef6460
b32200d629373216e32fb3423d7c8b3f1d28938d
/RetroSnaker_Colourso/RetroSnaker_0.3/贪吃蛇第三版/Snake.cpp
431a0e706fec50625c671c5517b70eeecfb10bc0
[]
no_license
Colourso/Simple-CPP-project-by-Colourso
3a655cf238960ffad85e338ae63e3270e0fe7e0d
36e22c6ec851bc695bd03c5939695e4afbbc0f39
refs/heads/master
2022-11-23T22:11:50.381102
2020-08-05T04:00:25
2020-08-05T04:00:25
268,247,781
1
1
null
null
null
null
GB18030
C++
false
false
4,176
cpp
#include "Snake.h" #include <stdio.h> #include <ctime> #include <graphics.h> Snake::Snake() { Point pos0(210, 230); Point pos1(190, 230); Point pos2(170, 230); this->m_snakelist.push_back(pos0); this->m_snakelist.push_back(pos1); this->m_snakelist.push_back(pos2); this->m_direction = Dir::DIR_RIGHT; this->m_...
[ "colourso@outlook.com" ]
colourso@outlook.com
48b34cb562f9847543db971846a85f3646ff984d
1e1b3f702bdf6c0544ae27a321c8ebe605434ee4
/Chapter13/Sample304/UDPSever/StdAfx.cpp
99b68b873f69041b2bf35eadaa8c10b1bcea4c53
[]
no_license
Aque1228556367/Visual_Cpp_By_Example
63e3d67e734b7d95385a329e4a1641e7b1727084
41f903d8c9938e7800d89fcff31b182bfc1c4f45
refs/heads/master
2021-03-12T20:36:56.780300
2015-05-08T02:05:46
2015-05-08T02:05:46
35,171,152
2
2
null
null
null
null
UTF-8
C++
false
false
202
cpp
// stdafx.cpp : source file that includes just the standard includes // UDPSever.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h"
[ "1228556367@qq.com" ]
1228556367@qq.com
c3c04ba93b620c5ee1a080a1be76fe09275e800f
38616fa53a78f61d866ad4f2d3251ef471366229
/3rdparty/RobustGNSS/gtsam/gtsam/3rdparty/GeographicLib/dotnet/examples/ManagedCPP/example-TransverseMercatorExact.cpp
2f41fa616f3b1d2221448963adf5cf677c87da2e
[ "BSD-3-Clause", "LGPL-2.1-only", "MPL-2.0", "LGPL-2.0-or-later", "BSD-2-Clause", "MIT" ]
permissive
wuyou33/Enabling-Robust-State-Estimation-through-Measurement-Error-Covariance-Adaptation
3b467fa6d3f34cabbd5ee59596ac1950aabf2522
2f1ff054b7c5059da80bb3b2f80c05861a02cc36
refs/heads/master
2020-06-08T12:42:31.977541
2019-06-10T15:04:33
2019-06-10T15:04:33
193,229,646
1
0
MIT
2019-06-22T12:07:29
2019-06-22T12:07:29
null
UTF-8
C++
false
false
940
cpp
using namespace System; using namespace NETGeographicLib; int main(array<System::String ^> ^/*args*/) { try { TransverseMercatorExact^ proj = gcnew TransverseMercatorExact(); // WGS84 double lon0 = -75; // Central meridian for UTM zone 18 { // Sample forward calculation...
[ "rwatso12@gmail.com" ]
rwatso12@gmail.com
65c445a87703e13176476f3745d2004fb7ce7560
3624cb3da18011d62c2d4ddba35b26b1e9520e1f
/record.cpp
4c212966baa46eeb4bca9fe95e82210b35a880da
[]
no_license
zRrrGet/qbook
76841e67ab08c99e338071ce5e2c6868f0098f1b
832f8c1a1e137473c5a6801274942bb217e7d7cf
refs/heads/master
2023-03-21T10:49:33.381765
2021-03-12T11:26:00
2021-03-12T11:26:00
337,120,378
0
0
null
null
null
null
UTF-8
C++
false
false
831
cpp
#include "record.h" Record::Record(QString name, int num, QDate date, QTime startTime, QTime endTime) : userName(name), num(num), date(date), startTime(startTime), endTime(endTime) { } QString Record::getUserName() const { return userName; } void Record::setUserName(const QString &value) { userName = va...
[ "misha02.00@mail.ru" ]
misha02.00@mail.ru
ea2bacf2e21728a4e0721f2e796d6df6b700b1e6
36cfac858d066576aa77a26e3040c4d4e66d0097
/lab03/src/main.cpp
05fe348326039ad32a697440afa1b630756ba3e9
[]
no_license
Kotyarich/Algorithm-analysis
3eff8a91c739a33e7a0cf58b36165c9de92f3957
4c8d72c0e6683e25af379f55ba86149c1f415cc4
refs/heads/master
2020-08-13T04:38:38.719464
2020-01-26T23:39:03
2020-01-26T23:39:03
214,907,280
0
0
null
null
null
null
UTF-8
C++
false
false
2,190
cpp
#include <functional> #include <ctime> #include <iomanip> #include <iostream> #include <random> #include "sorts.h" using array = std::vector<double>; double check_time(const std::function<void()> &f) { int n = 5; clock_t start = clock(); for (int i = 0; i < n; i++) { f(); } clock_t end = c...
[ "ndkotov@gmail.com" ]
ndkotov@gmail.com
f392e806ea3cf53d469b3320dbea1fd8fa61d625
db65b946860b5d6168f641bf49d177384410b61b
/src/colorChannel.h
9b8e051f368da0bd8466304385f422717b38957f
[]
no_license
jhpoelen/ofPooks
eb63b3f2cd45b7c2d69aef3b3870a4276bf76590
2163da93fac5c415a0b5cabe9d8c166aedb74c46
refs/heads/master
2021-01-22T11:55:58.680795
2020-11-01T03:16:59
2020-11-01T03:16:59
3,616,835
0
0
null
null
null
null
UTF-8
C++
false
false
255
h
#pragma once #include "ofMain.h" const int MAX_COLORS = 8; class ColorChannel { public: virtual ofColor nextColor(); virtual void loadColors(); virtual ofColor selectColor(int colorIndex); private: ofColor colors[MAX_COLORS]; };
[ "jhpoelen@gmail.com" ]
jhpoelen@gmail.com
475a6d9898821b03d48ee481270dd1e16251a38b
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/rsync/gumtree/rsync_patch_hunk_939.cpp
6f0fdfd187017b4ac37a51e7e0af055c85d0c226
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
839
cpp
* @return a socket which is attached to a subprocess running * "prog". stdin and stdout are attached. stderr is left attached to * the original stderr **/ int sock_exec(const char *prog) { + pid_t pid; int fd[2]; if (socketpair_tcp(fd) != 0) { rsyserr(FERROR, errno, "socketpair_tcp failed"); retur...
[ "993273596@qq.com" ]
993273596@qq.com
bb9eadca4492ac8a7313922886ed09db34579457
b6607ecc11e389cc56ee4966293de9e2e0aca491
/acm.kbtu.kz/KBTU OPEN/2014 Fall/E/copy.cpp
52bab8f8ac9e4aec776f71e2bad3fa66131c910f
[]
no_license
BekzhanKassenov/olymp
ec31cefee36d2afe40eeead5c2c516f9bf92e66d
e3013095a4f88fb614abb8ac9ba532c5e955a32e
refs/heads/master
2022-09-21T10:07:10.232514
2021-11-01T16:40:24
2021-11-01T16:40:24
39,900,971
5
0
null
null
null
null
UTF-8
C++
false
false
1,971
cpp
/**************************************** ** Solution by NU #2 ** ****************************************/ #include <bits/stdc++.h> using namespace std; #define F first #define S second #define MP make_pair #define all(x) (x).begin(), (x).end() #define File "growingtree" typedef long long ll; typ...
[ "bekzhan.kassenov@nu.edu.kz" ]
bekzhan.kassenov@nu.edu.kz
36cf3f31186671af260d124cf59cb08fcb5ef0ae
2d01e812589588edcaeb7d8c1802f3ee7aa17909
/GamePage/p2phash/seed.cpp
b0be8d3be88899ae4b78ab93af9fde9d412312d4
[]
no_license
N2oBeef/vc_scan
0c7b2e7f646e504aa4e14e2f53721ee8df7b6cf5
e249381fd25ce1d63c10039cf27e0f5cfa5cf440
refs/heads/master
2020-12-29T00:25:38.652076
2016-04-13T22:22:44
2016-04-13T22:22:49
56,185,892
2
0
null
null
null
null
GB18030
C++
false
false
21,567
cpp
/************************************************************** * FileName : seed.cpp * Description : * Version : 1.0 * Author : chenmingxiang * History : 1. 2009-11-17 Create this file. ***************************...
[ "460955584@qq.com" ]
460955584@qq.com
7d2f25de0cc6fe25e05f63269e71fa0b7c4b70ae
92793f5f381d7b85be8e101d1fb68f3e0e4c17b0
/example/testApp.cpp
de5d3ce1d71256c0e16bcfdb3a005ae4511f152e
[]
no_license
martinbabbels/ofxOMCS
b81c935eaf69ae325615d895c6760bb471b68728
5578a42c98e14855acf5c972b63f273bd3783287
refs/heads/master
2020-04-19T15:48:56.605805
2011-12-26T11:56:02
2011-12-26T11:56:02
2,077,631
1
0
null
null
null
null
UTF-8
C++
false
false
4,993
cpp
#include "testApp.h" //-------------------------------------------------------------- void testApp::setup(){ ofSetFrameRate(60); // Load the predicates omcsnet.loadPredicates(ofToDataPath("predicates.dat")); } //-------------------------------------------------------------- void testApp::update(){ } //---------...
[ "martin@apollomedia.nl" ]
martin@apollomedia.nl
9159ae0cce2025921a4f32141fdc20870172a76a
81302ee42c1b3c25ce1566d70a782ab5525c7892
/daq/TDC/TDC Software/xerawdp-0.3.3_alpha04_test_tdc/src/XmlConfig.cpp
a9096f978cdadf4eedc3bf385570dc66bdcc3925
[]
no_license
mdanthony17/neriX
5dd8ce673cd340888d3d5e4d992f7296702c6407
2c4ddbb0b64e7ca54f30333ba4fb8f601bbcc32e
refs/heads/master
2020-04-04T06:01:25.200835
2018-06-05T00:37:08
2018-06-05T00:46:11
49,095,961
0
0
null
null
null
null
UTF-8
C++
false
false
54,611
cpp
#include "XmlConfig.h" #include <iostream> #include <sstream> #include <fstream> #include <algorithm> #include <libxml++/libxml++.h> using std::string; using std::stringstream; using std::ostringstream; using std::vector; using std::map; using std::cout; using std::endl; using std::ifstream; using std::min; using std...
[ "mda2149@columbia.edu" ]
mda2149@columbia.edu
d07c0a84586a280b00d8df32660d3e7201cd139f
f862edafff99a383ab7b85f34cc7a060de320922
/core/depthmap.h
64d72eee2ad025575c524d64a4e6bf256962d0ed
[]
no_license
FivestWu/ImageBasedModellingEduV1.0
51387cfdd654108d118b1f883464beb1dc77e37f
ef0f9f086ce641bafb30fb19a1c3ce90ca10a9fe
refs/heads/master
2020-04-04T10:05:06.454977
2019-03-13T08:04:57
2019-03-13T08:04:57
155,842,300
0
0
null
2018-11-02T09:17:48
2018-11-02T09:17:47
null
UTF-8
C++
false
false
6,575
h
/* * Copyright (C) 2015, Simon Fuhrmann * TU Darmstadt - Graphics, Capture and Massively Parallel Computing * All rights reserved. * * This software may be modified and distributed under the terms * of the BSD 3-Clause license. See the LICENSE.txt file for details. */ #ifndef MVE_DEPTHMAP_HEADER #define MVE_DEP...
[ "wsui@nl.pr.ia.ac.cn" ]
wsui@nl.pr.ia.ac.cn
2e857525ec729de02671ef02df0d92152b8240a2
ee5c13e2219d5b5196f779074c972c230a778e0d
/DP/fib.cpp
42993c032021076da3c9fc3074f8e295f5f7d337
[]
no_license
Malay-Acharya/CPP
2b27f2f6557ad27036a41c9280f716fa0cfae05a
48bfa883720b832688e2b387a114b90fa69a7b88
refs/heads/master
2023-06-29T09:50:49.902474
2021-08-02T11:36:02
2021-08-02T11:36:02
391,924,846
0
0
null
null
null
null
UTF-8
C++
false
false
316
cpp
#include <iostream> #define int long long using namespace std; const int N = 1e5; int dp[N] = {0}; int fib(int n) { if(n==0) return 0; if(n==1 || n==2) return 1; if(dp[n]!=0) return dp[n]; dp[n] = fib(n-1) + fib(n-2); return dp[n]; } signed main() { int n; cin >> n; cout<<fib(n)<<endl; }
[ "malayacharya21@gmail.com" ]
malayacharya21@gmail.com
d4f476118e01ebfc2197b656538e071111bbb5ed
be3167504c0e32d7708e7d13725c2dbc9232f2cb
/mameppk/src/osd/sdl/osdsdl.h
61136a6680b38e6e93c02684c85a89b5f7dcbd4f
[]
no_license
sysfce2/MAME-Plus-Plus-Kaillera
83b52085dda65045d9f5e8a0b6f3977d75179e78
9692743849af5a808e217470abc46e813c9068a5
refs/heads/master
2023-08-10T06:12:47.451039
2016-08-01T09:44:21
2016-08-01T09:44:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,063
h
// license:BSD-3-Clause // copyright-holders:Olivier Galibert, R. Belmont #ifndef _osdsdl_h_ #define _osdsdl_h_ #include "sdlinc.h" #include "watchdog.h" #include "clifront.h" #include "modules/lib/osdobj_common.h" #include "modules/osdmodule.h" #include "modules/font/font_module.h" //==================...
[ "mameppk@199a702f-54f1-4ac0-8451-560dfe28270b" ]
mameppk@199a702f-54f1-4ac0-8451-560dfe28270b
ed878a123ed7de3787f8817c4e04db6368d7d043
0a1fb9fcfcbff0482dbbb4094d0ef00a3ccc6b05
/SoundBoard/SoundBoard/SoundButtonGroup.cpp
6f7df74968d52bbb4bc72851e1d5e49ca3161481
[ "LicenseRef-scancode-other-permissive", "LicenseRef-scancode-unknown-license-reference" ]
permissive
honky/SoftwareProjektTUBAF2013
4bd9f844e29d417059a8b4886afa8d233bb45200
1687ba77fa417fde7aa36477da4070bf9d3efa8d
refs/heads/master
2021-01-22T23:26:02.752793
2014-01-10T15:35:17
2014-01-10T15:35:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
623
cpp
#include "StdAfx.h" #include "SoundButtonGroup.h" namespace SoundBoard { SoundButtonGroup::SoundButtonGroup(String^ name) { this->name = name; this->Text = System::IO::Path::GetFileName(name); this->buttons = gcnew List<SoundButton^>(); this->Anchor = Windows::Forms::AnchorStyles::Right; this->flPanel =...
[ "plotterhairy@googlemail.com" ]
plotterhairy@googlemail.com
14e79e4cf861dd7412ad71586386eacd4e80a20f
b99f7ba8dbe2c6a43edf510066c76df0d4980b60
/Maths3D/Sommet.hpp
84840b3379d11831b5e67275a2d19377f9af7f72
[]
no_license
anthonybazelle/VoronoiAndDelaunay
860900d38a79c0b726fc8cbc892c84546984b746
98cb9efa27af3c107a9f634b6e0737def0519c8b
refs/heads/master
2021-08-28T15:18:43.050791
2017-12-12T15:20:25
2017-12-12T15:20:25
111,926,526
0
0
null
null
null
null
UTF-8
C++
false
false
824
hpp
#include "Cote.hpp" class Sommet { // each point connected to edges private: Point point; std::vector<Cote*> * edgesConnected; Couleur color; public: Sommet() { edgesConnected = new std::vector<Cote*>(); } Sommet(Point p) { point = p; edgesConnected = new std::vector<Cote*>(); } Sommet(Couleur c, Po...
[ "pourrier789@gmail.com" ]
pourrier789@gmail.com
752c20ba2f29905548f6f1a935dfbbe14986d34d
505446850988c792bc5d13bc0252b4a74c5eb7a3
/p1.cpp
3cce7f39f15720f47f8701e87ffe5cb2a6cfaca3
[]
no_license
CED-9/Temp
c67691b7a06b2f46aecb7aae8fa7ff62ea9a1638
3a49433ebbeaa50a1e6976009c17a6c1c1a01630
refs/heads/master
2018-12-29T20:44:02.870165
2015-01-17T04:07:35
2015-01-17T04:07:35
29,379,263
0
0
null
null
null
null
UTF-8
C++
false
false
1,522
cpp
#include <iostream> #include"thread.h" #include<vector> #include<ifstream> #include<string> using namespace std; struct Requester{ int id; string name; }; mutex mutex1; //cv cv1; vector <int> done; // global variable; shared between the all threads. //vector <Requester> rqs; vector <int> waitQueue; void sentRq(...
[ "liujm@umich.edu" ]
liujm@umich.edu
2b7804a1324a969f005552394f8167f5320aff47
ab1c643f224197ca8c44ebd562953f0984df321e
/wmi/wbem/providers/snmpprovider/provider/instclas/include/clasprov.h
4b3e2af7e419f8a7f31d1786fe11382193054b60
[]
no_license
KernelPanic-OpenSource/Win2K3_NT_admin
e162e0452fb2067f0675745f2273d5c569798709
d36e522f16bd866384bec440517f954a1a5c4a4d
refs/heads/master
2023-04-12T13:25:45.807158
2021-04-13T16:33:59
2021-04-13T16:33:59
357,613,696
0
1
null
null
null
null
UTF-8
C++
false
false
9,901
h
//*************************************************************************** // // PropertyProvider.H // // Module: Sample Mini Server for Ole MS // // Purpose: Genral purpose include file. // // Copyright (c) 1996-2001 Microsoft Corporation, All Rights Reserved // //***************************************...
[ "polarisdp@gmail.com" ]
polarisdp@gmail.com
1f092df0d49d197f47eda874f303cb040813fa2c
9088eb860e84d53f22e639a5af1dd71f45859ab1
/_Binary_Search_tress/3. Delete.cpp
a80eb8c8485a24b84d372c31ea8119f6a639e408
[]
no_license
kritika2611/Algorithms-and-Datastructures
e6c547e5a1228401f73bb25a629779215bfdf2df
71b3361cb9d106d72629402e6cb66f70e96da75a
refs/heads/master
2023-01-11T04:20:22.582800
2020-10-23T16:22:23
2020-10-23T16:22:23
292,896,359
0
0
null
null
null
null
UTF-8
C++
false
false
2,077
cpp
//INPUT: 8 5 15 4 7 13 3 5 6 11 14 9 12 -1 #include <bits/stdc++.h> using namespace std; class node{ public: int data; node* left; node* right; node(int d){ this->data=d; this->left=NULL; this->right=NULL; } }; node* insert_(node* root, int d){ if(root==NULL){ node *n=new node(d); ...
[ "sainikritika46@gmail.com" ]
sainikritika46@gmail.com
2322795c69447304f98a125f432021f19d987086
7277d930b74618a0e09a5f5c345c0237bc092bb0
/VirtualContest/20200521/abc137/c/main.cpp
914fec8dd98e34bd856fa0df8309e1f242f6d451
[]
no_license
fhiroki/atcoder
78bccbdc10e2ca94543c965cc53874c2e99f32af
aaf50382f3c4008cd48183a06f480a103c623a7b
refs/heads/master
2022-03-13T04:21:16.570731
2022-02-13T01:20:33
2022-02-13T01:20:33
245,597,349
0
0
null
null
null
null
UTF-8
C++
false
false
403
cpp
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < n; i++) typedef long long ll; using namespace std; int main() { int n; cin >> n; map<string, ll> a; rep(i, n) { string s; cin >> s; sort(s.begin(), s.end()); a[s]++; } ll ans = 0; for (auto c : ...
[ "hiroki976@gmail.com" ]
hiroki976@gmail.com
9865fb4ad93619d6b79d50d2c68ec9332a49f99b
f960d194a3f837194b96f6fde779ecefdc164155
/SampleIME/FunctionProviderSink.cpp
d3e68a32dc23d6d3452586ec45e724aefceed0ec
[]
no_license
jackfnx/NaiveIME
c2cc0a5a67878cbc42cd292f25e9e4e25d0a9a52
d5688d142790c98c888bf7fc610f0b27a9b1afed
refs/heads/master
2020-11-29T01:41:31.230984
2019-12-24T17:38:44
2019-12-24T17:38:44
229,980,720
0
0
null
null
null
null
UTF-8
C++
false
false
1,902
cpp
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved #include "Private.h"...
[ "sixue@bbs.ustc.edu.cn" ]
sixue@bbs.ustc.edu.cn
56cf9ce31a329955e8339d06ad640b15845724f6
a551c17a46705a0dbfe2c2e284bc1ae2dcd1a8bb
/iwds/iwds/jni/src/include/smartsense/sensormanager.h
c856cfb5245a5eb16f91e720c2573db4d800d8db
[]
no_license
liaokesen168/slpt
60b18542653a67c4149520aad9e3649d8a5f2154
cdc874c15e762f8cdd2f8288b7166a30f6495109
refs/heads/master
2021-01-01T05:19:51.079608
2016-04-15T08:32:10
2016-04-15T08:32:10
56,303,858
2
0
null
null
null
null
UTF-8
C++
false
false
2,085
h
/* * Copyright (C) 2014 Ingenic Semiconductor * * SunWenZhong(Fighter) <wenzhong.sun@ingenic.com, wanmyqawdr@126.com> * * Elf/IDWS Project * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Fo...
[ "kesen.liao@ingenic.com" ]
kesen.liao@ingenic.com
c2aa11701f92297e16b12dae3bc8e6286df777dc
36183993b144b873d4d53e7b0f0dfebedcb77730
/GameDevelopment/Game Programming Gems 6/Section1-General_Programming/1-5-BSPTechniques/code/compiler.h
0df929b4f0a432e51c187a5950263be1a61a43a3
[]
no_license
alecnunn/bookresources
b95bf62dda3eb9b0ba0fb4e56025c5c7b6d605c0
4562f6430af5afffde790c42d0f3a33176d8003b
refs/heads/master
2020-04-12T22:28:54.275703
2018-12-22T09:00:31
2018-12-22T09:00:31
162,790,540
20
14
null
null
null
null
UTF-8
C++
false
false
13,673
h
#ifndef __COMPILER_H__ #define __COMPILER_H__ #include "geometry.h" #include <list> //-------------------------------------------------------------------------------- #define NODE_EMPTY 0x0 #define NODE_SOLID 0x1 #define NODE_LEAF 0x80000000 #define N_FRONT 1 #define N_BACK 0 #define FLAG_PR...
[ "alec.nunn@gmail.com" ]
alec.nunn@gmail.com