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
e0548d1bb137295c8aac8e13d79b131eae0f8b76
b97524c7ce5e9464f870c1b07f178931a14e1807
/src/Engine/Clock/Clock.cpp
e3865c6ff4529f0bf14ca7b863a92944b2e32ec1
[]
no_license
corea1314/delirium-wars
0ee939021ade5818818ba211ef6615adb009153b
69de79f1dd76dd60324bf4154138a7dc4789547c
refs/heads/master
2021-01-10T13:18:49.179388
2013-03-17T06:29:41
2013-03-17T06:29:41
36,844,912
0
0
null
null
null
null
UTF-8
C++
false
false
1,227
cpp
#include "Clock.h" #include "Timer.h" #include "Engine/Engine.h" #include <algorithm> CClock::CClock() : m_fDeltaTime(0.0f), m_fTotalTime(0.0f) { } CClock::~CClock() { } void CClock::Connect( CEngine* in_pEngine ) { in_pEngine->Connect_OnUpdate( this, &CClock::Update ); in_pEngine->Connect_On...
[ "jimmy.beaubien@8ee7db41-403f-03ee-0b30-02c333d15193" ]
jimmy.beaubien@8ee7db41-403f-03ee-0b30-02c333d15193
3c4f7b135b8b674fb1b1f7ac7f06de390e6bd149
becdc5eaaee5e0063abe524a84e78c9c5f355032
/dqm/cscanalyzer/include/emu/dqm/cscanalyzer/ClusterLocalMax.h
15a44311d7ff97c1a8804a80a4cf673e5dbe8655
[]
no_license
slava77/emu
db6e59d6b0d694a75ebc8583d1f8c3696c8836e2
c0036c238757d4283ebdcc20ed559d7b27a980c7
refs/heads/svn-devel
2021-01-21T05:00:47.307761
2016-06-03T14:12:10
2016-06-03T14:12:10
23,416,919
1
10
null
2016-05-09T21:16:14
2014-08-28T05:51:44
C++
UTF-8
C++
false
false
243
h
#ifndef ClusterLocalMax_h #define ClusterLocalMax_h #include <TObject.h> class ClusterLocalMax { public: int Time; int Strip; ClusterLocalMax(); virtual ~ClusterLocalMax(); // ClassDef(ClusterLocalMax,1) //ClusterLocalMax }; #endif
[ "barvic@4525493e-7705-40b1-a816-d608a930855b" ]
barvic@4525493e-7705-40b1-a816-d608a930855b
2fc66d02fdeab7f31f2134056e1ba303123cbbdd
9e0185afe85cbc10146d8b81502dac1e094ae6b9
/DimikPro_7.cpp
a3e7ce5d01607c623a532065307b1dc7f627eebf
[]
no_license
yousuf-cse-bd/ProgrammingGathering
98431f05bb59d44ee81203071a19994a407641cf
64b7d5f3c631b79069c6861fc3874986e61f5df4
refs/heads/main
2023-02-27T09:22:30.727586
2021-02-01T17:58:48
2021-02-01T17:58:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
446
cpp
///Author: Muhammad Yousuf Ali ///Since: 13/12/2019 #include <iostream> #include <cstdio> using namespace std; int main(void) { int i,count,t,j; char line[100000]; count = 1; cout<<"Enter String Here: "; cout<<endl; scanf("%[^\n]",line); for(i = 0; i < 100000; i++) { if(line[...
[ "yousuf.cse.bd@gmail.com" ]
yousuf.cse.bd@gmail.com
3dbf2758a59dd4bd96d4e019fd5be6d5d3c5ca90
98c2009752859f36ff107076548c326e053bae44
/tree/103_Binary_Tree_Zigzag_Level_Order_Traversal.cpp
2326b458390cf8706aece39d90923975352f75d1
[]
no_license
ElderSix/my_leetcode
4357b503ea6bf28334bc9128a68ab65f934a207f
7cb09866a5c5af93b7eee9c10f524b36e0e95f9c
refs/heads/master
2020-06-11T18:27:12.243940
2017-11-25T12:07:39
2017-11-25T12:07:39
75,632,476
0
0
null
null
null
null
UTF-8
C++
false
false
4,066
cpp
/* Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary tree [3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 return its zigzag level order traversal as: [ [...
[ "techsailor@163.com" ]
techsailor@163.com
e63ecf78a3312b2df180c8119f88cdb8b020f975
ec4371c240fac47ec87269672af4949134046eaf
/XiaCaoJun_Teacher/XPlay/app/src/main/cpp/XTexture.h
e517dda2444487f07e715565f7a1eaf6bb7ab14c
[]
no_license
jiaquan11/2020AndroidPro
032f5054058b89bbd060f83b34eb593785cf0683
61158a754314ab5e13b1856f4e7a4ae55394ffef
refs/heads/master
2021-12-03T07:54:33.155573
2021-11-27T09:05:47
2021-11-27T09:05:47
249,470,685
4
1
null
null
null
null
UTF-8
C++
false
false
538
h
// // Created by jiaqu on 2020/4/11. // #ifndef XPLAY_XTEXTURE_H #define XPLAY_XTEXTURE_H enum XTextureType{ XTEXTURE_YUV420P = 0,//Y 4 U 1 V 1 XTEXTURE_NV12 = 25,//Y4 uv1 XTEXTURE_NV21 = 26//Y4 vu1 }; class XTexture { public: static XTexture* Create(); virtual bool Init(void *win, XTextureType ...
[ "913882743@qq.com" ]
913882743@qq.com
44d0531d3d640c53ac04d28d97c6f4ede9754832
c0bc1c0631c46ddbb5c921411ea4e8493147b930
/ProyectoCUDA/extlibs/include/thrust/detail/uninitialized_copy.inl
bbb8a471f97d096c1c265e750857810075fbd465
[]
no_license
sebas095/CUDA
8b3083f7712c8dafce8ad0cee9502279a9f2c75e
151b5c792bf98519476f3c462b3dc23401879164
refs/heads/master
2021-01-10T04:09:29.894215
2015-10-30T03:23:04
2015-10-30T03:23:04
45,226,736
0
0
null
null
null
null
UTF-8
C++
false
false
3,608
inl
/* * Copyright 2008-2013 NVIDIA Corporation * * 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 a...
[ "sebas_tian_95@hotmail.com" ]
sebas_tian_95@hotmail.com
25ffe9683d5bd98581d7d153593d9dd4563fd95d
ed703282774dd50484cbe2a71ecae48e118b2fdb
/countdown.h
cf8fa7b326fc5b58fb88d1157bc9f2afeed82527
[]
no_license
pqpq/shower_controller
68404b26c92366f7eb02ab8a05471a491ff3855a
757dd5cc925918f1811245e568fcc01a19a0bc94
refs/heads/master
2021-03-22T01:05:12.453068
2018-01-13T17:44:02
2018-01-13T17:44:02
104,641,790
0
0
null
null
null
null
UTF-8
C++
false
false
1,514
h
#pragma once /// Issue callbacks at critical times, as we count down passing time. /// /// secondsToGo() should be called regularly, and this class decides whether the /// current time to go should trigger any callbacks. /// class Countdown { public: typedef unsigned int Seconds; typedef void EventCallback(); ...
[ "m@badcrumble.net" ]
m@badcrumble.net
d596993c10d69908d9aac2e2003e42f0d9825bab
ab3a6c37bd56a25e537b1faaa3d2c2a095b7f31b
/SimpleCode/Lesson_25.cpp
8b66ae4b8a3d8aac7cb262d98e199796efa3a695
[]
no_license
verzhbitsky/SimpleCode
e706857af583a5ee189a9b8bb4085cc2ef3c4da5
0df71c263db216ac755daca1172ee0a842fb8d0e
refs/heads/master
2023-07-23T03:55:46.699634
2021-09-04T06:13:26
2021-09-04T06:13:26
402,182,970
0
0
null
null
null
null
UTF-8
C++
false
false
2,205
cpp
//#include <iostream> //#include <ctime> //#include <vector> //#include <string> //#include <iomanip> //using namespace std; // //int main() { // // /*const int size = 5; // int arr[size]; // // for (int i = 0; i < size; i++) { // arr[i] = i; // } // // for (int i = 0; i < size; i++) { // cout << arr[i] << " "; // }*...
[ "verzhbitsky.dm@gmail.com" ]
verzhbitsky.dm@gmail.com
2affe8f0a840a8e7601a9927949f38732803fe9e
b5dbb842d058efd6bb493ea723193aa8da060b0f
/gate/AG/X86-Debug/moc_PopupWindow.cpp
4ab661a750d45918022c68a8149573075c91ddd5
[]
no_license
zngj/OpenTheDoor
7d737a36011aa812bd9e7a66cf58a304fa8077f7
ae911f9f6a55e558c18ce0cc388e127413f52028
refs/heads/master
2021-01-01T20:14:14.684936
2017-09-15T03:54:32
2017-09-15T03:54:32
98,795,015
0
0
null
null
null
null
UTF-8
C++
false
false
2,763
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'PopupWindow.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.1) ** ** WARNING! All changes made in this file will be lost! *********************************************************...
[ "coding4fun@126.com" ]
coding4fun@126.com
43266756402ac5b4ec09e9258397ccc12db475a1
e35784eebbc939b9a8783a98d94e330cc07c3c05
/Graphic/SettingDlg.cpp
29382f8cdb4aaea37d7f6034ce53eaece4304044
[]
no_license
endless2010/MFCDemo
5c507994eba3f6786f427847ac443b218ccd3df7
33c12e185759f375b9c83e03aec933c66e778137
refs/heads/master
2021-01-10T12:35:48.288982
2015-12-13T12:57:30
2015-12-13T12:57:30
47,919,174
0
0
null
null
null
null
UTF-8
C++
false
false
2,871
cpp
// SettingDlg.cpp : implementation file // #include "stdafx.h" #include "Graphic.h" #include "SettingDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CSettingDlg dialog CSettingDlg...
[ "chujiang131@163.com" ]
chujiang131@163.com
10c2fbd805e06110085f0579eea6f8f859e6a08c
630ba426e56fcada45cbc3dcd8c4477347d73b07
/021_MergeTwoSortedLists/020_MergeTwoSortedLists.cpp
1fe6691312af5437b6876020464399fc8ff3fdf5
[]
no_license
henryoier/leetcode
3975817d2651fce455aa1f32d5ffd341f920205e
329af8279d4233b694f319a2c3874c899adc12e3
refs/heads/master
2020-04-15T12:45:00.140811
2016-11-15T07:08:03
2016-11-15T07:08:03
63,466,657
1
0
null
null
null
null
UTF-8
C++
false
false
2,406
cpp
/************************************************************************* > File Name: 019_RemoveNthNodeFromEndOfList.cpp > Author: Sheng Qin > Mail: sheng.qin@yale.edu > Created Time: Fri Aug 5 22:55:22 2016 ************************************************************************/ #include<iostream> using nam...
[ "sheng.qin@yale.edu" ]
sheng.qin@yale.edu
0a8689cad1d83b67c67a3094ea13c5bad4bb9b89
5c8f8e34579f8b2609648b106daed5b313d54ff8
/2019/Code_World/C++/DuringComp/4-1_ParanoiaAttacak/World2/Location/map.hpp
2738284bb514b42593ed5a812a9c7280e22c338c
[]
no_license
CaithyJo/Compete-with-CoSpace
357f35dac71599238855d6b3e1bd2a0fdb311244
cdf3c969a71fe2cf46ec001f0a77d16b968ef4db
refs/heads/master
2023-03-16T06:06:50.758364
2021-01-03T17:13:25
2021-01-03T17:13:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
292,381
hpp
const int width = 360,height = 270;int map[width][height] = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ "zunmun@gmail.com" ]
zunmun@gmail.com
8822d0826631ff9f015bdc9a6781aa17f0797e11
88775a85b06c34f6665f16b8adff25b9690ec0ee
/.history/HJ19_20210316155606.cpp
81bc69b5348c99cd5dea407a54282af1c4ee5a1a
[]
no_license
AraragiEro/newk
417c2d75f62ac1b174e6981a6000cb62b6448dec
63374264c10e90dc9a370bfc783913e3ec35610c
refs/heads/master
2023-03-19T14:07:46.548504
2021-03-16T18:46:34
2021-03-16T18:46:34
348,370,479
0
0
null
null
null
null
UTF-8
C++
false
false
711
cpp
#include<iostream> #include<unordered_map> #include<string> #include<vector> #include<sstream> using namespace std; int main(){ string input; unordered_map<string,int> erorrmap; vector<int> erorrNum; int key=0; while(getline(cin,input)){ int mark = input.find_last_of('/'); string ...
[ "zhucct@126.com" ]
zhucct@126.com
fc4f7a040b34fad59495cdecd295b6b4db73f2af
35a0a383b079978992647555645ac30e52ebec3f
/test/SemaCXX/char8_t.cpp
f60a66dbe84deaa66e4674452684154d79f51b18
[ "Apache-2.0", "LLVM-exception", "NCSA" ]
permissive
Codeon-GmbH/mulle-clang
f050d6d8fb64689a1e4b039c4a6513823de9b430
214e526a2b6afeb9508cac5f88c5a4c28e98982f
refs/heads/mulle_objclang_100
2021-07-18T07:45:29.083064
2021-02-16T17:21:51
2021-02-16T17:21:51
72,544,381
29
5
Apache-2.0
2020-04-30T11:36:08
2016-11-01T14:32:02
C++
UTF-8
C++
false
false
1,344
cpp
// RUN: %clang_cc1 -fchar8_t -std=c++17 -verify %s // RUN: %clang_cc1 -std=c++2a -verify %s char8_t a = u8'a'; char8_t b[] = u8"foo"; char8_t c = 'a'; char8_t d[] = "foo"; // expected-error {{initializing 'char8_t' array with plain string literal}} expected-note {{add 'u8' prefix}} char e = u8'a'; char f[] = u8"foo";...
[ "richard-llvm@metafoo.co.uk" ]
richard-llvm@metafoo.co.uk
08614e42ac999454d12e14c100f1647f9380a13c
a651dafd1bacb80a2e9fcdf3995c7a1299f2ea8e
/homework/prog2/binary-rain.cpp
599f26037a231e742d1ccc76ca01a299624c9917
[]
no_license
sthurmon/CSC1253
887bddcc0c0721c9397f43d58e2dab8e417e77e9
990902d8e1a66e987646424c78cf9a8c3a2a9ad8
refs/heads/master
2021-01-23T09:29:09.611333
2015-08-05T14:15:55
2015-08-05T14:15:55
40,248,935
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
#include <iostream> using namespace std; int main() { int i=0, j=1; while (i<j) { cout << i << j; } return 0; }
[ "sthurm4@tigers.lsu.edu" ]
sthurm4@tigers.lsu.edu
fa8a1366b08c2d978967503336fad5df73c4ee86
4a8f994c9e9d08da76e6abedc59c98b0a01dbe15
/libcopybit/copybit.cpp
c5c62018758aa0b098145c474d48403e96a5e622
[ "Apache-2.0" ]
permissive
Argisht/device_lge_swift_AOSP
c7d409bb74be1f6048166cebd35f04e0ff277ac5
277de2593c9a9047ba3a5fee3e053bfbe8b4f134
refs/heads/master
2021-01-15T23:02:29.893352
2013-02-04T18:56:45
2013-02-04T18:56:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
15,217
cpp
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
[ "miroslav_mm@ukr.net" ]
miroslav_mm@ukr.net
051f9cbf6fa4dfdfc777a0cf6f6d80f90636bcfa
1c1b5b4ce52dab3da651f7dcbbfee17514a34524
/tests/benchdnn/self/conv.cpp
affa5f14393b8edb3cca72cae3b100c45d7d8e37
[ "Apache-2.0", "Intel" ]
permissive
scale-snu/mkldnn-bn-restructuring
17b4ebe10783cac291d33d7cb3eb5c5e168371e5
97fdb4f17119008baf452f1cbee5b91b6a366d79
refs/heads/master
2020-03-21T19:25:04.469808
2018-06-28T01:20:35
2018-06-28T01:20:35
138,948,413
1
0
null
null
null
null
UTF-8
C++
false
false
1,845
cpp
/******************************************************************************* * Copyright 2017 Intel Corporation * * 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.o...
[ "evarist.m.fomenko@intel.com" ]
evarist.m.fomenko@intel.com
f88aa142f7461ce2b8c6bf17cc3d77c7110ef817
2ebaa9088e4244c95ec7bbafd6295ac8e4f2938a
/example/solution.cpp
84896d0245173b72cc993ece6dd69f792080ed46
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
KellyBlack/GMRES
724356fe6842da2810e36f39006b8c2d61f1306a
d0a8a87bf71fb2a00e5515b97f19264858a6609e
refs/heads/master
2023-07-22T21:11:35.154957
2023-07-07T17:26:10
2023-07-07T17:26:10
27,487,013
16
10
null
2016-02-12T22:48:24
2014-12-03T12:53:36
C++
UTF-8
C++
false
false
13,758
cpp
/** ********************************************************************************* * @file solution.cpp * @class Solution * @author Kelly Black <kjblack@gmail.com> * @version 0.1 * @copyright BSD 2-Clause License * * @section LICENSE * * Copyright (c) 2014, Kelly Black * All rights reserved. * * Redist...
[ "kjblack@gmail.com" ]
kjblack@gmail.com
6d5557fabf096f5add9924299399efe255cfe990
d3855a9b9e75ce55cceb927a075bc196e6ada442
/VS_Projects/src/World_Server/itemdata.cpp
52d460da49b14a1f658fcc12f06b4b2a92bcce9b
[]
no_license
PurpleYouko/rosZA_server
52de33d0af4f1b2a5b37c64f012210c289fb701f
c21c6bfbb4cc3dc4169d191ac2b532924ce06add
refs/heads/master
2022-05-22T02:24:50.282830
2022-03-07T18:02:04
2022-03-07T18:02:04
80,532,909
7
8
null
2018-03-25T21:13:09
2017-01-31T15:26:46
C++
UTF-8
C++
false
false
839
cpp
// Added By Raven0123 #include "datatypes.h" unsigned CItem::GetVisInfo( ) { if ( count == 0 ) Clear( ); return ( ( refine >> 4 ) << 20 ) | ( socketed << 19 ) | ( stats << 10 ) | itemnum; } unsigned short CItem::GetPakHeader( ) { if ( count == 0 ) Clear( ); return ( ( itemnum << 5 ) | ( itemtype ) ); } unsigned...
[ "purpleyouko@gmail.com" ]
purpleyouko@gmail.com
45d85306741163d630e517780a7b643965c2187a
bb4930d693aa9a824c3585e9dfaddf4c218b16c3
/SparseGrids/tsgDConstructGridGlobal.cpp
983fa74c3853fd57dea336ef37c6605ceb44e5db
[ "BSD-3-Clause" ]
permissive
mooreaa13/TASMANIAN
87b48fcaa1c2596eac80061ad19d0fcfdcda7949
58f4c2e3c2652620a0690741f1db417159c149af
refs/heads/master
2020-05-25T06:15:35.926798
2019-11-04T12:39:57
2019-11-04T12:39:57
187,664,766
0
0
null
2019-05-20T15:13:25
2019-05-20T15:13:25
null
UTF-8
C++
false
false
10,450
cpp
/* * Copyright (c) 2017, Miroslav Stoyanov * * This file is part of * Toolkit for Adaptive Stochastic Modeling And Non-Intrusive ApproximatioN: TASMANIAN * * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * * 1. Redi...
[ "stoyanovmk@ornl.gov" ]
stoyanovmk@ornl.gov
84ae195abd6fa7e5cddf8af04e32da5cd1098fc7
8f021f68cd0949afa8d119582c0b419b014919d8
/Grafos/bfs2017.cpp
b9accf4710530f57e5a822943e3fa32303a50568
[]
no_license
Jonatankk/codigos
b9c8426c2f33b5142460a84337480b147169b3e6
233ae668bdf6cdd12dbc9ef243fb4ccdab49c933
refs/heads/master
2022-07-22T11:09:27.271029
2020-05-09T20:57:42
2020-05-09T20:57:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,214
cpp
/* * Leonardo Deliyannis Constantin * BFS simples: computa a distância de S a T */ #include <iostream> #include <queue> #include <string> #include <map> #include <vector> #include <algorithm> using namespace std; #define INFTO 112345678 int V, E; vector<string> cidades; map<string, vector<string> > adjList; int b...
[ "constantin.leo@gmail.com" ]
constantin.leo@gmail.com
651d778c61207441a0986617796086f7a324ea70
e135c80892fe5cf75e31ba70a9cb869fd2c20c07
/00.My_Practice_Courses/06.C++_Basics_Feb_2017/01.Introdution_to_C++/05.min-max-from-sequence.cpp
9a19dc137f02a26808f8e768e4efc02a139cab8c
[]
no_license
NikolayShaliavski/SoftUni
444f3ec76886af21e84d472631ca56c958453570
08b8b345ebbef8de87db777ad59fb7c5044f1003
refs/heads/master
2021-06-22T00:30:49.970663
2021-01-08T15:20:44
2021-01-08T15:20:44
63,480,683
2
0
null
null
null
null
UTF-8
C++
false
false
418
cpp
#include <iostream> using namespace std; int main () { int min = INT_MAX; int max = INT_MIN; int n; cin >> n; for (int i = 0; i < n; i++) { int current; cin >> current; if (current < min) { min = current; } if (current > max) { max =...
[ "nikolay.shalyavski@atia.com" ]
nikolay.shalyavski@atia.com
c8f9a27e28af7de3ca15b3500428935b85e4a6f1
5e6910a3e9a20b15717a88fd38d200d962faedb6
/AtCoder/dp--M/r.cpp
94545121ae719b93eae23bbc10f69914bba0e7ed
[]
no_license
khaledsliti/CompetitiveProgramming
f1ae55556d744784365bcedf7a9aaef7024c5e75
635ef40fb76db5337d62dc140f38105595ccd714
refs/heads/master
2023-08-29T15:12:04.935894
2023-08-15T13:27:12
2023-08-15T13:27:12
171,742,989
3
0
null
null
null
null
UTF-8
C++
false
false
2,640
cpp
// We only fail when we stop trying #include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define endl '\n' #define D(x) cerr << #x << " = " << (x) << '\n' #define sz(x) ((int)(x).size()) #define all(x) (x).begin(), (x).end() typedef long long ll; const int Mod = 1e9 + 7; template <...
[ "khaled.sliti@supcom.tn" ]
khaled.sliti@supcom.tn
368a28e5a1fb9b4ef940f0da63f293853132fdf7
a97cb7fb087ac7b545146e0fbdb0e272db337aab
/Client/MainUpdated/ByteBuffer.h
6c66aee421b61b1cd6d688f2913fb42b9259cb20
[]
no_license
djnandinho26/Legend_Server_S16
e331a15613f2099d4c37945d8b041a3be58e1420
b1111b2fd1db85d6aa25f850be446903ec7928ba
refs/heads/main
2023-04-25T03:10:52.968102
2022-08-16T12:50:04
2022-08-16T12:50:04
373,501,276
0
0
null
2021-06-03T12:35:46
2021-06-03T12:35:45
null
UTF-8
C++
false
false
11,112
h
/* * Copyright (C) 2008-2014 TrinityCore <http://www.trinitycore.org/> * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * * 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 Foundation; either ver...
[ "korjik87@gmail.com" ]
korjik87@gmail.com
35e8b5edad8ccde8c4366f58dde75c76787e7f5e
baaa5b4f38a64615b8ab9c41406e68e59e46208a
/tools/dgent/templates/transformluaext/src/xxluaext_namexxluaext.cpp
20213bb0c14dd6f34252ed7efb7146ca410ec484
[]
no_license
NevilClavain/DrawSpace
1352854998a4e435c83199791e7a2edd68be9a22
3de6b5125ae3f37c4eacf677bed32e1664f1f7ec
refs/heads/develop
2023-08-22T22:08:17.679234
2023-08-20T18:05:35
2023-08-20T18:05:35
13,019,547
32
8
null
2023-08-08T20:34:54
2013-09-22T19:36:45
C++
UTF-8
C++
false
false
1,477
cpp
/* -*-LIC_BEGIN-*- */ /* * * DrawSpace Rendering engine * Emmanuel Chaumont Copyright (c) 2013-2023 * * This file is part of DrawSpace. * * DrawSpace 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 Foundation, ei...
[ "emmanuel.chaumont@wanadoo.fr" ]
emmanuel.chaumont@wanadoo.fr
4422cce2404a3735f556112bbc14bf90664d7292
f05bde6d5bdee3e9a07e34af1ce18259919dd9bd
/include/algorithms/pca/pca_batch.h
20da6c57efb1ebc0dec0a196220bc2d77c41fe36
[ "Intel", "Apache-2.0" ]
permissive
HFTrader/daal
f827c83b75cf5884ecfb6249a664ce6f091bfc57
b18624d2202a29548008711ec2abc93d017bd605
refs/heads/daal_2017_beta
2020-12-28T19:08:39.038346
2016-04-15T17:02:24
2016-04-15T17:02:24
56,404,044
0
1
null
2016-04-16T20:26:14
2016-04-16T20:26:14
null
UTF-8
C++
false
false
5,216
h
/* file: pca_batch.h */ /******************************************************************************* * Copyright 2014-2016 Intel Corporation * * 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 a...
[ "vasily.rubtsov@intel.com" ]
vasily.rubtsov@intel.com
9126be694cf6abd42bf41ee2683a87e5f6cb1ef6
931a8f1634feb32916cf20ac6cd28a3ee2830ba0
/Native/Development/Include/gui/colorselector.h
0db4e8cd72aebbd4f26e450b3df0973a17e42806
[]
no_license
PyroOS/Pyro
2c4583bff246f80307fc722515c5e90668c00542
ea709dc1f706c4dfc182d959df14696d604572f8
refs/heads/master
2021-01-10T19:47:17.787899
2012-04-15T12:20:14
2012-04-15T12:20:14
4,031,632
6
1
null
null
null
null
UTF-8
C++
false
false
2,116
h
/* colorselector.h - a colour selection widget. * Copyright (C) 2004 Syllable Team * * This library is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU Library * General Public License as published by the Free Software * Foundation. * * This library is dis...
[ "mail@pyro-os.org" ]
mail@pyro-os.org
558250f1d595a00886abdcb832aab080757107a1
06753fdabd64d2ef6d193cf5ca3bb35103ffebff
/samples/convert.cpp/main.cpp
dcd4b488b689b3541ee1e808679e0a1cfa1726ca
[ "BSD-3-Clause" ]
permissive
planetmarshall/charls
228251842a505c0a715b7db200ae653ef43cb443
4d1ef382beb950d3f0c2b092939a19959888fe78
refs/heads/master
2020-09-20T09:55:36.167496
2020-04-26T10:00:45
2020-04-26T10:01:08
224,442,366
0
0
NOASSERTION
2019-11-27T13:55:07
2019-11-27T13:55:07
null
UTF-8
C++
false
false
5,975
cpp
// Copyright (c) Team CharLS. // SPDX-License-Identifier: BSD-3-Clause #include "pch.h" #include "bmp_image.h" #include <charls/charls.h> #include <cassert> #include <cstring> #include <iostream> #include <vector> namespace { void convert_bgr_to_rgb(std::vector<uint8_t>& triplet_buffer) noexcept { for (size_t...
[ "vbaderks@gmail.com" ]
vbaderks@gmail.com
9e812ae9ec10cd3788933bda65ec79b787190c28
31a4afbde84384e8a0145783ffc38a265b8bced7
/shatteredcake.cpp
c2e961edc18bba09d0120ab445739bddcfe49a91
[]
no_license
EvelioOrnelas/eornelas-Kattis
9b32fe1e16648994caeb6cced3f3efcfa67a1630
e3bb5d55582fcc4035f69c2af719192b79efadc2
refs/heads/master
2023-02-04T01:46:46.511269
2023-01-29T19:01:54
2023-01-29T19:01:54
228,526,441
0
0
null
null
null
null
UTF-8
C++
false
false
334
cpp
#include <iostream> #include <string> using namespace std; void start() { int W, N, w, l, sum=0; cin >> W; cin >> N; for(int i=0; i<N; i++) { cin >> w >> l; sum += w*l; } cout << sum / W << endl; } int main() { ios::sync_with_stdio(false); start(); return 0; } // S...
[ "evelioornelas@Evelios-MBP.lan" ]
evelioornelas@Evelios-MBP.lan
c6220c9f4a87b6530ff4abf494fea23cc0b5ab25
e61386facb2ef7dc70602567a5500da96d35a6fa
/mainwindow.cpp
8758f46d951d06b93e32dc7fae4643789ebb245e
[]
no_license
liuqingfa/KuWo
996ba9abdee7ad2b7366cb69ac9b59e57829b608
adb0d2e175142318d16fc6e42862b979da4e98e6
refs/heads/master
2020-04-01T17:26:35.846110
2018-08-29T08:57:20
2018-08-29T08:57:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
30,724
cpp
#include "mainwindow.h" #include "toplistitem.h" #include <QApplication> #include <QDesktopWidget> #include <QVBoxLayout> #include <QLabel> #include <QDebug> #include <QJsonDocument> #include <QJsonObject> #include <QJsonArray> #include <QNetworkAccessManager> #include <QNetworkRequest> #include <QNetworkReply> #includ...
[ "sonichy@163.com" ]
sonichy@163.com
f7df46609c08d8a018430d20a772fceaa9c8041a
a50346c4eb3a1280beec0d88320e866d87c25c77
/pubvel.cpp
445528de4784c3de18bce84677a1ef85a7006127
[]
no_license
priaditeguh/exercise_3
be9ffc9d2a9d573c2a4d6a85668b8fed651647ce
2b269a758920906e15b0a632115359622eb5588d
refs/heads/master
2021-08-30T01:27:25.571122
2017-12-15T14:50:15
2017-12-15T14:50:15
114,305,621
0
0
null
null
null
null
UTF-8
C++
false
false
1,130
cpp
// This program publishes randomly-generated velocity // messages for turtlesim #include <ros/ros.h> #include <geometry_msgs/Twist.h> // For geometry_msgs::Twist #include <stdlib.h> // For rand() and RAND_MAX int main (int argc, char **argv) { // Initialize the ROS system and become a node. ros::init(argc, argv,"pu...
[ "priaditeguh@mail.com" ]
priaditeguh@mail.com
010e8b00580deab9d001cbe8ee434c0d8bd24607
41f3c18ce759df5eb0d5a80fa4e8cf2883ecf98c
/codeforces/1228 a.cpp
b33faf4d694b9042a1b0dd40db431bf4d95f4a5f
[]
no_license
tanvirtareq/programming
6d9abafb844b1e80b7691157b0581a3b25b9cd59
040f636773df2d89fb7c169fe077f527f68140a4
refs/heads/master
2021-06-27T12:07:07.585682
2021-03-28T12:39:49
2021-03-28T12:39:49
217,275,688
1
0
null
null
null
null
UTF-8
C++
false
false
893
cpp
#include<bits/stdc++.h> #define dbg(a) cout<<#a<<" "<<a<<endl #define pb push_back #define mk make_pair using namespace std; typedef long long ll; typedef long long unsigned lu; int vis[100010]; int main() { #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdou...
[ "cse.tanvir.17@gmail.com" ]
cse.tanvir.17@gmail.com
cc430c43bbc4a57e180ce114bee021d711fdffe1
b22588340d7925b614a735bbbde1b351ad657ffc
/athena/InnerDetector/InDetEventCnv/InDetEventAthenaPool/src/InDetLowBetaContainerCnv.h
46346f1b954052b9f3049832d306b1e01d3bb9b5
[]
no_license
rushioda/PIXELVALID_athena
90befe12042c1249cbb3655dde1428bb9b9a42ce
22df23187ef85e9c3120122c8375ea0e7d8ea440
refs/heads/master
2020-12-14T22:01:15.365949
2020-01-19T03:59:35
2020-01-19T03:59:35
234,836,993
1
0
null
null
null
null
UTF-8
C++
false
false
1,514
h
/* Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration */ #ifndef TRIGEVENTATHENAPOOL_INDETLOWBETACONTAINER_CNV_H #define TRIGEVENTATHENAPOOL_INDETLOWBETACONTAINER_CNV_H #include "GaudiKernel/MsgStream.h" #include "AthenaPoolCnvSvc/T_AthenaPoolCustomCnv.h" #include "InDetLowBetaInfo/InDetLo...
[ "rushioda@lxplus754.cern.ch" ]
rushioda@lxplus754.cern.ch
6ebf3c9d043ff8fba0ab84c97b53da701ea1d8a1
012fc5162432c654741203ca5ec3081e64b770e2
/NumGrind/SymbolicGraph/SymbolicGraphManagerAbstract.h
695ab62afddfd54e3f6e26a72a8991f087b6f15b
[ "MIT" ]
permissive
Daiver/NumGrind
6df4e4bc8d4208b129a6d63ccdd2daab951b7583
b5875034ec0debba7594191d6e818676543e5cf6
refs/heads/master
2020-12-02T07:45:11.579917
2016-11-19T11:39:58
2016-11-19T11:39:58
69,108,945
3
0
null
null
null
null
UTF-8
C++
false
false
368
h
#ifndef NUMGRIND_GRAPHMANAGERABSTRACT_H #define NUMGRIND_GRAPHMANAGERABSTRACT_H #include "CompGraph/CompGraphNode.h" namespace NumGrind { namespace SymbolicGraph { class SymbolicGraphManagerAbstract { public: virtual void addGraphNode(CompGraph::CompGraphNode *node) = 0; }; ...
[ "ra22341@ya.ru" ]
ra22341@ya.ru
8569c07b79f2bb138aeed81e144f130cb9f63eed
156d7b3e35d249377df5923017cc8af52489f97f
/brlycmbd/CrdBrlyReg/PnlBrlyRegADstswitch.cpp
f19282f71d2edf2bfb696438e8f46e209c6f2087
[ "MIT" ]
permissive
mpsitech/brly-BeamRelay
fa11efae1fdd34110505ac10dee9d2e96a5ea8bd
ade30cfa9285360618d9d8c717fe6591da0c8683
refs/heads/master
2022-09-30T21:12:35.188234
2022-09-12T20:46:24
2022-09-12T20:46:24
282,705,295
0
0
null
null
null
null
UTF-8
C++
false
false
9,086
cpp
/** * \file PnlBrlyRegADstswitch.cpp * job handler for job PnlBrlyRegADstswitch (implementation) * \copyright (C) 2016-2020 MPSI Technologies GmbH * \author Alexander Wirthmueller (auto-generation) * \date created: 11 Jan 2021 */ // IP header --- ABOVE #ifdef BRLYCMBD #include <Brlycmbd.h> #else #include <Brly...
[ "aw@mpsitech.com" ]
aw@mpsitech.com
aceb7b725708564f60eef665b5444cf7e21ce6bf
a3585e97d02ed29a55c7353cb07bdcc40e080c7b
/Model/MaizePioneer/Plant.h
7279861f07c7571e0d5bcc2dcf0565f7fb35f3d1
[]
no_license
APSIMInitiative/APSIMClassic
d26a44585c57802f15b1f9a0641d2c21239905b5
2dc1d3475e340e45da473f1daf5e66e98f448361
refs/heads/master
2023-07-08T14:03:45.389036
2023-06-25T21:30:32
2023-06-25T21:30:32
130,158,232
32
47
null
2023-06-25T21:30:53
2018-04-19T04:17:59
C#
UTF-8
C++
false
false
5,352
h
#ifndef PLANT_H_ #define PLANT_H_ #include <ComponentInterface2/ScienceAPI2.h> #include <ComponentInterface2/DataTypes.h> #include <ComponentInterface2/Variant.h> #include "Utilities.h" #include "PlantComponents.h" #include "Roots.h" #include "Leaf.h" #include "LeafSlowWilting.h" #include "LeafLimitedTranspiration.h...
[ "drew.holzworth@csiro.au" ]
drew.holzworth@csiro.au
9050096d965ee95809e0a0f779528ec461abaf5d
7c7ca9efe5869a805a3c5238425be185758a71ce
/marsksim/boost/date_time/date_formatting_locales.hpp
506cc0efa662a5f27668274dc8357944399ddd87
[]
no_license
cansou/MyCustomMars
f332e6a1332eed9184838200d21cd36f5b57d3c9
fb62f268a1913a70c39df329ef39df6034baac60
refs/heads/master
2022-10-20T18:53:22.220235
2020-06-12T08:46:25
2020-06-12T08:46:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,960
hpp
#ifndef DATE_TIME_DATE_FORMATTING_LOCALES_HPP___ #define DATE_TIME_DATE_FORMATTING_LOCALES_HPP___ /* Copyright (c) 2002,2003 CrystalClear Software, Inc. * Use, modification and distribution is subject to the * Boost Software License, Version 1.0. (See accompanying * file LICENSE_1_0.txt or http://www.boost.or...
[ "" ]
fc04de5a3058e95870a9f15bc8a0622738e26c14
04b1803adb6653ecb7cb827c4f4aa616afacf629
/chrome/browser/safe_browsing/local_two_phase_testserver.cc
1a642ba41ea99b009c5f29bb6c7c2c3df87ca3f6
[ "BSD-3-Clause" ]
permissive
Samsung/Castanets
240d9338e097b75b3f669604315b06f7cf129d64
4896f732fc747dfdcfcbac3d442f2d2d42df264a
refs/heads/castanets_76_dev
2023-08-31T09:01:04.744346
2021-07-30T04:56:25
2021-08-11T05:45:21
125,484,161
58
49
BSD-3-Clause
2022-10-16T19:31:26
2018-03-16T08:07:37
null
UTF-8
C++
false
false
1,261
cc
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/safe_browsing/local_two_phase_testserver.h" #include "base/command_line.h" #include "base/path_service.h" #include "base/strings...
[ "sunny.nam@samsung.com" ]
sunny.nam@samsung.com
6f9fa6d7569300505a0003d87eb81973c6c0b4f5
5d83739af703fb400857cecc69aadaf02e07f8d1
/Archive2/f5/a954c309476436/main.cpp
83461c2a379c503b6fe52a6cef6e1161502ec6ab
[]
no_license
WhiZTiM/coliru
3a6c4c0bdac566d1aa1c21818118ba70479b0f40
2c72c048846c082f943e6c7f9fa8d94aee76979f
refs/heads/master
2021-01-01T05:10:33.812560
2015-08-24T19:09:22
2015-08-24T19:09:22
56,789,706
3
0
null
null
null
null
UTF-8
C++
false
false
409
cpp
#include <type_traits> template <char... s> struct silly { using type = int; }; template <char... s> struct silly<'1', s...> { using type = double; }; template <char... s> typename silly<s...>::type operator"" _silly() { return 0; } int main() { static_assert(std::is_same<int, decltype(4321_silly)>::value, "no l...
[ "francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df" ]
francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df
822e1fdb568ad9207b77003e5f63f12b1681b361
99ed5156c9b83d22dcd7c8a29937825694f4f36d
/dll/ALL/Demo示例/1-MFC综合示例(人脸库、人脸底图)/Config/Events/VCAEVENT_Tripwire.h
8c0fb45fa33af3b393ea5a8ca2539a3a71b011a6
[ "MIT" ]
permissive
zyx030613/algorithm_its
73e862988f375a73e517db4f39b8f9005a819609
eae3628a498d2bd9d61487b53b9cdde23b99e314
refs/heads/master
2020-04-25T07:53:45.586587
2019-12-03T06:37:26
2019-12-03T06:37:26
172,627,700
0
1
null
null
null
null
UTF-8
C++
false
false
1,329
h
#pragma once #include "afxwin.h" #include "VCAEventBasePage.h" // CLS_VCAEVENT_Tripwire dialog class CLS_VCAEVENT_Tripwire : public CLS_VCAEventBasePage { DECLARE_DYNAMIC(CLS_VCAEVENT_Tripwire) public: CLS_VCAEVENT_Tripwire(CWnd* pParent = NULL); // standard constructor virtual ~CLS_VCAEVENT_Tripwire(); // Di...
[ "orchidaroma@126.com" ]
orchidaroma@126.com
0efe80de0797d4d93d0d3a54c9a5cb309e8017dd
5de70c4a6e8c74fa73c7f5b6e797d480a26c5dff
/Add_Function_Template.h
eca810eb0499ac44c0377ec3d7a0c86c06d16b96
[]
no_license
peterwin97/Templates_Nguyen_Reyes
a76a417478484f7ea5a5aaa1336e30819cd46b05
428e988c8a995b3f91409592c725442ac14aadae
refs/heads/master
2020-09-13T11:46:48.586355
2019-11-19T19:23:03
2019-11-19T19:23:03
222,768,116
0
0
null
null
null
null
UTF-8
C++
false
false
87
h
template<class ANY_TYPE> ANY_TYPE CAddition(ANY_TYPE a, ANY_TYPE b) { return a + b; }
[ "peter.nguyen169@my.tccd.edu" ]
peter.nguyen169@my.tccd.edu
ddc19870c9ac6732e1152d1538386625f1ff9982
2f6d39c2daf70ebaae90e72ca503f8b275d3572a
/service/cross-dex-ref-minimizer/CrossDexRefMinimizer.h
3d599ebddc8fd669e24aa8f78b0b0e1ab0ed7cb4
[ "MIT" ]
permissive
facebook/redex
5a39c5b733e729ecb52101dd3f941a63f9fa32f0
36c6607be749ba2009210aae404d68cd57e747eb
refs/heads/main
2023-09-01T18:21:21.839608
2023-09-01T02:01:59
2023-09-01T02:01:59
54,664,770
6,459
775
MIT
2023-08-25T00:06:04
2016-03-24T18:26:35
C++
UTF-8
C++
false
false
9,422
h
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #include <json/value.h> #include <string> #include <unordered_map> #include <unordered_set> #include <vector> #inc...
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
8ab1cf4fe892f31236ae050b178886e7845037c7
5b3bf81b22f4eb78a1d9e801b2d1d6a48509a236
/algospot/ch21/traversal.cc
bdcac5ee2be0d613c8d2e82d70faa76e3548c79f
[]
no_license
okoks9011/problem_solving
42a0843cfdf58846090dff1a2762b6e02362d068
e86d86bb5e3856fcaaa5e20fe19194871d3981ca
refs/heads/master
2023-01-21T19:06:14.143000
2023-01-08T17:45:16
2023-01-08T17:45:16
141,427,667
1
1
null
null
null
null
UTF-8
C++
false
false
1,238
cc
#include <iostream> #include <vector> #include <algorithm> using namespace std; vector<int> GenPostorder(const vector<int>& preorder, const vector<int>& inorder) { if (preorder.size() <= 1) return preorder; int root = preorder.front(); int left_size = find(inorder.begin(...
[ "okoks9011@gmail.com" ]
okoks9011@gmail.com
7812bfe5b0d7e649a8a0810165aae9bb35bbd751
9abf5e2fe6b57c24a89a3a5da5451ef80ef35146
/3rdParty/atom/atom/pattern/factory/CInstanceFactoryAllocator.h
97920e66bbc9e06f959d5bf3fb38d56123489c42
[ "Apache-2.0" ]
permissive
jiyahan/ArmoredForce
0a70815034e9c5b4219d4380cb47b4ae00d1ff27
cd9e43d404b83604dc373dcbf8b4642646cee7c0
refs/heads/master
2021-06-21T14:17:04.832043
2017-08-17T06:59:18
2017-08-17T06:59:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,032
h
#ifndef CINSTANCEFACTORYALLOCATOR_H #define CINSTANCEFACTORYALLOCATOR_H #include "../../interface/IInstanceFactoryAllocator.h" #include "../../interface/IInterface.h" #include "tagAllocator.h" #include "../../utility/tool/CObjectPtr.h" #include "../../interface/IReferencedObject.h" namespace atom { class CInstan...
[ "ichenq@outlook.com" ]
ichenq@outlook.com
6b6f930f222743000dbe4d8a593c64f657983699
4516ab1392e0e6e8551c32e8f0e6e930072fb410
/Snake_and_Ladders.cpp
450c7f0a68b7cdde96b2c09144d7322ea2914501
[]
no_license
100-days-of-code-challenge/John
f569c3f3a2a6a84836f0f898ef41326aca4d47d6
466e7d8b366eb478c75e9b3bc441cfc72f368a9e
refs/heads/main
2023-06-05T03:40:00.551401
2021-06-25T17:44:03
2021-06-25T17:44:03
367,176,849
1
0
null
null
null
null
UTF-8
C++
false
false
2,391
cpp
/*On an N x N board, the numbers from 1 to N*N are written boustrophedonically starting from the bottom left of the board, and alternating direction each row. For example, for a 6 x 6 board, the numbers are written as follows: You start on square 1 of the board (which is always in the last row and first column). Ea...
[ "johnchakder@gmail.com" ]
johnchakder@gmail.com
7b06db60a1d4665db82775f2f5689150b3001b6e
16c1c35fde3ec960486fdf589a36bf5cf5109e57
/solution/codeforces/chess.cpp
bea5a1e65da1997c5ad494f13657926029e0a89d
[]
no_license
ahnaftahmid31/codes
684e7bd5fb660fdf24d0e0c3c7273b2fa86f4345
97ba47d39aa07e15f6c7ccde26e3feb20711de62
refs/heads/master
2020-07-17T03:18:56.053409
2019-11-04T23:00:12
2019-11-04T23:00:12
205,930,064
0
0
null
null
null
null
UTF-8
C++
false
false
1,770
cpp
#include <bits/stdc++.h> using namespace std; #define pii pair<int, int> int abslt(int a) { if (a < 0) a = -a; return a; } int dx[] = {-1, 0, 1, -1, 1, -1, 0, 1}; int dy[] = {-1, -1, -1, 0, 0, 1, 1, 1}; int level[64 + 3][64 + 3]; int king(int r1, int c1, int r2, int c2) { queue<pii> q; q.push({r1, c1}); f...
[ "ahnaf.24csedu.039@gmail.com" ]
ahnaf.24csedu.039@gmail.com
deb6c02a2a7dbd2bde31b3f137d6f83f88eb6dde
45710ec622926cab17bec72f6e198304b78e69e5
/src/pre-processor.cpp
20fcdc4381b16a11955720da048043d9b6ffe13d
[]
no_license
rafael-fernandes/ligador
4fdc2d8999659bf2e2eb3675b1fb66b3ef6e566e
b2d00c5b5fc99ac9fcdff7d322bab425df136003
refs/heads/master
2020-03-21T14:25:18.989683
2018-07-02T13:34:44
2018-07-02T13:34:44
138,656,361
0
0
null
null
null
null
UTF-8
C++
false
false
5,045
cpp
#include "../include/pre-processor.hpp" std::string replaceA(std::string str, const std::string& from, const std::string& to) { size_t start_pos = 0; while((start_pos = str.find(from, start_pos)) != std::string::npos) { str.replace(start_pos, from.length(), to); start_pos += to.length(); // Handles c...
[ "spnrafael@gmail.com" ]
spnrafael@gmail.com
2550e3fc0fed7416692bda5113caa8f775c47ad8
1288871fa3ce4298dfde791987d47c712fdb0c9c
/SFMLGame1/Application.cpp
bb6091c9186918c42e15632ebc2e153197db6843
[]
no_license
kuccello/sfml2dgame
7251ac5dfe591878d63b34af75c4bb2e556311d3
b8549e4c65f35da6495a5e18221d7de41f6e3d99
refs/heads/master
2020-12-31T07:44:03.180247
2016-05-01T20:39:04
2016-05-01T20:39:04
57,891,835
0
0
null
null
null
null
UTF-8
C++
false
false
2,879
cpp
#include "Application.h" #include "Utility.h" #include "State.h" #include "StateIdentifiers.h" #include "TitleState.h" #include "GameState.h" #include "MenuState.h" #include "PauseState.h" #include "LoadingState.h" #include "SettingsState.h" #include "GameOverState.h" const sf::Time Application::TimePerFrame = sf::se...
[ "kuccello@gmail.com" ]
kuccello@gmail.com
2eac4a6c9f0c2aeef061d62ebef1048f5c093b71
b4dbee61d787e39884862c45f780f60ab0d41792
/11UFO/src/Texture.cpp
b38d9a8edc473b56853814ab12ea33dcd5b582de
[]
no_license
ShawHaines/CG-Intro
767e9306c473be2e3993359b957d19b692f0a78d
1132e2bf97245bd4b462f4ccb67b334df1aee73b
refs/heads/master
2023-02-03T18:00:49.232060
2020-12-23T15:31:31
2020-12-23T15:31:31
299,152,335
3
0
null
null
null
null
UTF-8
C++
false
false
1,287
cpp
#include <iostream> #define STB_IMAGE_IMPLEMENTATION #include "stb_image.h" #include "Texture.h" GLuint loadTexture(const std::string& fileName) { GLuint texture; glEnable(GL_TEXTURE_2D); glGenTextures(1, &texture); glBindTexture(GL_TEXTURE_2D, texture); // setting filter and wrapping method gl...
[ "haohaistone@qq.com" ]
haohaistone@qq.com
9593521096ccccbb44dc6aec48553031b4ee8ac5
c23b0e4d8090be41fe0ad69a023fa676e4a7e726
/video.cpp
38b7902d7d4e1ff2bb9bf6c74de5dc97a675b05f
[]
no_license
karan-uppal3/IP-workshop
e6e6883a841596882bbc91ebdbd7bdf033eb8278
7ef6e75d8e00e95a344f4692848ba6a93c1ffd58
refs/heads/master
2022-12-06T03:25:37.124142
2020-08-25T16:41:03
2020-08-25T16:41:03
290,268,712
0
0
null
null
null
null
UTF-8
C++
false
false
608
cpp
#include <iostream> #include "opencv2/imgproc.hpp" #include "opencv2/highgui.hpp" #include "opencv2/core/core.hpp" #include <bits/stdc++.h> using namespace std; using namespace cv; int main() { VideoCapture cap (0); int th1,th2; th1 = th2 = 0; namedWindow ("output",0); createTrackbar ( "Tracker1" , "output" ,...
[ "karan.uppal3@gmail.com" ]
karan.uppal3@gmail.com
263c6efa1f374f7e67a357b6e5f506ec00b57c19
dbce43f67f389586773d87922a7cef52e9566739
/SemiExpression/ITokenCollection.h
b6704be5dd56118be5a616221bd66876668bbd88
[]
no_license
VinayakKukreja/Remote-Source-Code-Publisher
efb4d4eed7cb82f14acfebb364d9d6139dd8e52e
edc6966b6eb0130799b0f33958fd449e950b1971
refs/heads/master
2020-07-09T03:51:50.709754
2019-08-23T03:49:37
2019-08-23T03:49:37
203,867,998
0
0
null
null
null
null
UTF-8
C++
false
false
3,188
h
#ifndef ITOKENCOLLECTION_H #define ITOKENCOLLECTION_H ///////////////////////////////////////////////////////////////////// // ITokenCollection.h - Lexical Scanner interface // // ver 1.0 grammatical analysis // // ...
[ "vkukreja@syr.edu" ]
vkukreja@syr.edu
cadef9208c67db2c8315693a6453954245f635f8
4c583ec6661aacea98ca452677a920320dec514b
/CollectionMonitoringClassObject.h
271ce8f8d940274de50b1f5b23b97bbc59c6d364
[]
no_license
1847123212/698SP_CL
1c77aac31697921b4a7e03e2c3847b533154e68c
87eec74d883944a0a8e5cf198057ce7b8fa2231d
refs/heads/master
2022-06-08T15:12:49.486321
2020-05-12T09:49:12
2020-05-12T09:49:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,754
h
// // Created by admin on 2019/11/21. // #ifndef INC_698SP_CL_COLLECTIONMONITORINGCLASSOBJECT_H #define INC_698SP_CL_COLLECTIONMONITORINGCLASSOBJECT_H #include <QDialog> #include "QDebug" #include <QSqlDatabase> #include <QSqlError> #include <QSqlQuery> #include "ui_CollectionMonitoringClassObject.h" namespace Ui { ...
[ "2312051360@qq.com" ]
2312051360@qq.com
f652122d3b5e639862942fa8d41cc62e73b00be6
c90a56e7d7752b041fc5eb38257c5573cef346c6
/src-macOS/XmlMDataXtd_tmpl.hxx
7e498c3377c553c7441f3818890a33fd02ad35c3
[]
no_license
random-builder/design_cadquery_ocp
a4c572a72699bad52ca5f43f30bb7c15d89072ff
2af799a9f1b2d81fd39e519b2f73e12b34a14c0a
refs/heads/master
2021-05-21T23:10:23.833461
2020-03-29T15:34:46
2020-03-29T15:34:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,925
hxx
#pragma once // pybind 11 related includes #include <pybind11/pybind11.h> #include <pybind11/stl.h> namespace py = pybind11; // Standard Handle #include <Standard_Handle.hxx> // includes to resolve forward declarations #include <Message_Messenger.hxx> #include <TDF_Attribute.hxx> #include <XmlObjMgt_Persistent.hxx>...
[ "adam.jan.urbanczyk@gmail.com" ]
adam.jan.urbanczyk@gmail.com
ab8021cf7128036619964d6ded592743e3a5fd87
ac2f2177fc4709f3c94d66e29b5e140e62dcce80
/library/profile.hpp
c44dfadb43bcea26c52f9b55cadfaf237e3e648d
[ "BSL-1.0" ]
permissive
leojenns/touchless-safe-
53f11f8b4cbe6e001731f52390e9049b9b99d0db
d57f82b9cacf043775a140aa92cbea667874c705
refs/heads/master
2021-01-17T20:08:45.278640
2016-06-20T09:53:53
2016-06-20T09:53:53
59,851,145
0
0
null
null
null
null
UTF-8
C++
false
false
3,557
hpp
/**************************************************************************************************************************** * auther :: Leo Jenneskens ...
[ "leo.jenns.s2@gmail.com" ]
leo.jenns.s2@gmail.com
00abe6d028bb6c2b9a5f13968b2f6a1b3c7a1e07
793c8848753f530aab28076a4077deac815af5ac
/src/dskphone/logic/voice/src/channelforresume.cpp
63c9d78e99ab138619fb0b8a88d962c329e48383
[]
no_license
Parantido/sipphone
4c1b9b18a7a6e478514fe0aadb79335e734bc016
f402efb088bb42900867608cc9ccf15d9b946d7d
refs/heads/master
2021-09-10T20:12:36.553640
2018-03-30T12:44:13
2018-03-30T12:44:13
263,628,242
1
0
null
2020-05-13T12:49:19
2020-05-13T12:49:18
null
UTF-8
C++
false
false
2,102
cpp
#include "voicechannel_include.h" #include "channelforresume.h" #include "talk/talklogic/include/modtalklogic.h" #ifndef _DECT IMPLEMENT_GETINSTANCE(CChannelForResume) CChannelForResume::CChannelForResume() { m_eChannelBeforeRing = CHANNEL_AUTO; m_eChannelBeforeTone = CHANNEL_AUTO; } CChannelForResume::~CCha...
[ "rongxx@yealink.com" ]
rongxx@yealink.com
f358decb26b78da84d07269263f65b77cb2d5e6f
855a2f819b5f4d352c6a9f0d0ef9c7f891a71fff
/CoHang/OBSTACLE/OBSTACLE.cpp
5f9eada91cce842d1f31da536d9163d26b2fb1b4
[]
no_license
DoNothing627/C-
3cd75cd5366dc0a142b21fb574cd9c53b7e35d8f
c5fee56f58a56f1a71c90ff85f50f84ba3e249b3
refs/heads/main
2023-07-21T13:52:43.361327
2023-07-12T05:44:50
2023-07-12T05:44:50
350,928,017
0
0
null
null
null
null
UTF-8
C++
false
false
4,241
cpp
//--------DO NOTHING--------- #include <bits/stdc++.h> #include <bitset> //#define x first //#define y second #define mn #define pb push_back #define oo 1000000007 //#define int long long #define DoNothing "OBSTACLE" #define PI 3.1415926535897 #define ii pair< int, int> #define memset(f, a) memset(f, a, sizeof(f)) #def...
[ "andxh58chn@gmail.com" ]
andxh58chn@gmail.com
837f422034da5ee613e32e4333a49e46bb1fe69c
af8b9da200738bf0f7ccbe13d14217986d723bda
/src/test_mat.cpp
2e7750b07b4f53c0634722fde96a86e9d77fe955
[ "FSFAP", "MIT" ]
permissive
MSaito/ntl-test1
8414b229a98f40570d5ff74aeadbbb40e9afd694
e9aed985dad50a49510c435007c610ac7066df21
refs/heads/master
2021-01-06T04:01:04.892336
2017-08-08T00:31:11
2017-08-08T00:31:11
99,517,373
0
0
null
null
null
null
UTF-8
C++
false
false
697
cpp
#include <NTL/mat_GF2.h> #include <NTL/matrix.h> #include <NTL/GF2.h> #include <NTL/version.h> using namespace NTL; using namespace std; int main(int argc, char * argv[]) { Mat<GF2> mat; mat.SetDims(2, 2); for (int i = 0; i < 2; i++) { for (int j = 0; j < 2; j++) { cout << "mat.put(i, ...
[ "saito@manieth.com" ]
saito@manieth.com
bbe7daf892d55a9e39d25cd0a16b855baad8558b
24f26275ffcd9324998d7570ea9fda82578eeb9e
/chrome/browser/extensions/updater/extension_updater.h
e745f54abe586905c2ed3ae6f421ef98a8d68954
[ "BSD-3-Clause" ]
permissive
Vizionnation/chromenohistory
70a51193c8538d7b995000a1b2a654e70603040f
146feeb85985a6835f4b8826ad67be9195455402
refs/heads/master
2022-12-15T07:02:54.461083
2019-10-25T15:07:06
2019-10-25T15:07:06
217,557,501
2
1
BSD-3-Clause
2022-11-19T06:53:07
2019-10-25T14:58:54
null
UTF-8
C++
false
false
11,041
h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ #define CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ #include <list> #includ...
[ "rjkroege@chromium.org" ]
rjkroege@chromium.org
648e6a48f6d7301bd77a4d991f23e7e04c854045
92b50235facfbc08dfe7f334827d47281471333b
/src/frontends/lean/elaborator_context.cpp
f7e697c53f7513ff15658bbd721989eaf199cee3
[ "Apache-2.0" ]
permissive
htzh/lean
24f6ed7510ab637379ec31af406d12584d31792c
d70c79f4e30aafecdfc4a60b5d3512199200ab6e
refs/heads/master
2020-12-11T09:08:51.270486
2015-07-16T23:39:12
2015-07-16T23:39:12
37,078,816
0
0
null
2015-06-08T16:29:16
2015-06-08T16:29:15
null
UTF-8
C++
false
false
4,818
cpp
/* Copyright (c) 2014 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include "util/sexpr/option_declarations.h" #include "frontends/lean/elaborator_context.h" #ifndef LEAN_DEFAULT_ELABORATOR_LOCAL_INSTANCES #define LEAN_DEF...
[ "leonardo@microsoft.com" ]
leonardo@microsoft.com
752cd468a5acb9c4943cc0d82ea43ffdfc62a269
d56799b6adf9c693cf2f59535e9fcf1bb01ab3a0
/Source/FPSGame/Public/FPSGameState.h
2e17ec4708c083278229e0d9a0308470a4997c23
[]
no_license
rituparnodas/StealthGame
f1576af4861ece86bab2d41b325e260c0340a46e
c36e87aa69c89e2f8079be30ea6f127c404dfa6a
refs/heads/master
2022-12-24T06:10:36.887958
2020-05-09T13:49:40
2020-05-09T13:49:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
570
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "GameFramework/GameStateBase.h" #include "FPSGameState.generated.h" /** * */ UCLASS() class FPSGAME_API AFPSGameState : public AGameStateBase { GENERATED_BODY() public: // NetMul...
[ "55701713+DevDas@users.noreply.github.com" ]
55701713+DevDas@users.noreply.github.com
f1cadc96961fa3d5ec9295e0abad72bbb28293e8
b747063a7eddcdc473a37262b0f293da39f9a4e9
/BYU/cs345/sync/barbershop.cpp
f324a3a92d653af408e4668b83534050e050fb49
[]
no_license
Iiridayn/sample
2a8d6693e80d53ca5e63d79cad09aa9da2b373bc
0dfc4eb0f17c7bf4618f07d1483878e333441500
refs/heads/master
2023-07-07T11:31:25.401037
2023-06-23T22:34:28
2023-06-23T22:34:28
24,160,656
0
0
null
null
null
null
UTF-8
C++
false
false
9,401
cpp
#include <semaphore.h> #include <stdlib.h> #include <iostream> using namespace std; typedef sem_t* semaphore; semaphore max_capacity; semaphore freebarber; // which barber does the work doesn't matter int numcustomer; // want to be global // customers have 4 stages: waiting, cutting, paying, done // ca...
[ "clark.michael.c@gmail.com" ]
clark.michael.c@gmail.com
99db6fc29b42cb4fdf2d1779faf024cb5b1721e0
c1ac0ceca12bd24c2e341ece0882fb922e64bc8e
/Qt5Practice/Qt_FontTest/mainwindow.cpp
f46796c6ddfaca9355544d5b3257eb0a9de5a0ac
[ "Apache-2.0" ]
permissive
whuer-xiaojie/Qt_Test
23e74d263f21c51a99e84a83cb6f8465567ffbd9
5d3477f4f59c1c084a448a8a12bf536af5cad274
refs/heads/master
2020-04-14T15:42:27.133484
2019-01-03T07:04:21
2019-01-03T07:04:21
163,935,304
0
0
null
null
null
null
UTF-8
C++
false
false
1,557
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include <QFont> #include<QFontDatabase> MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { ui->setupUi(this); //引入图形字体 int fontId = QFontDatabase::addApplicationFont(":/Resource/icon.ttf"); //加入字体,并获取字体ID ...
[ "xiojie@sansi.com" ]
xiojie@sansi.com
5b7ecf8d3d4af76fe1c7878139784c2b08458020
ae85511910297d6607e8875e27da6c427f64852e
/YTPublic/YTInclude/YTUnit/YTThread.h
b632860b6b467efbc429d001d1e63ce13cce7cf8
[]
no_license
hbi980/ytnew
5dfa157e43bf35467c54245cafbca6546daf1dd1
42b1cc2a4da15d43b658ccd8bccecacbad4995df
refs/heads/master
2021-01-10T18:24:35.672645
2015-07-13T16:58:14
2015-07-13T16:58:14
38,717,660
0
0
null
null
null
null
GB18030
C++
false
false
867
h
#pragma once #include <windows.h> // 定义线程对象 typedef unsigned int (__stdcall * ThreadFunc)(void *); class CYTThread { public: CYTThread(void); ~CYTThread(void); public: // 公共导出函数 int BeginThread(ThreadFunc func, void * param, const char * name); // 启动线程 void StopThread(unsigned int timeout = 5000); // 关闭线...
[ "12190333@qq.com" ]
12190333@qq.com
4167ef963695fb1c36e822e8d03f5890dfaec1fb
785c6b9177473b621d0a0a439777c82c1052599b
/unique_pathII.cpp
10ce75effd8912875dc6b3b94e297854485f5159
[]
no_license
azheanda/leetcode-1
f1560db24468cad41743ab45fed0799d01369678
02b7cce9dadef5bd3177c8d857ab332975f30dbf
refs/heads/master
2020-12-24T11:46:33.031647
2012-09-13T00:25:34
2012-09-13T00:25:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
746
cpp
#include <vector> using namespace std; int path[110][110]; void solve(int m, int n, vector<vector<int> > &obstacleGrid) { path[1][1] = obstacleGrid[0][0] ? 0 : 1; for (int i = 1; i <= m; i++) { for (int j = 1; j <= n; j++) { if (i == 1 && j == 1) continue ; if ...
[ "sunstick@gmail.com" ]
sunstick@gmail.com
01c8aa63243bf012b03c763edcf7a0fcc3c0c8fa
b3ebeb1660b5370e78e733202e95fe0d90d1d2e6
/Plugins/FMODStudio/Intermediate/Build/Win64/UE4/Inc/FMODStudio/FMODEventParameterSectionTemplate.gen.cpp
a6bcc4f618c5f3a95fd59059827645481b8358e1
[]
no_license
GabrieleAncona/Test-Project-Team-C-3
7e17956caf24307e6d48d61044421e34c45fee3a
e252fa6c874291bcb01eaedf3b6f051547db0ded
refs/heads/main
2023-06-15T14:28:37.276025
2021-06-20T19:14:15
2021-06-20T19:14:15
303,222,683
2
0
null
null
null
null
UTF-8
C++
false
false
4,773
cpp
// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ========================================================================...
[ "gabry.ancona@gmail.com" ]
gabry.ancona@gmail.com
e2c7f3993885122d05240abb154a748162e2fd1c
c03615f53093643e3c1e323b83cbe77970966575
/PRT/3rdParty/cgal/cgal/include/CGAL/ImageIO/inr_impl.h
b13b32a34075b46b733fd83ae6e121ed29adb581
[]
no_license
fangguanya/PRT
0925b28671e756a6e9431fd57149cf2eebc94818
77c1b8e5f3a7a149825ad0cc3ef6002816222622
refs/heads/master
2021-06-08T20:54:22.954395
2016-11-24T07:38:11
2016-11-24T07:38:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,665
h
// Copyright (c) 2005-2008 ASCLEPIOS Project, INRIA Sophia-Antipolis (France) // All rights reserved. // // This file is part of the ImageIO Library, and as been adapted for // CGAL (www.cgal.org). // You can redistribute it and/or modify it under the terms of the // GNU Lesser General Public License as publishe...
[ "succeed.2009@163.com" ]
succeed.2009@163.com
1808c9d3e42bb5b388ed9f55de52a260f252ead7
01b99b95a7d48577c1b67eeb321e09eb8cd5e55f
/src/include/TempLat/fft/external/pfft/pfftguard.h
3f66f591b8f5bc88dfebae43e1af92d08853f460
[ "MIT" ]
permissive
cosmolattice/cosmolattice
e3172056a9d0c963c299f786f1d0066d25565ef6
521befc3e8073fa97ffdd76a6281f270f027b491
refs/heads/master
2023-06-25T03:21:19.029827
2023-06-20T13:41:36
2023-06-22T10:29:50
334,783,491
29
5
MIT
2022-07-11T15:03:35
2021-01-31T23:57:25
C++
UTF-8
C++
false
false
2,076
h
#ifndef TEMPLAT_FFT_EXTERNAL_PFFT_FFTWGUARD_H #define TEMPLAT_FFT_EXTERNAL_PFFT_FFTWGUARD_H /* This file is part of CosmoLattice, available at www.cosmolattice.net . Copyright Daniel G. Figueroa, Adrien Florio, Francisco Torrenti and Wessel Valkenburg. Released under the MIT license, see LICENSE.md. */ // ...
[ "adrien.florio@epfl.ch" ]
adrien.florio@epfl.ch
ddbbb8ab511faa37a97a69bb493ad3c6e9cdcbc4
45b286742deac8638ec06e00c888e9554f5637d4
/libraries/libym_cell/ci/CiBundle.cc
76587edea40e92e7b5735ef164b522f399d99de3
[]
no_license
yusuke-matsunaga/minimaleda
0800200f42474a2dbe08d94d977678d67ee085d1
e0619bfd34baf3ca27c23d2f705067297209104a
refs/heads/master
2021-01-20T20:03:15.199896
2016-08-02T03:43:11
2016-08-02T03:43:11
64,721,871
5
1
null
null
null
null
UTF-8
C++
false
false
954
cc
/// @file libym_cell/ci/CiBundle.cc /// @brief CiBundle の実装ファイル /// @author Yusuke Matsunaga (松永 裕介) /// /// Copyright (C) 2005-2010 Yusuke Matsunaga /// All rights reserved. #include "CiBundle.h" BEGIN_NAMESPACE_YM_CELL ////////////////////////////////////////////////////////////////////// // クラス CiBundle //////...
[ "yusuke_matsunaga@ieee.org" ]
yusuke_matsunaga@ieee.org
7a4dfaae453ca478dda545ca5710f4c5149733b0
db7148c33aabad259c9e1acafdf6e5c49b627d46
/Tests/Armory/build_test_game/osx-build/Sources/include/armory/logicnode/OnGamepadNode.h
7d35120b26946cfb201566fd135d5f23942b0272
[]
no_license
templeblock/Animations
18472430af796d32e3f0c9dd2df1058fdb241846
e986fa2249b998889fad78cac6ff3cc70ad196f0
refs/heads/master
2020-04-23T01:23:44.200377
2018-06-07T14:33:43
2018-06-07T14:33:43
null
0
0
null
null
null
null
UTF-8
C++
false
true
2,139
h
// Generated by Haxe 3.4.4 #ifndef INCLUDED_armory_logicnode_OnGamepadNode #define INCLUDED_armory_logicnode_OnGamepadNode #ifndef HXCPP_H #include <hxcpp.h> #endif #ifndef INCLUDED_armory_logicnode_LogicNode #include <armory/logicnode/LogicNode.h> #endif HX_DECLARE_CLASS2(armory,logicnode,LogicNode) HX_DECLARE_CLASS...
[ "neverliberty@gmail.com" ]
neverliberty@gmail.com
196662c570fa01dd0ba4bab533528d0cea066939
cb71dcb4556911373e5367f5f3871a2d0d615533
/src/qt/psbtoperationsdialog.h
656c2c9eb4ef63712a9add80e872e1eebfad4f0f
[ "MIT" ]
permissive
titaniumblockchain/titanium
17b9ae8754ce28f6b9aca082f6b373acc6ec57c1
b22ee2231e9f721a98ef486279add588240ad7b2
refs/heads/main
2023-06-03T03:57:22.219094
2021-07-02T18:06:20
2021-07-02T18:06:20
382,419,634
1
1
null
null
null
null
UTF-8
C++
false
false
1,467
h
// Copyright (c) 2011-2020 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef ETITANIUM_QT_PSBTOPERATIONSDIALOG_H #define ETITANIUM_QT_PSBTOPERATIONSDIALOG_H #include <QDialog> #include <psbt.h...
[ "root@wallet.etitanium.net" ]
root@wallet.etitanium.net
a3b62c82ea67668db1f0f3b3ecd87c9f66c6e5d9
c946a09fe21c9690b51debd3f96a7476c56cf7c9
/fft_filter_hlsprj/solution5_axi_no_ap_ctrl/.autopilot/db/filter_fft.pragma.0.cpp
14036c851f932c20df3f0d3eae4b520baafea8d9
[]
no_license
juanduncan/fft_filter
7b0e41db2a7b640caed6fc6a3e37aa6ff3993457
63f11759a0736f70d2ceed997098e06be4425b4e
refs/heads/master
2021-04-15T08:29:59.328979
2018-04-04T12:26:14
2018-04-04T12:26:14
126,590,603
0
0
null
null
null
null
UTF-8
C++
false
false
2,364,390
cpp
#1 "fft_filter_hlsprj/src/filter_fft.cpp" #1 "fft_filter_hlsprj/src/filter_fft.cpp" 1 #1 "<built-in>" 1 #1 "<built-in>" 3 #155 "<built-in>" 3 #1 "<command line>" 1 #1 "/opt/Xilinx/Vivado_HLS/2014.4/common/technology/autopilot/etc/autopilot_ssdm_op.h" 1 /* autopilot_ssdm_op.h*/ /* #- (c) Copyright 2011-2014 Xilin...
[ "juanduncan@uni.lu" ]
juanduncan@uni.lu
d6820c333b1f2a92a87ac350017004f814605453
2f931e946e9de8a46d8aee5a237b7b251ee78eed
/include/lm/dist.h
890e5e20d6d86cb9caa5db16399b642d72b25171
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
lwkobe/lightmetrica-v3
6d9e9539e844f55913d562ddb304574f4b28b265
181d6598c84abce95e553da9a7adeb6935432fb6
refs/heads/master
2020-06-20T13:23:11.592289
2019-06-21T09:10:52
2019-06-21T09:10:52
197,135,848
1
0
NOASSERTION
2019-07-16T06:41:44
2019-07-16T06:41:44
null
UTF-8
C++
false
false
2,856
h
/* Lightmetrica - Copyright (c) 2019 Hisanari Otsu Distributed under MIT license. See LICENSE file for details. */ #pragma once #include "component.h" LM_NAMESPACE_BEGIN(LM_NAMESPACE) LM_NAMESPACE_BEGIN(dist) // ---------------------------------------------------------------------------- /*! \addtogrou...
[ "hi2p.perim@gmail.com" ]
hi2p.perim@gmail.com
128f42d35d48e1d5d8aa3a64e8ed539b77d8bfc6
3c285ebbf9719b9383734dc109c72ef81ad64193
/page.cpp
411f3c676dd51a9ae43401e067ef915f69a2902c
[]
no_license
floatlazer/ComicReader
21cd646e547fd39a8c228056e8164566799d3ed2
c6278dc6701916b8089dc16e478746d8fd308262
refs/heads/master
2021-03-16T09:17:19.128310
2018-03-19T15:52:52
2018-03-19T15:52:52
124,311,197
2
0
null
null
null
null
UTF-8
C++
false
false
807
cpp
#include "page.h" #include <QDebug> Page::Page() { initParams(); } Page::Page(QImage _image, unsigned int number) { initParams(); image = _image; // QImage is implicite shared pageNumber = number; } Page::Page(unsigned int number) { initParams(); pageNumber = number; } Page::~Page() { qDe...
[ "xuan.zhang@ensta-paristech.fr" ]
xuan.zhang@ensta-paristech.fr
1621b4c4e16fad61c28c5452d57b087443aeaed9
de01116b56aea0f293a17f7f575518967552188c
/src/packages/basePackage.cpp
fb674b83ecb0ea39d39106b6930c8f3622b3e3ca
[]
no_license
Lhwhatever/calculator
f0bc6c3a203627d59c9edc7139eb9a9b5f80e8e7
383b2cf1a26db293195e11db4a979f62fb282bcd
refs/heads/master
2020-05-21T15:55:45.648958
2019-06-09T03:29:20
2019-06-09T03:29:20
186,101,582
0
0
null
null
null
null
UTF-8
C++
false
false
9,694
cpp
#include "../tokens/values/floatToken.h" #include "../tokens/values/integerToken.h" #include "package.h" namespace base_func { FuncTokenSP add; FuncTokenSP subtract; FuncTokenSP minus; FuncTokenSP multiply; FuncTokenSP divide; } // namespace base_func namespace pats { const ValueToken::NumType& tInt...
[ "llinhong.2301+github@gmail.com" ]
llinhong.2301+github@gmail.com
15a5f979a00882c7cd69c0029bee5b31ce3956fd
89cd4dd23fede03f2d30d24176d27d9895c38963
/PermutationShuffle.cpp
e9371d47b7f027e433e2ec30615c47bf186a9c95
[]
no_license
ginnigarg/CodeChef
b81b8a9b2b7632f8603e66c8691ba2d1c76e92a4
9c39ffd31fbbefc7f0dedc60a4a61d44ce1935eb
refs/heads/master
2020-03-31T01:06:20.736493
2019-01-26T09:51:28
2019-01-26T09:51:28
151,766,883
1
0
null
null
null
null
UTF-8
C++
false
false
1,061
cpp
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int tc; cin >> tc; while(tc--) { int n, m; cin >> n >> m; int* arr = new int[n]; vector< pair< int, int > > vect; pair<int, int> p; for(int i = 0; i < n; i++) { ...
[ "guneetgarg.2011@gmail.com" ]
guneetgarg.2011@gmail.com
2a06b75d1d10f150ee0ee4823289e3a2a1a23dd2
1cbe92d30322c966658d8497dc7eff05eb58df1e
/Document.cpp
ddc5cb330a491e70512bfbf26dcc42166c928750
[]
no_license
btbph/ERPSystem
3a7b97b78ee8e1347a60f009f834349d537e26d1
a7b2ffdc68ae3bb6d9044a96c96991af1f7f9ce1
refs/heads/master
2020-06-19T13:12:24.838421
2016-12-16T08:02:54
2016-12-16T08:02:54
74,903,512
0
0
null
null
null
null
UTF-8
C++
false
false
206
cpp
// // Created by Mikhail Ulyanov on 08.12.2016. // #include "Document.h" void Document::setTypeOfMovement(TypeOfMovement tmpmv) { movement=tmpmv; } void Document::setId(int tmpid) { id=tmpid; }
[ "m.ulyanov96@mail.ru" ]
m.ulyanov96@mail.ru
37a2435ad1cb162acbe0355aa0330e588ccfe5d7
c8ef491a438a00fe5c1b6ef2dded0c032074f5a6
/src/mindroid/util/Delegate.h
b12c6ff8213a3be4802fb55c262e54caba3d9d1c
[]
no_license
ogsts/Mindroid.ecpp
38ab13825f3a1ea2c0ab37673b476e75944cec76
45c59d83da043e26ebafdcf48220e9120623a915
refs/heads/master
2020-12-25T09:37:34.246509
2016-05-04T12:05:24
2016-05-04T12:05:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,369
h
/* * Copyright (C) 2011 Daniel Himmelein * * 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 ...
[ "daniel.himmelein@esrlabs.com" ]
daniel.himmelein@esrlabs.com
a8635e98be9affc29ced4eb92d6dbd83f8250621
74bb9935e0c9e4d53bff8af132ebd238abfc00cc
/src/BCProject16/Driving/setspeed.cpp
98004e000f90445da6cc17e7cc378bd286ee4bad
[]
no_license
Mr-wwy/autonavigation
d77cbfb0d560d601ae808812d1c5056d7e2dffa3
3166f07b7a46ecab330eb4dae65fd79e9ecd6fa6
refs/heads/master
2020-06-27T01:55:30.711507
2019-07-31T09:05:17
2019-07-31T09:05:17
199,813,853
0
1
null
null
null
null
UTF-8
C++
false
false
1,004
cpp
#include "setspeed.h" #include "ui_setspeed.h" SetSpeed::SetSpeed(QWidget *parent) : QWidget(parent), ui(new Ui::SetSpeed) { ui->setupUi(this); this->setFixedSize(this->size()); this->setWindowTitle(tr("设置期望速度")); this->setFocusPolicy(Qt::StrongFocus); this->raise(); this->setAttri...
[ "youre mail" ]
youre mail
f872e5e84cf33dd81e354e8b017d3407ce4ebdbe
fda028dd0a70e19d124d3da7fa175215da0f33f5
/main.cpp
e0bd77f21c19fefbb86dd3b9c9096ffcf3866188
[]
no_license
luciana1faur/Curs1GptBarbat-Femeie
0aa17adbaeaec0fa4a3fbfc24487ea87d627a599
13dc551bf78ac06b16ea351d1775e68140737c09
refs/heads/master
2022-12-16T03:28:03.649506
2020-09-21T05:38:18
2020-09-21T05:38:18
297,239,122
2
0
null
null
null
null
UTF-8
C++
false
false
370
cpp
#include <iostream> using namespace std; int main() { int h, v; double g; cout << "Introduceti inaltimea dumneavoastra: "; cin >> h; cout << "Introduceti varsta dumneavoastra: "; cin >> v; g = 50.0+0.75*(h-150)+0.25*(v-20); cout << "G ideala pentru barbat este: " << g << endl; cout << "G ideala pe...
[ "luciana_faur@yahoo.com" ]
luciana_faur@yahoo.com
a0f1c551138d1ddd30accacafecf50cb61467ce3
c0e0138bff95c2eac038349772e36754887a10ae
/mdk_release_18.08.10_general_purpose/mdk/common/components/flic/tests/flic_01_stress_ovr/leon/PlgEcho.cpp
66a4416b6769dcb8b8f2256dc3289cf229881bb9
[]
no_license
elfmedy/vvdn_tofa
f24d2e1adc617db5f2b1aef85f478998aa1840c9
ce514e0506738a50c0e3f098d8363f206503a311
refs/heads/master
2020-04-13T17:52:19.490921
2018-09-25T12:01:21
2018-09-25T12:01:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,307
cpp
/// /// @file /// @copyright All code copyright Movidius Ltd 2017, all rights reserved. /// For License Warranty see: common/license.txt /// /// @brief Test plugins /// #include "PlgEcho.h" #include <BehQueueOvr.h> //############################################# void PlgEchoSend::Create(int...
[ "palani.andavan@vvdntech.com" ]
palani.andavan@vvdntech.com
b4e9d7e5c1a2a2e89a3f8cfb9b13cc10cdefa1bb
083092560c57736b41b0b6596bc02d2c55ba94b2
/RhoNNO/NetworkTrainer.h
e0a5de6d94ff2286ed3215ca20f70cc92da74bb9
[]
no_license
marcelkunze/rhoframework
b3d55464cbb9c6127d599356434950787e5668eb
491bfa1c6bcf66760e533505eda77318329ee519
refs/heads/master
2020-06-04T14:44:42.753061
2014-01-24T15:57:25
2014-01-24T15:57:25
33,133,048
0
0
null
null
null
null
UTF-8
C++
false
false
3,582
h
////////////////////////////////////////////////////////////////////////// // // // NetworkTrainer // // Part of the Neural Network Objects package (NNO) // // // // Author List: // // M.Kunze, Bochum University // // (C) Copyright M.Kunze 1997-2001, Ruhr-University Bochum. // // ...
[ "Marcel.Kunze@c13c6a65-7848-45db-51e9-74536fd039a2" ]
Marcel.Kunze@c13c6a65-7848-45db-51e9-74536fd039a2
02e9c4ad3c453df39020b84c5429b079849ca629
27f88ea6d808b3cd88daa21a3b706539eaf0b539
/Online Judge/CodCad/Olympic medals/68871.cpp
356066c7ed2fd596a74fbaa1329fb63d2c1dc7ff
[]
no_license
glaucoacassio2020/Competitive-Programming-Algorithm
7889cf906df7665e0f7c3db245cd3b946e6231a9
99d396b0fae5c7a4c702a5ec174e6d0261a9d50f
refs/heads/master
2023-03-17T22:44:49.785615
2020-04-21T02:07:02
2020-04-21T02:07:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
477
cpp
#include <iostream> using namespace std; int main(){ int a, b, c; int a2, b2, c2; cin >> a >> b >> c; cin >> a2 >> b2 >> c2; if(a == a2){ if(b == b2){ if(c > c2) cout << "A" << endl; else cout << "B" << endl; }else{ if(b > b2) cout << "A" << endl; e...
[ "paulomirandamss12@gmail.com" ]
paulomirandamss12@gmail.com
035fcdf96fd1814a808ab09e6d1edab029da9c9a
1697377c48957ff491345470f1feed48a0a534ae
/CircularApp/circularlayout.h
c887d3cf68b445da0df068a36bd6a4ddb1abf55d
[]
no_license
mnxoid/pllug
b2b0efe5aeeb8d686e3353f0791af17d8857631a
6b025164ad1a13eb1a96f4bfe34efaea074e1ae5
refs/heads/master
2021-01-10T06:06:40.303785
2016-01-11T13:39:11
2016-01-11T13:39:11
43,554,112
0
0
null
null
null
null
UTF-8
C++
false
false
1,119
h
#ifndef CIRCULARLAYOUT_H #define CIRCULARLAYOUT_H #include <QLayout> #include <QtGlobal> #include <QStyle> class CircularLayout : public QLayout { Q_OBJECT public: explicit CircularLayout(QWidget *parent, int margin = -1, int hSpacing = -1, int vSpacing = -1); explicit CircularLayout(int margin = ...
[ "sergolwow@gmail.com" ]
sergolwow@gmail.com
3767cfc52b25d679be4bb14808012bcc819708e6
ec89c52bd7c044601e720d7fa1abd8d6ee6ed16f
/Luogu/TEST.CPP
bf9eeb20ef387b4ade387ce0b1052bd652f5d720
[]
no_license
SSTinYukk/C-WorkSpace
19d89cf3eb016f431a8d6bfb4ad5219dfa9fa403
0fb38ca86c0cfd9cae4ab7c1dd56d5b907e65434
refs/heads/master
2023-07-27T08:56:12.842794
2021-09-04T06:10:07
2021-09-04T06:10:07
320,762,315
0
0
null
null
null
null
UTF-8
C++
false
false
71
cpp
#include<stdio.h> int main(){ char c='1'; printf("%d",c-'0'); }
[ "13999730523@163.com" ]
13999730523@163.com
d39c8d76c06e4e281d881fc3fb194cb49064401d
7de775f67c84b66a32e29237f608f9f17caf0adb
/src/simulation.time/SimulationTimeProvider.h
2b5ed6819319dd7f649dfaf38ddd3f053e3aa953
[ "MIT" ]
permissive
toeb/sine
d616f21b9a4ff18d8b1b1d5e9e5a21a8ee7aec04
96bcde571218f89a2b0b3cc51c19ad2b7be89c13
refs/heads/master
2016-09-05T19:17:07.891203
2015-03-20T07:13:45
2015-03-20T07:13:45
32,568,082
0
0
null
null
null
null
UTF-8
C++
false
false
1,992
h
#pragma once #include <math/core.h> #include <simulation.time/ITimeProvider.h> namespace nspace{ class SimulationTimeProvider:public virtual ITimeProvider{ private: Time _t_initial; Time _t_target; Time _t_actual; Time _lastTargetAdvance; Time _lastActualAdvance; AverageRate _av...
[ "toeb@c65b9dfa-2e9b-4d30-9b60-b5bbc3021b56" ]
toeb@c65b9dfa-2e9b-4d30-9b60-b5bbc3021b56
60643b8cc262a4c6280ca3c62dd52a6893f884f9
9eba17cd41965e19657a4c08878f02bfab6d98f0
/include/string-dictionaries/BlindTree.h
f026e79f1333918742fb14f9457206c5a13febb9
[]
no_license
duscob/string_dictionaries
24e7c7f0cd1082a8ee40a5f4f67c7aa76f5908d1
ecd7264b63365d8d81c6d2cbaa18c48167c7daa0
refs/heads/master
2020-03-13T23:55:27.864082
2018-04-27T22:42:48
2018-04-27T22:42:48
null
0
0
null
null
null
null
UTF-8
C++
false
false
11,536
h
// // Created by alpachec on 28-10-17. // #ifndef STRING_DICTIONARIES_BLINDTREE_H #define STRING_DICTIONARIES_BLINDTREE_H #include <string> #include <map> #include <vector> #include <limits> #include <iostream> #include <cstring> #include <unordered_map> struct Node; struct edge { int gap; // (salt...
[ "dustin.cobas@gmail.com" ]
dustin.cobas@gmail.com
9340a76e484685527de1df1d8a7b98be20a22d76
746d741e4393ec615886096e41724f448933f0a2
/engine/unit_test/unit_test_catalog.cpp
5508ff662c172477799fac7f5b6176e8e35947eb
[]
no_license
erdincay/newsflash-plus
a78fe7de814b4db025ecb882105f1f9a2ecbb3e5
e2b69d9ea86f1840672158d60ea0bb20ff547bb3
refs/heads/master
2021-01-13T08:57:50.128768
2016-09-22T16:28:36
2016-09-22T16:28:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,331
cpp
// Copyright (c) 2010-2015 Sami Väisänen, Ensisoft // // http://www.ensisoft.com // // This software is copyrighted software. Unauthorized hacking, cracking, distribution // and general assing around is prohibited. // Redistribution and use in source and binary forms, with or without modification, // without permission...
[ "samiv@ensisoft.com" ]
samiv@ensisoft.com
fcd4f67b21f3452aaa408512a498107e8b39c444
7f2d4ffcfbd2437ab347adf0bf609acb2c222eb4
/cl/include/SDK/wmsheaderline.h
2c84493bc2ca4d8c2ff637aaf7d3af9fd5227991
[]
no_license
mensong/CppScript
d46d5939e8ffad83897b4a28094351093752128c
622e00b49137caf95812735b5938a794537825dd
refs/heads/master
2023-06-08T11:16:47.076693
2023-05-28T04:35:25
2023-05-28T04:35:25
166,553,412
3
1
null
null
null
null
UTF-8
C++
false
false
5,114
h
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 7.00.0499 */ /* Compiler settings for wmsheaderline.idl: Oicf, W1, Zp8, env=Win32 (32b run) protocol : dce , ms_ext, c_ext, robust error checks: allocation ref bounds_check enum stub_da...
[ "mail0668@gmail.com" ]
mail0668@gmail.com
098c0ef99810a31df869569d855274b6d4fb7498
78e6f8b29560c70ca9e1eedcfff6f1111f7370c8
/OpenGL 3D Game/src/engine/platform/opengl/rendering/shaders/atmosphere/GLAtmosphereScatteringShader.h
14ed1300193edea2d72ba30e46f8575071dd3de0
[]
no_license
Andrispowq/OpenGL-3D-Game
511104617e403a5f8c448390e5ee411a47697e8e
8f0fcf1edcea7673b36e09f177aa75c4416a2d05
refs/heads/master
2023-01-29T04:34:12.471328
2020-12-01T13:42:51
2020-12-01T13:42:51
242,340,559
1
0
null
null
null
null
UTF-8
C++
false
false
638
h
#ifndef GL_ATMOSPHERE_SCATTERING_SHADER_H #define GL_ATMOSPHERE_SCATTERING_SHADER_H #include "engine/platform/opengl/rendering/shaders/GLShader.h" #include <glew.h> #include "engine/config/AtmosphereConfig.h" #include "engine/config/FrameworkConfig.h" class GLAtmosphereScatteringShader : public GLShader { public: ...
[ "akmeczo@gmail.com" ]
akmeczo@gmail.com
e4ecdf7189140c056162848a3e3b7b1ea9325d74
0999be6548d7295bbd3520065b35bcba389d979b
/LeetCode/January Daily Challenge 2021/Q16.cpp
d0f6edf319a388c968df67a3037dfa71b28b6f92
[]
no_license
geetanshatrey/Competitive-Coding
efb168681d702ebae291b8b8e55f2e6ce8e66e02
be8cb95a1d9dddf84a4947f2b148fca8ad541d3c
refs/heads/master
2023-03-19T19:05:54.182688
2021-03-16T16:07:10
2021-03-16T16:07:10
226,719,613
0
0
null
null
null
null
UTF-8
C++
false
false
359
cpp
// Link to the problem : https://leetcode.com/explore/featured/card/january-leetcoding-challenge-2021/581/week-3-january-15th-january-21st/3606/ // Problem Name : Kth Largest Element in an Array class Solution { public: int findKthLargest(vector<int>& nums, int k) { sort(nums.begin(), nums.end()); ...
[ "atrey.geetansh@gmail.com" ]
atrey.geetansh@gmail.com
96ccd3d36465da17943df8f6fc5a82ab1ec6e8ba
55ee1b9114019831652f33bfa836eb09518cc179
/ch05/5.24.cpp
871c846ae4055bb27b4a74ea8848ac955b74fc60
[]
no_license
mrmanago/cpp_primer_5th_exercises
61e41ca923b47f5dae4068be9ed31db6790138e9
7dcf1b1bdb7656d761aeaf0cb55f06ca3f65460b
refs/heads/master
2022-07-22T06:00:13.708797
2020-05-20T20:03:18
2020-05-20T20:03:18
252,034,498
0
0
null
null
null
null
UTF-8
C++
false
false
392
cpp
#include <iostream> #include <stdexcept> using std::cout; using std::cin; using std::endl; using std::runtime_error; int main() { cout << "Please enter two integers: " << endl; int v1 = 0, v2 = 0; cin >> v1 >> v2; if (v2 == 0) { throw runtime_error("divisor is 0"); } in...
[ "mrmanago@outlook.com" ]
mrmanago@outlook.com
132c9b3f751ad4da13cc97a126f9a68c2e49c211
6e8fa5d88e45ed23bf0d3c100cdc2f77bdc7ecda
/textdisplay.h
703d9805a446a2c63e4f02964d2f1b1f4bddebd3
[]
no_license
Ray-SunR/conways-game-of-life
b914113fa9521881f2440eb31a4937b88b5c68b6
b7b7a0c8e3700a872e350f3c366ff38c5c00bf73
refs/heads/master
2016-09-05T11:21:31.767973
2014-01-11T05:46:27
2014-01-11T05:46:27
12,852,596
0
1
null
null
null
null
UTF-8
C++
false
false
345
h
#ifndef __TEXTDISPLAY_H__ #define __TEXTDISPLAY_H__ #include <iostream> #include <sstream> class TextDisplay { char **theDisplay; int i, j; const int gridSize; public: TextDisplay(int n); void notify(int r, int c, char ch); ~TextDisplay(); friend std::ostream &operator<<(std::ostream &out, const Text...
[ "sunrenchen@gmail.com" ]
sunrenchen@gmail.com
42b575a3914d97462f93116b1820ea68beb33ac1
e3a0618d9a777ff72305180e757623399604058a
/test/ssh/sshtest.cpp
b6fe711a4b8e07ae1e122f228a7ce7cd2f948ff4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
urjaman/s2putty
7a9bb15d73b5d45e931f00391b0a0c39f28eebaa
cf0d78fa3634458f3e6ccdc384e39d910360301f
refs/heads/master
2020-12-31T07:32:15.694710
2016-05-18T11:46:31
2016-05-18T11:46:31
57,227,207
0
0
null
null
null
null
UTF-8
C++
false
false
5,448
cpp
#include <e32std.h> #include <e32base.h> #include <e32cons.h> #include <stdlib.h> #include <stdarg.h> extern "C" { #define PUTTY_DO_GLOBALS #include "putty.h" } #include "epocnet.h" #include "epocmemory.h" #include "epocnoise.h" #include "sshtestconsole.h" struct backend_list backends[] = { {Config::PROT_SSH...
[ "urjaman@gmail.com" ]
urjaman@gmail.com
4f28b8bc074101a8e9cf7548305c3ba0aee9cca2
c079c287f7bbdc77e824bcd9855df2b45e74da58
/include/src/ribbon/QtnRibbonPrivate.h
c4e5e17aa01cd224089bb2eab4d488adab7ac512
[]
no_license
lawiest/GuangGuProject
b0ec76284c284b9e7b584b7cb8c9a503d3e5894d
77f4db8436456b4bb9d9f1d7d35e5244f28ec99d
refs/heads/master
2020-11-28T18:35:22.492303
2019-12-25T01:40:10
2019-12-25T01:40:10
229,892,801
12
10
null
null
null
null
UTF-8
C++
false
false
3,851
h
/**************************************************************************** ** ** Qtitan Library by Developer Machines (Microsoft-Ribbon implementation for Qt.C++) ** ** Copyright (c) 2009-2017 Developer Machines (http://www.devmachines.com) ** ALL RIGHTS RESERVED ** ** The entire contents of this file i...
[ "lei.xu@demxs.com" ]
lei.xu@demxs.com
3a3a0aee03e5a1ab667de2ea2fa20a6983f771f7
69740a5b14d963b51ac0b8d956c205d3b7879353
/oasis/middleware/tena/streams_impl.cpp
b86eaf024fdd7b238acd17e617e03d3353a752e4
[]
no_license
SEDS/OASIS
eba334ae59e69fc66d1e355fedb5ad5583b40695
ddf365eea9874fa5938072fea1fad5b41c27f3e9
refs/heads/master
2020-12-24T15:51:12.761878
2013-12-03T20:30:21
2013-12-03T20:30:21
13,195,236
4
3
null
2015-10-24T09:40:39
2013-09-29T15:58:55
C++
UTF-8
C++
false
false
91
cpp
// $Id: streams_impl.cpp 1990 2011-10-08 00:11:08Z dfeiock $ #include "../../streams.cpp"
[ "hillj@cs.iupui.edu" ]
hillj@cs.iupui.edu
71730c475668495d029f11808e8684ff3f62b9a1
004d74429b3cc86537d8f2e6358042935cd63e21
/code/src/pdtlclient.cpp
a737e65b0ac92562a96c111e1bfe01645905c054
[]
no_license
giech/pdtl
72df78752a79abed177ddf51dc83e36335ceb4bd
bf4b567fef17c71ed6696287daff4f47c5717e2b
refs/heads/master
2021-01-10T10:46:56.856559
2015-10-03T20:17:05
2015-10-03T20:17:05
43,613,184
2
3
null
null
null
null
UTF-8
C++
false
false
4,955
cpp
/* * PDTL: Parallel and Distributed Triangle Listing for Massive Graphs * Ilias Giechaskiel, George Panagopoulos, Eiko Yoneki * 44th International Conference on Parallel Processing (ICPP), Beijing 2015 * * DOI: 10.1109/ICPP.2015.46 * * https://github.com/giech/pdtl */ #include <stdio.h> #include <stdlib.h> #...
[ "ilias@giechaskiel.com" ]
ilias@giechaskiel.com
7175a5c62c9b356ca7f7d47df2f3492dc931c1f6
2f557f60fc609c03fbb42badf2c4f41ef2e60227
/RecoVertex/VertexTools/interface/VertexTrackFactory.h
ae3b915f7285ec702b489bd8211867aa991413ff
[ "Apache-2.0" ]
permissive
CMS-TMTT/cmssw
91d70fc40a7110832a2ceb2dc08c15b5a299bd3b
80cb3a25c0d63594fe6455b837f7c3cbe3cf42d7
refs/heads/TMTT_1060
2020-03-24T07:49:39.440996
2020-03-04T17:21:36
2020-03-04T17:21:36
142,576,342
3
5
Apache-2.0
2019-12-05T21:16:34
2018-07-27T12:48:13
C++
UTF-8
C++
false
false
2,097
h
#ifndef VertexTrackFactory_H #define VertexTrackFactory_H #include "DataFormats/GeometrySurface/interface/ReferenceCounted.h" #include "RecoVertex/VertexPrimitives/interface/VertexTrack.h" #include "RecoVertex/VertexPrimitives/interface/LinearizedTrackState.h" /** * Concrete class to encapsulate the creation of a ...
[ "giulio.eulisse@gmail.com" ]
giulio.eulisse@gmail.com
04bca03eca2b6535831599f7bb28c21b68cf0b1b
ad56e3e5cc165c34a0d719c9142603c956862302
/resolutions/codeforces/279B.cpp
b82f607527fe2f4bc0da6bd0a62975be644f1b52
[]
no_license
lucasbivar/competitive-programming
d459808a3e6d11c9ee2e369a920857867a65c697
f0c54a8aaf56bc7ee767449aa212b71681c1ce3c
refs/heads/master
2023-08-04T22:53:05.566875
2021-09-19T00:22:14
2021-09-19T00:22:14
287,143,384
0
0
null
null
null
null
UTF-8
C++
false
false
970
cpp
#include <bits/stdc++.h> #define f first #define s second #define sz size #define pb push_back #define mp make_pair #define REP(i,a,b) for (int i = a; i <= b; i++) #define SQ(a) (a)*(a) using namespace std; typedef long long ll; typedef vector<int> vi; typedef pair<int, int> pii; //Time Complexity: O(n) int max_arr_su...
[ "lucasbivarfonseca@gmail.com" ]
lucasbivarfonseca@gmail.com
1d2e0644371e5e8ea7634887d4d08e49159053be
c4ac0ba432eee4cfc556c5bdfe370f9a6e7d4cf6
/src/http/low_level_session.cpp
1e82b942920097b4d1e7cfd2b14f979a63e5b938
[ "Apache-2.0" ]
permissive
suzuren/poseidon
e1d8b263e786728382957981c1b444a31fda0d84
49e630abee8f116727b6a5d313bee3eabb5a1a8b
refs/heads/master
2021-05-08T17:56:28.150398
2018-01-29T12:45:46
2018-01-29T12:47:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,909
cpp
// 这个文件是 Poseidon 服务器应用程序框架的一部分。 // Copyleft 2014 - 2018, LH_Mouse. All wrongs reserved. #include "../precompiled.hpp" #include "low_level_session.hpp" #include "exception.hpp" #include "upgraded_session_base.hpp" #include "header_option.hpp" #include "../log.hpp" #include "../profiler.hpp" #include "../stream_buffer....
[ "lh_mouse@126.com" ]
lh_mouse@126.com
16a11fa26f1759058f73d1a2c6a221a35c7970ad
b6e636d7d0b0b792bf7baadadca34701a88d6fe9
/src/itunes-foster.cpp
7b9422c8e32bf0165d002c8242469cdefb40fbf4
[]
no_license
remko/rits
b2fc94d95374465325a395fc23960ab1656989c7
2c9f237d13a9cc8fd17b075c3a2cd0bd3ad0af3c
refs/heads/master
2021-01-21T02:30:33.498809
2015-09-06T08:25:35
2015-09-06T08:30:01
35,428,891
0
0
null
null
null
null
UTF-8
C++
false
false
1,663
cpp
#include <iostream> #include <algorithm> #include <set> #include <boost/filesystem.hpp> #include <boost/log/trivial.hpp> #include <boost/log/expressions.hpp> #include <boost/log/core.hpp> #include <boost/algorithm/string.hpp> #include "Song.h" #include "parser.h" #include "tagger.h" #include "encoder.h" namespace fs ...
[ "git@el-tramo.be" ]
git@el-tramo.be