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
f3ac134d4f46db21eda135ec3859792cf5cdeb7b
ba931d1a08187da127a729de58084c74ac6dd2d9
/SymbIoT/lib/RF24Network/RF24Network_config.h
a4ceaa71a7bddb3f259229e8c27d5de2d2c453b1
[ "MIT" ]
permissive
metamorphe/symbiot-app
90c46276360a3db35a9ad0b6e98a314090c36dcd
1575cf9316840b42858ca17304bea65c04954d8a
refs/heads/master
2021-01-19T10:20:49.382827
2015-08-14T01:59:56
2015-08-14T01:59:56
33,014,992
1
0
null
2015-04-08T05:54:18
2015-03-28T00:12:43
C++
UTF-8
C++
false
false
1,335
h
/* Copyright (C) 2011 James Coliz, Jr. <maniacbug@ymail.com> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. */ #ifndef __RF24_CONFIG_H__ #define __RF24_CONFIG_H__ #if ARDUINO < 100...
[ "jhaazpr@gmail.com" ]
jhaazpr@gmail.com
e40ec68387c6739176d75a2ff0ea5b130fbc604d
bad87409a7808de31f6059758836f0b5b9ef5525
/src/gui/inputbox.hxx
e6835ecedc8aeaa7167d818ad9cbd424ee221bad
[]
no_license
treeman/mining-incorporated
0fe33f049f45ea657e2997c00ac7ed648006becf
620a87fb6fa1390daeb2647934cd1955164da314
refs/heads/master
2021-03-12T23:01:50.512779
2014-06-06T10:26:16
2014-06-06T10:26:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
376
hxx
#pragma once #include "std.hxx" namespace gui { class InputBox { public: InputBox(int x, int y); void add_char(char c); void del_char(); void clear(); string get_string() const; void update(const sf::Time &dt); void draw(sf::RenderWindow &w); priv...
[ "tradet.h@gmail.com" ]
tradet.h@gmail.com
4ed67bdea70eef359d0e5c83a9a9b36862dae2a1
31463f5098b5593fafe8de7aaf83112f2a0834e2
/SAD_Total/SAD_Total.ino
ea5e2e3d149014347ea7a1631ad9933a3c86559a
[]
no_license
maddiemackey/GASP
b0e7bc20479fb2d8a05a0484de2b703100eaf13f
9a8d370631fe97d18f767e8dff652a5e5fa44147
refs/heads/master
2020-04-18T07:08:32.388496
2019-01-24T10:34:20
2019-01-24T10:34:20
167,350,008
0
0
null
null
null
null
UTF-8
C++
false
false
9,646
ino
//Libraries #include "Sensor.h" #include "DOFSensor.h" #include "BarometricSensor.h" #include "GPSSensor.h" #include "HumiditySensor.h" //Define the outputs //PWM0=3, PWM1=5, PWM2=9, PWM3=11 Servo myservo; #define Buzzer 3 #define Led1 5 #define servo 11 #define para 9 //Power variables #define currentPower 100 #de...
[ "32735385+maddiemackey@users.noreply.github.com" ]
32735385+maddiemackey@users.noreply.github.com
d98680ea6f4e26b364d7689c45ef696f4cbd7b11
792e697ba0f9c11ef10b7de81edb1161a5580cfb
/tools/clang/test/CodeGenCXX/static-init-4.cpp
e482a79fc0011bf1d6e7e1cbace65157af69c1f2
[ "Apache-2.0", "LLVM-exception", "NCSA" ]
permissive
opencor/llvmclang
9eb76cb6529b6a3aab2e6cd266ef9751b644f753
63b45a7928f2a8ff823db51648102ea4822b74a6
refs/heads/master
2023-08-26T04:52:56.472505
2022-11-02T04:35:46
2022-11-03T03:55:06
115,094,625
0
1
Apache-2.0
2021-08-12T22:29:21
2017-12-22T08:29:14
LLVM
UTF-8
C++
false
false
401
cpp
// RUN: %clang_cc1 -std=c++11 -S -emit-llvm -o - %s -triple x86_64-linux-gnu | FileCheck %s typedef __attribute__((vector_size(4*4))) float float32x4_t; union QDSUnion { float32x4_t q; float s[4]; }; constexpr float32x4_t a = {1,2,3,4}; QDSUnion t = {{(a)}}; // CHECK: @t ={{.*}} global %union.QDSUnion { <4 x float> <f...
[ "agarny@hellix.com" ]
agarny@hellix.com
20170f99738e1208249e02841948a1f0965f2b9a
dcfe8989affa812a26aa672f5bf81923666ea2c3
/libs/ofxLineaDeTiempo/src/Controller/TrackController.cpp
16e54f6a35b281fae2aae0f6fd4026d00fcc9b27
[ "MIT" ]
permissive
Jonathhhan/ofxLineaDeTiempo
ea7753e5c29595ec11d2e8088b87b5a7e42b3afb
cefbfe790370bc85a6c0111204eecdfb1bb2d5fc
refs/heads/master
2023-06-25T18:24:00.361585
2023-02-08T13:33:24
2023-02-08T13:33:24
577,052,060
0
0
null
null
null
null
UTF-8
C++
false
false
5,611
cpp
// // TrackController.cpp // tracksAndTimeTest // // Created by Roy Macdonald on 3/8/20. // #include "LineaDeTiempo/Controller/TrackController.h" #include "LineaDeTiempo/Controller/TrackGroupController.h" #include "LineaDeTiempo/Data/KeyframedData.h" namespace ofx { namespace LineaDeTiempo { TrackController::Tra...
[ "macdonald.roy@gmail.com" ]
macdonald.roy@gmail.com
0182c7a6b1ac1e4211e9e579a95942771e48e71c
5f4df9e92ae16cc5f18e8c68c4d707cb907c819d
/Lab1_InfixToPostFix/Stack.h
a2c7759d76bd73f2d48fb4ea61369bde36c5d482
[]
no_license
g12mcgov/CSC221
34ce973d68a729b442821b17dc57dfdec39b19ed
0439a219775a350e15dee016e475c00c21cb04ce
refs/heads/master
2021-01-19T08:54:35.380920
2015-04-20T13:48:36
2015-04-20T13:48:36
18,536,204
0
1
null
null
null
null
UTF-8
C++
false
false
1,618
h
#ifndef STACK_H #define STACK_H ///////////////////////////////////////////////////// ////Includes///////////////////////////////////////// ///////////////////////////////////////////////////// #include <iostream> #include <fstream> #include <cstdlib> #include <stdlib.h> #include <iomanip> #include <sstream> #include <...
[ "grant@cobrain.com" ]
grant@cobrain.com
140d00246ada36c78865dc727c7bc289187d629d
93b24e6296dade8306b88395648377e1b2a7bc8c
/client/Client/WXClient/Network/PacketHandler/CGCharUpdateCurTitleHandler.cpp
93062b90103e10edc375f07d42b5c7f1320d3f2a
[]
no_license
dahahua/pap_wclinet
79c5ac068cd93cbacca5b3d0b92e6c9cba11a893
d0cde48be4d63df4c4072d4fde2e3ded28c5040f
refs/heads/master
2022-01-19T21:41:22.000190
2013-10-12T04:27:59
2013-10-12T04:27:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
290
cpp
//CGCharAllTitlesHandler.cpp #include "stdafx.h" #include "CGCharUpdateCurTitle.h" UINT CGCharUpdateCurTitleHandler::Execute( CGCharUpdateCurTitle* pPacket, Player* pPlayer ) { __ENTER_FUNCTION return PACKET_EXE_CONTINUE ; __LEAVE_FUNCTION return PACKET_EXE_ERROR ; }
[ "viticm@126.com" ]
viticm@126.com
1a40637fcc813d3dbd0e66be945d5e6f4a78e74e
d8b6f5ef19d80b597304818004197134b023f3dc
/jitlang/compiler/LLContext.cpp
1056a6a52c5a9f98a920840270d4121f68453982
[]
no_license
jamsterwes/jitlang
b0d98a67e1f1c3b2b73ffc716623cbc00f3cf002
82222480838217f9eac5027abb6ebb08285cf9f6
refs/heads/master
2023-02-17T11:10:02.924759
2021-01-16T20:07:07
2021-01-16T20:07:07
328,050,103
0
0
null
null
null
null
UTF-8
C++
false
false
1,445
cpp
#include "LLContext.h" #include <iostream> #include "TypeBuilder.h" // Fix "unary minus operator ..." errors in LLVM headers. #pragma warning (disable : 4146) #include <llvm/IR/LegacyPassManager.h> #include <llvm/Support/Host.h> #include <llvm/Support/TargetRegistry.h> #include <llvm/Support/TargetSelect.h> #include ...
[ "jamsterwes@gmail.com" ]
jamsterwes@gmail.com
c76ea1008923bf566d4c65b7ce1995459478958d
794106edca40395f7ce709631a3836f3ddd94e50
/src/01/08.cc
23bbb50130b34f538dd538f5bda760aba1ce8dc2
[]
no_license
hellojack312/CPP-Primer-4th-Edition
263d4db01eb0ba9b3ad4b8d0ef0c787c11afc695
6ed4165746dc3c8b2cbc5e4be5e0bf157e8d03f4
refs/heads/master
2023-03-15T22:51:36.959583
2013-04-25T13:38:23
2013-04-25T13:38:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
551
cc
#include <iostream> int main() { std::cout << "/*"; std::cout << "*/"; //std::cout << /* "*/" */; std::cout << /* "*/ "this works at least" /* */ << std::endl; /* * ☁ 01 [master] rm a.out;g++ 08.cc && ./a.out * rm: a.out: No such file or directory * 08.cc:7:22: warning: missing terminating " char...
[ "Zolomon@gmail.com" ]
Zolomon@gmail.com
61fcc0985c271c6164a5628cd181e8fcf29374ad
64b5c5e0e86733601c268c173c6c89a8dbe9b093
/Blastrick/cpp&h/ranking.cpp
5d7ad8549b1b398c678521413c2c44fc8e6d029e
[]
no_license
Nishin3614/KOKI_NISHIYAMA
ab2ef12de5072b73fe49318a4742fedc5fc23f14
64bc2144f3c7655ab501606fe41bba68ea46f2e0
refs/heads/master
2020-09-30T13:45:25.199250
2020-01-31T07:26:06
2020-01-31T07:26:06
227,298,698
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
2,733
cpp
// ------------------------------------------ // // ランキング処理 [ranking.cpp] // Author : KOKI NISHIYAMA // // ------------------------------------------ #include "ranking.h" /* 描画 */ #include "rank_ui.h" #include "topscore.h" #include "fade.h" // ------------------------------------------ // // マクロ定義 // // --------------...
[ "work.nishio240@gmail.com" ]
work.nishio240@gmail.com
41aacf2cea734394ca3f740a6b95f9fcfb0c8c75
d0de1b487855a91659a71f455259ca86f8868108
/imfusion-plugin/link-pose-plugin/LinkPoseFactory.h
46640ba29a25e555f1b183916c03a3a1b8600836
[]
no_license
jmguerra444/liver-registration
532fdf879247e221b0c766b09cb6279d64ac57ea
4729e734c96d6b5b302765e7b5afe0de84549d12
refs/heads/master
2023-08-28T05:57:21.649894
2021-10-29T11:45:16
2021-10-29T11:45:16
409,575,162
0
0
null
null
null
null
UTF-8
C++
false
false
581
h
/* Copyright (c) 2012-2019 ImFusion GmbH, Munich, Germany. All rights reserved. */ #pragma once #include <ImFusion/Base/AlgorithmControllerFactory.h> #include <ImFusion/Base/AlgorithmFactory.h> namespace ImFusion { class Algorithm; /// AlgorithmFactory for LinkPose plugin class LinkPoseAlgorithmFactory : public A...
[ "jorge.guerra@tum.de" ]
jorge.guerra@tum.de
a5d080a865197f74c440c1122e9d7148f9e85645
e36835daafa74afb51e11bc5dd194bc33bbed9e6
/main.cpp
c4a2bbc868e290fb12f9a9c76a65ace291cbd806
[]
no_license
LHJ159632/schedule
985b36d62bfb3f0607aaf2d01b152e913dac9bd6
cce5564ffe98fc75a42af16c42278ae48ff0d424
refs/heads/master
2021-08-30T19:36:51.741260
2017-12-19T06:45:40
2017-12-19T06:45:40
114,729,483
0
0
null
null
null
null
GB18030
C++
false
false
1,086
cpp
#include <stdio.h> #include<fstream> #include "utility.h" // 实用程序软件包 #include "schedule.h" // 课程表类 int main(int argc, char *argv[]) { try { char inFileName[256], outFileName[256]; strcpy(inFileName, "course_inf.txt"); ifstream inFile(inFileName); // 输入流文件 st...
[ "33601294+LHJ159632@users.noreply.github.com" ]
33601294+LHJ159632@users.noreply.github.com
ecc6a8a0dfb519bda6668b7bf71b96dd10f1391e
7c0d5fcd8cd00ffaf2dca4a155062c2f70962d66
/Chapter 3/Question9/main.cpp
28670357b3b141836d441fbf5258984a84ad83c1
[]
no_license
dfeinberg922/CppProgrammingExercises
0093432ad141d4517c0c0817949e9aa62ec543ae
5c8456d7930ec3b1d52bcd6013dc6520287f0ab8
refs/heads/master
2021-12-03T15:27:53.853773
2014-08-09T17:55:05
2014-08-09T17:55:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,466
cpp
/* Interest on a credit card’s unpaid balance is calculated using the average daily balance. Suppose that netBalance is the balance shown in the bill, payment is the payment made, d1 is the number of days in the billing cycle, and d2 is the number of days payment is made before billing cycle. Then, the average daily b...
[ "oyebanji05@gmail.com" ]
oyebanji05@gmail.com
ec7c61ecf789defa75a22488a03d44a3e612abdc
60c8abf12ee6a7b0c15fab16df607b528c7d3607
/snap.cpp
8cf0b912f8e85f287b81c09e9045733af1f39356
[]
no_license
hurx/snapshot
74390fbf1f1313881c3db44b166c6f55bbd216ba
3cf9e09bcef29036e36ddd86fd49877f35c0600d
refs/heads/master
2020-08-03T06:25:27.765239
2019-09-29T11:41:11
2019-09-29T11:41:11
211,653,168
1
1
null
null
null
null
UTF-8
C++
false
false
6,757
cpp
#include "snap.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <iostream> using namespace std; //包含库 extern "C" { #include "libavcodec/avcodec.h" #include "libavformat/avformat.h" #include "libswscale/swscale.h" #include "SDL/SDL.h" #include "libswresample/swresample.h" }; //int SnapShot(char...
[ "814161724@qq.com" ]
814161724@qq.com
2e857027bb50a019b6d13f7c8e62b208018542f6
f4f8e9b55f4ec4a6733bd71596c7206d1270094b
/tensorflow-yolo-ios/dependencies/eigen/doc/snippets/MatrixBase_template_int_bottomRows.cpp
30667208a76c9e030f540a50e9176974d2553814
[ "MIT" ]
permissive
initialz/tensorflow-yolo-face-ios
1e71a73c9814a24fc3ca36a61f2abc7a4b32ad63
ba74cf39168d0128e91318e65a1b88ce4d65a167
refs/heads/master
2021-08-19T19:22:34.604864
2017-11-27T07:39:21
2017-11-27T07:39:21
112,151,522
0
0
null
null
null
null
UTF-8
C++
false
false
128
cpp
version https://git-lfs.github.com/spec/v1 oid sha256:5030c4262d3e20a3569d5c6f25b97e5492682ef52ac9a4b2022ee95af6b15b9a size 248
[ "kaiwen.yuan1992@gmail.com" ]
kaiwen.yuan1992@gmail.com
181aac7da92722da9240c09750fc5f884be6d60b
311b50af28c0b483df70f63bf013c6d9df19fa16
/Rook.h
7187f8a21ac972b461d639813e0016804de082e2
[]
no_license
caochao39/ChineseChess
fcbc6362189cd19293929b2dae854e9927a6e387
d3e9164898874093812ca1b8901e0ed95acec344
refs/heads/master
2018-01-08T16:49:56.726601
2015-11-29T07:42:03
2015-11-29T07:42:03
44,746,367
1
0
null
null
null
null
UTF-8
C++
false
false
222
h
#ifndef ROOK_H #define ROOK_H #include "Piece.h" class Rook : public Piece { public: char rook_dir_[4] = {-0x01, -0x10, +0x01, +0x10}; void GenMove(unsigned char cur_pos, unsigned char side, Board board); }; #endif
[ "caochao39@gmail.com" ]
caochao39@gmail.com
b62475b3fe5a098f7cbe0995a90f2f4c965409aa
f494f9e8e5600f4be332e4f1b3d493ebb42acc85
/Game/Definitions.h
f2e3bada5575c26e4339b5369d5f3d07f8c137ae
[]
no_license
Igonorant/SDL_TestGame
c8078be83f3f42f4d76be0489e3d9f00d1aa2639
15a6dfd8bf025c3a880b6050dd00a6f7deb6831b
refs/heads/master
2023-05-05T17:06:44.708860
2021-05-22T14:57:50
2021-05-22T14:57:50
359,257,365
0
0
null
null
null
null
UTF-8
C++
false
false
697
h
#pragma once #include <string> namespace Global { namespace Game { const std::string Name = "MyGame"; const int FrameRate = 60; // frames per second const int ModelRate = 200; // updates per second const float Floor = 1.0f; // position of floor const float Gravity = 0.0001f; } // namespace Game namespace SDL { co...
[ "igolino3@hotmail.com" ]
igolino3@hotmail.com
d4690e72897f2b9a80ed237e2ddba02cd7082ec2
f64fdc5aa218cbbbd61944cd80aab61af136aaa0
/frame/include/FrightenStone/common/component/Impl/BufferAddapterImpl.h
25ec2ff20c85a472febfb20e583f7eb199cb7d12
[ "MIT" ]
permissive
ericyonng/FrightenStone
82ffe8a6192861ed860ec34815eadae2daec6ea2
a957f779770b81392ea51e947d9c1b4b2991327f
refs/heads/master
2023-08-03T17:03:51.865139
2023-07-26T03:47:16
2023-07-26T03:47:16
188,236,349
15
4
MIT
2021-02-07T02:14:27
2019-05-23T13:08:50
C
UTF-8
C++
false
false
12,725
h
/*! * MIT License * * Copyright (c) 2019 Eric Yonng<120453674@qq.com> * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * ...
[ "120453674@qq.com" ]
120453674@qq.com
9c18e1a7a1cb66ef670def2a7ffca780db3e101b
fd379458008be605d487a0d32c547f699e4192c5
/advanced_level_C/1103.cpp
590bd8bf8f7032fa48c95f14454fe7e5bcd33f0b
[ "MIT" ]
permissive
lxb1226/PAT
0a1620341c7cac771a6bc0eb7c71812701e75d98
b729d45032a7c45b43f30b8817fb4ad27e87d33d
refs/heads/master
2021-08-19T18:33:00.100453
2020-04-19T13:13:40
2020-04-19T13:13:40
243,966,931
0
0
null
null
null
null
UTF-8
C++
false
false
966
cpp
#include<cstdio> #include<vector> #include<algorithm> using namespace std; int n, k, p, maxFacSum = -1; vector<int> fac, ans, temp; int power(int x){ int ans = 1; for(int i = 0; i < p; i++) ans *= x; return ans; } void init(){ int i = 0, temp = 0; while(temp <= n){ fac.push_back(temp); temp = power(++i); ...
[ "1944303766@qq.com" ]
1944303766@qq.com
b05121b7b15366c3a180d7af617e17a6f8d657fb
1d3f72644c3bbb9ed2cfa8bd1d3146d1049afc9f
/Sergeant3DEngine/Core/Window/window.h
14686067a929c78099ab16eb7d2f6f9e5d6ebd2d
[]
no_license
bcavus/SergeantEngine
025f1a849e3e5da8345ef483867a76d2cce7f26e
9b088a02d2d6d410d98011f90f9799aafb2a5519
refs/heads/master
2022-09-09T04:49:38.806791
2020-06-05T13:54:51
2020-06-05T13:54:51
265,921,809
0
0
null
null
null
null
UTF-8
C++
false
false
580
h
#include <stdlib.h> #include <stdio.h> #include <iostream> #include <GL/glew.h> #include <GLFW/glfw3.h> #ifndef WINDOW_H #define WINDOW_H class Window { private: int m_close_flag; float m_aspectRatio; GLFWwindow* m_gl_window; public: int m_height; int m_width; private: void Init(); void Dispose(); public: ...
[ "berkay.cavus92@gmail.com" ]
berkay.cavus92@gmail.com
62c0ff955ebd2cbddd71f2b94149b2a383313e1c
30773b649ebd89ffadd16d30fd62740b77ca7865
/SDK/BP_Concertina_classes.h
0903573a85b27e37992697c1186f8951d1a61561
[]
no_license
The-Jani/Sot-SDK
7f2772fb5df421e02b8fec237248af407cb2540b
2a158a461c697cca8db67aa28ffe3e43677dcf11
refs/heads/main
2023-07-09T07:17:56.972569
2021-08-18T23:45:06
2021-08-18T23:45:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
722
h
#pragma once // Name: S, Version: 2.2.1 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //----------------------------------------------------------------...
[ "ploszjanos9844@gmail.com" ]
ploszjanos9844@gmail.com
7db6fe5371d3de9b472ec1619e58e4f336e0e495
333b58a211c39f7142959040c2d60b69e6b20b47
/Odyssey/IsmFlashMonitor/FlashMonitorIsm.cpp
eb0193dfd1e5e4a97cd11bd6ddf6f5403027c2c2
[]
no_license
JoeAltmaier/Odyssey
d6ef505ade8be3adafa3740f81ed8d03fba3dc1a
121ea748881526b7787f9106133589c7bd4a9b6d
refs/heads/master
2020-04-11T08:05:34.474250
2015-09-09T20:03:29
2015-09-09T20:03:29
42,187,845
0
0
null
null
null
null
UTF-8
C++
false
false
3,854
cpp
/*************************************************************************/ // This material is a confidential trade secret and proprietary // information of ConvergeNet Technologies, Inc. which may not be // reproduced, used, sold or transferred to any third party without the // prior written consent of Converg...
[ "joe.altmaier@sococo.com" ]
joe.altmaier@sococo.com
f21b82b53103aefe239806cad41e001c028f396e
124929fba3465de342f14505d907e65d0dd8768a
/UVa Online Judge Solutions/UVa386PerfectQuibes.cpp
4ac4393be11e7d61869977595397e0e8868929af
[]
no_license
ASIFHSTU/Competitive-Programming-by-Ashikur-Rahman-Bhuyain
860fb30e3ffeadc544e5ffab7922d2027e8683ea
025eb4de139a192cd30cd7f1a1642b2a9daffc5d
refs/heads/master
2023-04-05T09:20:10.949897
2021-02-03T14:35:06
2021-02-03T14:35:06
322,692,186
0
0
null
null
null
null
UTF-8
C++
false
false
1,215
cpp
#include <bits/stdc++.h> using namespace std; struct data { int a,b,c,d; data(int _a,int _b,int _c,int _d) { a=_a; b=_b; c=_c; d=_d; } bool operator <(const data &p)const { if(a==p.a){ if(b==p.b) { if(c=...
[ "asifurr087@gmail.com" ]
asifurr087@gmail.com
ba84759ad34406ac145b4da5e69888357ccf2c7f
701e68c1497f5273354c5c967288a9c7d5242f9c
/tests-old/S2CBench_v1.0/AES_CIPHER/tb_aes_cipher.cpp
0f73b3f046d2adc1bc8c39f0329bf63f45c48467
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
anikau31/systemc-clang
b56673b42c90b14f8ac95ce027461533e9c198d5
b8e2c3721392988b26d53629dc19d5c52c1443e9
refs/heads/master
2023-09-01T15:27:15.538724
2023-08-28T16:07:21
2023-08-28T16:07:21
12,997,501
66
23
NOASSERTION
2023-05-26T16:25:29
2013-09-21T15:39:56
C++
UTF-8
C++
false
false
3,908
cpp
//======================================================================================== // // // File Name : tb_aes_cipher.cpp // Description : Testbench // Release Date : 29/07/2013 // Author : PolyU DARC Lab // Benjamin Carrion Schafer, Anushree Mahapatra // // // Revision History //---...
[ "amkaushi@uwaterloo.ca" ]
amkaushi@uwaterloo.ca
fcd49ab79e51433afc85ef8c06d517bee8b9fe27
7b77e8c754c5d568ff876ee12c5bc5bca038f497
/DataInformation/Model/Nodes/HashNode.cpp
43f38e4b47b85f102f84f643dcd5f452427faec7
[]
no_license
rsha7868/DataInformation
3f53d8470037df601fb0ad97f8618040cbb28af4
bf6ec645f32ffccbc67675fa323c6a411c916946
refs/heads/master
2021-05-08T23:56:33.877877
2018-05-21T19:39:23
2018-05-21T19:39:23
119,727,111
0
0
null
null
null
null
UTF-8
C++
false
false
165
cpp
// // HashNode.cpp // DataInformation // // Created by Sharp, Ryan on 5/7/18. // Copyright © 2018 Sharp, Ryan. All rights reserved. // #include "HashNode.hpp"
[ "rsha7868@740s-pl-127.local" ]
rsha7868@740s-pl-127.local
563a8bf4c5552fda8f9af30a9df73a1bcf043c88
695474b33fd364ba62d2af89a2f6ff6ebebd26e0
/IKHWStackQueueLLP1.cpp
e32e1b4f944c737280095493ebe37b465ffd6593
[]
no_license
arnabs542/Fun
bf83616e4884e880464b8d358b6daf4c99521fb9
86a93e042f43836e599572405fa3a14794a84129
refs/heads/master
2021-06-20T00:13:54.534753
2017-07-31T17:31:34
2017-07-31T17:31:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
37,011
cpp
/* * IKHWStackQueueLLP1.cpp * * Created on: Feb 10, 2017 * Author: Raghav Navada */ #define DEBUG_LEVEL DEBUG_LEVEL_DEBUG #include "IKSolution.hpp" bool identicalLinkedListNodes(LinkedListNode *l1, LinkedListNode *l2) { if(l1 == nullptr && l2 == nullptr) return true; if(l1 != nullptr && l...
[ "nraga@yahoo.com" ]
nraga@yahoo.com
03fc53c91eb6bf2d56c9569c34cf234330f7ed44
81c159c8d3f512644ee234e9ee6ee9e68d5d5ab8
/SDL2_Wrapper/d3d_shaders.cpp
705a3c8198328d7ae5d2031d643e594b3214db07
[ "MIT" ]
permissive
andywm/Scenegraph-Demo
de5f02dcdd265d343eb5160dc2b2956b5d14791f
5d8a2904d36f4532aa4a0299b6d3e7a4812cae6d
refs/heads/master
2021-01-21T21:15:16.248697
2017-06-19T17:18:30
2017-06-19T17:18:30
94,797,958
0
0
null
null
null
null
UTF-8
C++
false
false
1,893
cpp
#pragma once #include <d3dcompiler.h> #include<wrl.h> #include<d3d11.h> #include<string> #include "d3d_shaders.h" #include "sys_shader.h" #pragma comment(lib, "d3dcompiler.lib") //move this... /* -------------------- Definition : D3DShader ------------------------------------ */ namespace Render { namespace d3d11 {...
[ "andy6a6@msn.com" ]
andy6a6@msn.com
cdf9e65bcf99bb8b8c503e82bf36d57a8d463b83
54670b434c6706f79f44de5da73ec7ccf80c0391
/BrushRunner/FieldItem.h
d72fffd8f59bb95fb39e676b219125feed027801
[ "MIT" ]
permissive
SomeTake/BrushRunner
fe154d5cf3827256876f663270e2304ea722c908
28208e570a1ba0f969c22bfc0b43a2d1b39bd532
refs/heads/master
2020-05-22T04:04:09.738930
2019-09-12T03:29:19
2019-09-12T03:29:19
186,221,243
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
1,180
h
//============================================================================= // // フィールド上に生成したアイテム [FieldItem.h] // Author : HAL東京 GP12B332-19 80277 染谷武志 // //============================================================================= #ifndef _FIELDITEM_H_ #define _FIELDITEM_H_ #include "Billboard.h" #define FIE...
[ "tp1002217g@gmail.com" ]
tp1002217g@gmail.com
a07ac9f064713d6dbe101a382040d39a3804fe92
2210320cdc2bc127ce9adfee73d343172db36ebb
/Interface/alertinterface.cpp
5a55fb8d64ec2a843d6653282187a0b68efd5368
[]
no_license
JonathanVeg/NovoPedyrum
bad4ab2c5bd0d350b4b82980d71df9b0a671e3aa
69e0e28f91f9427c1a7e73cdf421d16728bf4f02
refs/heads/master
2020-05-17T17:15:23.879938
2014-01-25T23:16:16
2014-01-25T23:16:16
null
0
0
null
null
null
null
ISO-8859-1
C++
false
false
43,749
cpp
/* Copyright (c) 2013, Luiz Cândido da Silva Júnior, heron@jaguati.com.br Copyright (c) 2013, Jonathan, jonathan@jaguati.com.br All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of ...
[ "byteflinger@gmail.com" ]
byteflinger@gmail.com
80213449bf616a61de11bfde6c1986c9b892cd26
5efadb78f0d48ec82c7c4e28afa9a4179f52f772
/OOPL_Project/reumlediter/debug/moc_diagramscene.cpp
66d092b7fb80c38227bfbce614e7cb52509294eb
[]
no_license
YerniyazKaz/Lab
63da209d0eebf83f69bc776508f89e523bdb51b1
877ec46f75f69d92805c5fb2d9fbd32e5d23f59b
refs/heads/master
2021-05-27T08:17:00.215590
2012-04-26T18:45:33
2012-04-26T18:45:33
268,750,870
1
0
null
2020-06-02T08:56:14
2020-06-02T08:56:14
null
UTF-8
C++
false
false
2,422
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'diagramscene.h' ** ** Created: Mon Dec 5 12:39:54 2011 ** by: The Qt Meta Object Compiler version 62 (Qt 4.7.4) ** ** WARNING! All changes made in this file will be lost! ***********************...
[ "wangfrank@Wangteki-MacBook-Air.local" ]
wangfrank@Wangteki-MacBook-Air.local
a7fbbc79fa7263750d2365eb18be6f91651e0812
a79e895411361873ac69a90af5e1f4cad2522b8d
/images/imageMosiacVideo/src/ofApp.cpp
9a27a08481b5546729a86e27b89e99961df73554
[]
no_license
ofZach/recreatingThePast_summer16
802fc36d128aa35fab838a36850ff005cebc7dff
9cf1ca93eb6c9442e1e00ca34135863ba4629e69
refs/heads/master
2020-05-29T14:39:07.483609
2016-07-13T18:55:59
2016-07-13T18:55:59
60,853,554
7
1
null
null
null
null
UTF-8
C++
false
false
2,028
cpp
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup(){ grabber.setup(640,480); } //-------------------------------------------------------------- void ofApp::update(){ grabber.update(); } //--------------------------------------------------------------...
[ "zach@yesyesno.com" ]
zach@yesyesno.com
4cce266092225fe82fe643878eb0cb9c2e694b3c
107d79f2c1802a3ff66d300d5d1ab2d413bac375
/include/eepp/graphics/blendmode.hpp
94133bd31c73e7dfd332ac3df8687f98c93b0007
[ "MIT" ]
permissive
weimingtom/eepp
2030ab0b2a6231358f8433304f90611499b6461e
dd672ff0e108ae1e08449ca918dc144018fb4ba4
refs/heads/master
2021-01-10T01:36:39.879179
2014-06-02T02:46:33
2014-06-02T02:46:33
46,509,734
0
0
null
null
null
null
UTF-8
C++
false
false
815
hpp
#ifndef EE_GRAPHICS_BLENDMODE_HPP #define EE_GRAPHICS_BLENDMODE_HPP #include <eepp/declares.hpp> #include <eepp/graphics/renders.hpp> namespace EE { namespace Graphics { class EE_API BlendMode { public: /** Set a blend function. * @param SrcFactor Source Factor * @param DestFactor Destination Factor */ st...
[ "spartanj@gmail.com" ]
spartanj@gmail.com
7310127a1b972145d12d867989dca7dceaa665a6
bb91f7320eb15f7d666e8d197a70ec2103187da1
/1026scoreForActing/main.cpp
8516de3cf1e3169d51cd8782b7fbdc3b5140ff34
[]
no_license
wpcwzy/NOI-Practice
37c61918fc262248041c6680244047de98ac7aef
327969587830b664b8a37eb66c69672fd4d44a07
refs/heads/master
2020-04-18T06:55:47.895066
2019-01-24T13:39:22
2019-01-24T13:39:22
167,340,203
0
0
null
null
null
null
UTF-8
C++
false
false
438
cpp
#include <iostream> #include <stdio.h> using namespace std; int main() { int score[10]; int max,min,i,j,total; float final=0; total=0; max=0; min=100; for(i=0;i<10;i++) { cin>>score[i]; if(score[i]>max) max=score[i]; if(score[i]<min) min=...
[ "wpc.369623245@live.cn" ]
wpc.369623245@live.cn
2cc87e92d110c20a9e680fc097c44eda196752ac
47cd42ed3e3467a85fe684f6a52176af4f25035a
/DynamicProgramming/MatrixChainMultiplication/MCM.cc
88873ca73d8f67f4989ad2e0ff3a0c559a398e05
[]
no_license
vincent-kwon/DataStructure
64903cb17d768ee0f2d9a04bf4c13ee405a5620a
d75612214b73ff64ddb37db65bf031ab7f8e5db8
refs/heads/master
2021-03-24T12:01:18.478715
2016-10-05T10:43:25
2016-10-05T10:43:25
50,767,180
0
0
null
null
null
null
UTF-8
C++
false
false
1,047
cc
#include <iostream> using namespace std; #define N 5 int left[N]; int right[N]; #define INT_MIN (1<<31) #define INT_MAX (((unsigned int)(INT_MIN))-1) // Matrix no count from 1 // // 0 1 2 3 // (2,3) (3,6) (6,4) (4,5) // // // // 0 1 2 3 4 // // 0 0 // // 1 0 36 // // ...
[ "hobum.kwon@gmail.com" ]
hobum.kwon@gmail.com
74cb351e6e30a110bdd78db67f30458a9af3f816
32486abc53a5da7d8a411088b87f8cb26dd6252b
/Localization2D_Fusion/CFusionPoseEstimator.cpp
b308f22558b8cdf012104264dce0b74549d05309
[ "BSD-3-Clause" ]
permissive
zhangaigh/nav-slam-pkg
ed8b9ea2d10ccfb88c2d634a507597c9ea40f7a9
78922eb4edaab82596dbbbba2393c5900c000d20
refs/heads/master
2021-01-22T01:54:49.317409
2016-03-31T09:23:55
2016-03-31T09:23:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,947
cpp
/* +---------------------------------------------------------------------------+ | Open MORA (MObile Robot Arquitecture) | | | | http://babel.isa.uma.es/mora/ ...
[ "joseluisblancoc@gmail.com" ]
joseluisblancoc@gmail.com
6adddf4f6b767adc1c233014b2ce293c7e9d35ed
82848d6780615d317dae3fbce2d1bec5ccc662ed
/build/build/vs2017/endgame_state.cpp
93268ffba93ffc2374ad1ca5d2cdbd0e1a1af9fe
[]
no_license
dylzy01/AR-Cade
df8b26a83f8b92885eb8717717beef186184a375
25c3a89ca75119b7ef05876866c9516af7a8caef
refs/heads/master
2022-12-11T14:58:14.766061
2020-09-03T15:40:44
2020-09-03T15:40:44
292,612,258
0
0
null
null
null
null
UTF-8
C++
false
false
1,623
cpp
#include "endgame_state.h" endgame_state::endgame_state(gef::Platform * platform, gef::SpriteRenderer & renderer) { m_platform = platform; m_spriteRenderer = &renderer; } endgame_state::~endgame_state() { } void endgame_state::Init() { // Define state m_state = STATE::ENDGAME; // Define background for (int i...
[ "dylanjamesblack@hotmail.com" ]
dylanjamesblack@hotmail.com
93c2c84637b630f8d8227b05f32725935d1a5068
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5752104073297920_0/C++/Anta0/test.cpp
9e7fe21bd312633654f6fd9a33e82b294efa27fa
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
3,489
cpp
#define _CRT_SECURE_NO_WARNINGS #include <string> #include <vector> #include <algorithm> #include <numeric> #include <set> #include <map> #include <queue> #include <iostream> #include <sstream> #include <cstdio> #include <cmath> #include <ctime> #include <cstring> #include <cctype> #include <cassert> #...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
2bc08b6acedefa69b11bcd19d46fb4464a896fc1
141e1ea2c92f3dfb68c3cf25699b40bebfad7007
/psalg/psalg/src/PeakFinderAlgos.cpp
3fa07dae74389e194e16cc43077b32ee4b50b9af
[]
no_license
brtnfld/lcls2
33c4973264f046830fd4d134b7635c2d8353ea15
250fdd53f764b6e9842b959ab36688debd9c49b6
refs/heads/master
2020-03-21T00:41:24.741236
2018-06-25T16:55:38
2018-06-25T16:55:38
137,905,284
0
0
null
2018-06-19T14:46:28
2018-06-19T14:46:27
null
UTF-8
C++
false
false
10,369
cpp
//----------------------------- #include "../include/PeakFinderAlgos.h" #include <sstream> // for stringstream #include <cmath> // floor, ceil #include <iomanip> // for std::typedef //----------------------------- using namespace std; //----------------------------- namespace psalgos { //-----------------...
[ "chuckie82@gmail.com" ]
chuckie82@gmail.com
77905a4ba65fe4989c7240d233b8bc7f20c30120
50c1ee56df9531519145731b08b69e9d6d958a96
/ccms_pro/src/history_Power_data.cpp
522358a71ede719914c095814e2c1f2136514441
[]
no_license
HCnc/ccms_git
8dd75ad855cb76b990e84cd5148425a95d6e7b76
e2bd30ff6cb64e9f612605ead8210d8cd68e3d64
refs/heads/master
2020-04-08T08:01:01.284219
2018-12-27T13:57:51
2018-12-27T13:57:51
159,161,436
1
0
null
null
null
null
UTF-8
C++
false
false
2,931
cpp
/************************ * @Author: Debin Huang * @DateTime: 2018-11-09 10:57:30 * @Description: 等待client端发送ModuleData类型的请求,收到请求之后查询错误表Error_Table,返回数据到client端 ************************/ #include "ros/ros.h" #include "std_msgs/String.h" #include <sstream> #include <stdlib.h> #include "mysql/mysql.h" #include ...
[ "1360887376@qq.com" ]
1360887376@qq.com
cf2cec1565de4e3c4f0981d4f0df9e954bf0fa9d
293d7ab59c9e7ff4e1341fb8e6504a89f3384666
/src/nbla/function/generic/atan2.cpp
c36bd63ad898cf6f918fb69b80fabb6d3f580c50
[ "Apache-2.0" ]
permissive
CrimsonTuna/nnabla
903423b8eb3617c3623952605bcdd77bb5ab2a56
36328e574d77f1cc9ee0051f33159a2dc4f03013
refs/heads/master
2023-03-29T07:12:33.444996
2021-04-11T09:33:21
2021-04-11T09:33:21
356,857,925
0
0
Apache-2.0
2021-04-11T13:09:02
2021-04-11T12:10:47
null
UTF-8
C++
false
false
714
cpp
// Copyright (c) 2017 Sony Corporation. 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 ...
[ "andrew.shin@sony.com" ]
andrew.shin@sony.com
0a3fb203f8f6b71c57cf2398ba84e736b3a60c19
8f2d0f2d3c8d93c300473f382ef8d1e790d6371f
/chrome/browser/ui/views/web_apps/web_app_protocol_handler_intent_picker_dialog_browsertest.cc
6ae37754619397b37fb75d38af6ef6fa0ba04346
[ "BSD-3-Clause" ]
permissive
turbin/chromium
4354dc645d296e4d0dea48de0d62fd0b302f3773
5a9be83657898af786ad32178129252c73996637
refs/heads/main
2023-08-19T05:11:16.921241
2021-09-15T08:56:25
2021-09-15T08:56:25
406,696,228
0
0
BSD-3-Clause
2021-09-15T09:27:08
2021-09-15T09:27:08
null
UTF-8
C++
false
false
7,043
cc
// Copyright 2021 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 <memory> #include <string> #include <utility> #include "base/strings/utf_string_conversions.h" #include "base/test/bind.h" #include "base/test/m...
[ "chromium-scoped@luci-project-accounts.iam.gserviceaccount.com" ]
chromium-scoped@luci-project-accounts.iam.gserviceaccount.com
ea6da08c1084cac65a8c57dccb1d9980dbcaf567
1a8755f847c7f3da0f4ef4d97d94e648d457507b
/Instruction.h
e0d03a9f199ac5b207fb781aa9063e7d59e26134
[]
no_license
dougxc/ast
423669ddd921f47b19e376fc96ce9f7be11f3b12
bfa095ccbb8532ddf865d986f9fef4c304a65031
refs/heads/master
2022-12-25T18:34:08.269560
2020-09-29T10:25:21
2020-09-29T10:26:46
299,581,475
0
0
null
null
null
null
UTF-8
C++
false
false
3,062
h
/* * Copyright (C) 1997, Doug Simon * * See the file "LICENSE.TERMS" for information on usage and * redistribution of this file, and for a DISCLAIMER OF ALL * WARRANTIES. * */ // File: instructions.h // By Doug Simon // Purpose: - provides a type for Sparc8 assembly instruction opcodes as well as #ifndef ...
[ "doug.simon@oracle.com" ]
doug.simon@oracle.com
b41fef8039f3da5cf8b6e56fa47c25641a01b3b1
4ed8364da72396ee833c106eb0fae2beaecdf777
/app/panda/include/panda/panda_cmd.h
e07b5e2759c2ae2f79bb82390f0ed5f3f8001f75
[]
no_license
SSSSSolution/my_lib
ea9d2f7c4bd7896df3762484a063684d3a9b6b93
26fb2f933efcc06888164e23ee7036cb11315180
refs/heads/main
2023-03-01T20:25:37.881756
2021-02-06T14:50:13
2021-02-06T14:50:13
313,587,300
0
0
null
null
null
null
UTF-8
C++
false
false
303
h
#ifndef REALITY_PANDA_CMD_H #define REALITY_PANDA_CMD_H #include "command_processor.h" namespace reality { class PandaCommand : public CommandProcessor { public: PandaCommand(); protected: virtual void print_helper(); virtual void cmd_run(); }; } #endif
[ "wei.huang2@dorabot.com" ]
wei.huang2@dorabot.com
f05a77e512c008cd2733ab1f6221744c3723cee1
61af2d058ff5b90cbb5a00b5d662c29c8696c8cc
/AtCoder/Grand/25/B.cpp
9dbaf2718572b672ef1cc9382fd5c0ea1593ae3b
[ "MIT" ]
permissive
sshockwave/Online-Judge-Solutions
eac6963be485ab0f40002f0a85d0fd65f38d5182
9d0bc7fd68c3d1f661622929c1cb3752601881d3
refs/heads/master
2021-01-24T11:45:39.484179
2020-03-02T04:02:40
2020-03-02T04:02:40
69,444,295
7
4
null
null
null
null
UTF-8
C++
false
false
1,702
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <cassert> #include <cctype> using namespace std; typedef long long lint; #define cout cerr #define ni (next_num<int>()) template<class T>inline T next_num(){ T i=0;char c; while(!isdigit(c=getchar())&&c!='-'); bool neg=c=='-'; neg?c=getchar():0; whi...
[ "i_sukai@live.com" ]
i_sukai@live.com
53187c9aebd4e24bd98d23ded38dc65fa5079df7
e39df736e9afa159a5222fc23eb11a68e0e5bb30
/giaide.cpp
2c0d5e586f43c0a4928d587f7dc209380e4f4f6f
[]
no_license
vuongvanchinh/cplusplus
6ee892d889aafb0dc8b2a9986db27dd27069e939
74dca11a39c55a2bee63adddeaf728f112dd0bab
refs/heads/master
2023-02-17T13:17:06.535790
2021-01-14T14:06:37
2021-01-14T14:06:37
329,632,747
0
0
null
null
null
null
UTF-8
C++
false
false
101
cpp
#include<bits/stdc++.h> using namespace std; int main() { cout<<"hello world!"; return 0; }
[ "vuongvanchinh2001@gmail.com" ]
vuongvanchinh2001@gmail.com
19acd8597dfb72d9fc3995b4197e2dc7723ac8bc
f3b5c4a5ce869dee94c3dfa8d110bab1b4be698b
/third_party/boost_1_48_0/libs/asio/test/stream_socket_service.cpp
0b39bd49d458e8a9129c7a3143a0d4f43c73e9bf
[ "BSL-1.0" ]
permissive
pan2za/ctrl
8f808fb4da117fce346ff3d54f80b4e3d6b86b52
1d49df03ec4577b014b7d7ef2557d76e795f6a1c
refs/heads/master
2021-01-22T23:16:48.002959
2015-06-17T06:13:36
2015-06-17T06:13:36
37,454,161
2
0
null
null
null
null
UTF-8
C++
false
false
729
cpp
// // stream_socket_service.cpp // ~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2011 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // 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) // // Disable autoli...
[ "pan2za@live.com" ]
pan2za@live.com
8c15f5d2b97e57eda60c49fd85951ed46bb63fd9
51fee4434ba1fa31b6023765bd2594e3d72b9897
/src/llmq/quorums_instantsend.h
0c3d9e87dca9db8f5771156a9d287cba6849271b
[ "MIT" ]
permissive
lokalnode/LokalCoin
cc693c4d31abb8e3981d731a342a94b61d85e28b
55572130202013aef57d310bdf8b1f0700ec2168
refs/heads/master
2023-03-21T21:08:03.317041
2021-02-26T11:07:48
2021-02-26T11:07:48
342,528,627
0
0
null
null
null
null
UTF-8
C++
false
false
7,574
h
// Copyright (c) 2019-2020 The Dash Core developers // Copyright (c) 2021 The Lokal Coin developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef LOKAL_QUORUMS_INSTANTSEND_H #define LOKAL_QUORUMS_INSTANTSEND_H #includ...
[ "79501877+lokalnode@users.noreply.github.com" ]
79501877+lokalnode@users.noreply.github.com
56aa524a546e136e5415fffe680947fa2048187c
093de3584b832b93db5890fbf07a05953fea2cee
/Engine/Engine/Systems/CameraManager.h
c3a8fe0303b3437036188b3e23c740c9c86a540c
[]
no_license
dragon1672/C-Game-Engine
3fee0a5e224a13636fd55d46466c0b190381f607
65acfe142ac5f7d4dcb7d179b26bd203a9a0930c
refs/heads/master
2016-09-10T08:58:34.632749
2015-01-25T19:39:36
2015-01-25T19:39:36
25,022,979
1
0
null
null
null
null
UTF-8
C++
false
false
666
h
#pragma once #include <ExportHeader.h> #include <Engine/Systems/ObjectManager.h> #include <Engine/Entity/Components/CameraComponent.h> #include <Engine/Defines/SingletonsDefine.h> #include <Engine/Tools/CollectionEditing.h> #define camManager CameraManager::getInstance() class ENGINE_SHARED CameraManager { ObjectM...
[ "dragon1672@gmail.com" ]
dragon1672@gmail.com
7d43877e1bc071c0595ffabf669b43c552c7c7ae
93d3d32c837acf27cf8fa6defbd7a3b6f68ab5a9
/ChooseRamNum.cpp
b22aa4f044f41e399774e8b8c719fd5dafe89bc1
[]
no_license
Pmx990/UPC_Code
4931e83529cee3cf5dc71bd5cc073219aee79cec
27b9300f54f07b573d09a483aff2c0b887a3d9f8
refs/heads/master
2020-04-07T10:58:31.924884
2018-11-21T22:52:30
2018-11-21T22:52:30
158,307,675
0
0
null
null
null
null
UTF-8
C++
false
false
13,168
cpp
#include <iostream> #include <sstream> #include <fstream> #include <cassert> #include <string> #include "BinarySearchTree.h" #include "DataType.cpp" #include <time.h> using namespace std; //1000 random upcs from the upc_corpus.txt //the output is recorded below as well as in the 100ram.txt int main() { cout << "Lo...
[ "junzhe.liang@bellevuecollege.edu" ]
junzhe.liang@bellevuecollege.edu
ea7ff113b05128c7876bacd2ea146bdc91096f84
2defaf5d67e113c94f0a975d9dcbdd2ebcab5c30
/libs/leetcode/LeetCode101/leetcode_101/chapter_7/583 两个字符串的删除操作.cpp
1660345963d19af5d53533c6d75cd4de4bef51e0
[ "Apache-2.0" ]
permissive
duanshuai123/MyApp_Framework
58bfc824c759551b8f900a772b5370d02e64a507
048e78044e630d380e39ecab66ecdb02c7e8488b
refs/heads/master
2022-11-23T21:07:18.695044
2022-11-21T00:33:15
2022-11-21T00:33:15
200,981,508
0
0
null
null
null
null
UTF-8
C++
false
false
833
cpp
// 583. Delete Operation for Two Strings class Solution { public: int minDistance(string word1, string word2) { int len1 = word1.size(); int len2 = word2.size(); vector<vector<int> > dp(len1 + 1, vector<int> (len2 + 1, 0)); dp[0][0] = 0; for (int j = 0; j <= len2; ...
[ "duanshuai2013@163.com" ]
duanshuai2013@163.com
7186759c7a6ac4ec5264ce51222174a9a9e2108f
ffe748ce809e2ee41b3c3a8c1a6cdc8e7c474a14
/problems/tavaas_sadaas.cpp
5ee66fb3f722ef29e2c1721ae973b5d7eb2f40f0
[ "MIT" ]
permissive
khuzema786/cpp-collection
190de2d13ec7dc6e19f5824e3ec5d809190c2a8d
812cf1bd2bed535330424bbf6fd1e24f42381f56
refs/heads/master
2023-05-02T06:58:18.104659
2021-05-13T20:19:19
2021-05-13T20:19:19
null
0
0
null
null
null
null
UTF-8
C++
false
false
872
cpp
#include <iostream> using namespace std; int main() { /** * Our task is to find out the position of the given element in special * series, consisting of only 7s & 4s */ cout << "\nThis program finds out the position of an element in special series.\n" << endl; int num; cout << "Enter th...
[ "oishikmandal@gmail.com" ]
oishikmandal@gmail.com
783e92b025778f360b7345b2c4df8bc58606fda2
d3893a2ee04e4752cecbc873b369a8fa7113b70d
/third_party/skia_m63/src/gpu/effects/GrConfigConversionEffect.h
470f060d8b67ea25db8e9a97d321245a3a7edebd
[ "BSD-3-Clause", "MIT" ]
permissive
kniefliu/WindowsSamples
e849137467acdfe5351e8fdd31945c37203be3c5
c841268ef4a0f1c6f89b8e95bf68058ea2548394
refs/heads/master
2021-01-09T10:25:49.744308
2020-08-12T12:37:05
2020-08-12T12:37:05
242,264,984
0
0
null
null
null
null
UTF-8
C++
false
false
6,080
h
/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* * This file was autogenerated from GrConfigConversionEffect.fp; do not modify. */ #ifndef GrConfigConversionEffect_DEFINED #define GrConfigConversionEffect_DEFINED #inclu...
[ "liuxiufeng@qiyi.com" ]
liuxiufeng@qiyi.com
a2f75bedb3ced17716b3d2fdf4783549d521cef9
0f75a6cad7bfcbc009739f4d16feccea42a0a3b7
/src/ui_model/sample_track.hpp
8c8c346e2ad28fef27e8b676b7c8375b81c4aa62
[]
no_license
mandja96/RS003-kompozitor
22f8919a26121ec3a5012a8dfabc52d326ed4f8b
32f092d9c29977db3b84dd8910b62777c8f03825
refs/heads/master
2020-12-13T23:44:06.188164
2020-01-09T07:54:26
2020-01-09T07:54:26
null
0
0
null
null
null
null
UTF-8
C++
false
false
431
hpp
#ifndef KOMPOZITOR_SAMPLE_TRACK_HPP #define KOMPOZITOR_SAMPLE_TRACK_HPP #include "track.hpp" #include <utility> class SampleTrack: public Track { Q_OBJECT public: SampleTrack(int id, QList<double> samples) : Track(id), _samples(std::move(samples)) {} [[nodiscard]] QList<double> samples() const {...
[ "theonewithideas@gmail.com" ]
theonewithideas@gmail.com
3cf7d4658501392834b34a528629ebf6836be4a2
40932052bb75ca7181363cdcd5d8f5672645bf28
/Matrix.h
9ba18dc331c6ff6255b0eca8ea36c6f3fe715275
[]
no_license
rostyk-begey/ParallelComputations-SystemOfLinearEquation
d34a1842935dfa477aecc622237e9d7ec61ce3b9
9254b97f70c77007a8b80a3d91a0cf9175964909
refs/heads/master
2023-02-23T16:29:01.330952
2021-01-26T06:34:44
2021-01-26T06:34:44
306,944,971
0
0
null
null
null
null
UTF-8
C++
false
false
1,234
h
#pragma once #include <iostream> template<typename T> class Matrix { T **matrix; size_t nRow; size_t nCol; public: size_t rows() const; size_t cols() const; size_t length() const; Matrix(size_t nRow, size_t nCol); explicit Matrix(size_t nRowCol); Matrix(const Matrix &matr); ...
[ "rostyk.begey@gmail.com" ]
rostyk.begey@gmail.com
75fe55db329f3db24601d004fdd22feb6e1757fd
300d91dda26ebd0b9ae43253577ec1eef2280dd4
/src/FlowSensor.h
827c07ad65ebfb683e19c2e420a2e71d69da63af
[]
no_license
marcpiulachs/FlowSensor
d51218f92764503d9d5e39938c339c190c7040eb
9509a9f65d7026ed2ff15a608382e43e5ee529f8
refs/heads/master
2022-04-28T04:51:14.383638
2020-04-30T12:52:06
2020-04-30T12:52:06
260,210,715
0
0
null
null
null
null
UTF-8
C++
false
false
738
h
#ifndef FLOWSENSOR_H #define FLOWSENSOR_H #include "Arduino.h" volatile static unsigned long pulseCount; class FlowSensor { public: FlowSensor(int pin); void begin(); void run(); // Returns current timer as formatted string HH:MM:SS char* getTotalVolume(); char* getVolumePerMinute(); private: int _pin; byte ...
[ "marc.piulachs@live.com" ]
marc.piulachs@live.com
0579d459e185c8c4b1c4953bbc7a7666bf72d893
b3841a7216426a3eb60df461296a1b868b08368b
/06Polymorphism_Classes/Postcard.h
f02eb9051533611b6dd07fd44715a29ab743c51e
[]
no_license
CS-Pacific-University/06polymorphism-PortiaBailey
54b7ebb8929e7dd7b8531ae50c755d7a46c0f944
eb4054907bbedc19fa8f904f01d495841ef83bff
refs/heads/master
2023-04-24T12:33:12.242073
2021-05-04T16:45:18
2021-05-04T16:45:18
362,581,825
0
0
null
null
null
null
UTF-8
C++
false
false
734
h
//*************************************************************************** // File name: Postcard.h // Author: Portia Bailey // Date: 4/29/21 // Class: CS250 // Assignment: Polymorphism // Purpose: Header file for class postcard //*******************************************************************...
[ "bail6757@pacificu.edu" ]
bail6757@pacificu.edu
9784e8452de4eebf7db7d48a330ede9bc13cabb9
991e6fc4f52e792ea9fa8defe1cf8456e69a95df
/Path Planning/src/PathPlanner/Trajectory.h
479d7d8aea0b28170e6041112110d9ddeef9cf06
[ "MIT" ]
permissive
ai-tribunsky/self-driving-nanodegree
af5ea4e5adba5e78d0f3136d66eb18a2126aa1e3
d9bfa9819bc59841fc40d9f85355ca7d16c202f0
refs/heads/master
2020-12-19T19:20:51.871424
2020-07-12T17:29:22
2020-07-12T17:29:22
235,827,561
0
0
null
null
null
null
UTF-8
C++
false
false
548
h
// // Created by ai-tribunsky on 7/10/20. // #ifndef PATH_PLANNING_TRAJECTORY_H #define PATH_PLANNING_TRAJECTORY_H namespace PathPlanner { struct State { double position; double velocity; double acceleration; double jerk; double timestamp; }; class Trajectory { ...
[ "ai.tribunsky@gmail.com" ]
ai.tribunsky@gmail.com
308a102f92ebeb8824d38882a18d59295391d7c0
2f49e6f93a99523636f14f399d784f682adfd142
/Sources/GameApp/ItemStore.h
10642dcdc6d511bf1e3df45f96f59fb754e2b438
[]
no_license
overflowsc/inf4715
26a1e1850b0fda13a19c1562c73d56ee5f26bcde
d9dc62793dfa58f3bb7b146033e4084a8ecc4bc7
refs/heads/master
2021-01-18T07:43:49.197883
2015-02-08T08:55:53
2015-02-08T08:55:53
30,485,685
0
0
null
2015-02-08T08:45:44
2015-02-08T08:45:43
null
UTF-8
C++
false
false
752
h
/// /// Copyright (C) 2014 - All Rights Reserved /// All rights reserved. Mathieu M-Gosselin /// /// @brief Item inventory /// #ifndef ITEMSTORE_H #define ITEMSTORE_H #pragma once #include "VCNUtils/Observer.h" #include <map> using namespace patterns; struct ItemStoreData { std::string registeredId; std::stri...
[ "mathieumg@gmail.com" ]
mathieumg@gmail.com
27380e340fb56d13fc76ae049792b9d8462669b3
335c7d3d44824b935e1d0b36e4b15faed15c7231
/source/login.cpp
c9d44e3f2a1754f5a1e2926527d9450af47d7242
[]
no_license
hrsantiago/magebomb
c7606a857d5b7b6bbe46c09603235b97153d3b71
edc0346e661e772b9ff31181b588c1e83ce3cf80
refs/heads/master
2021-01-23T22:05:58.314314
2013-12-04T21:06:28
2013-12-04T21:06:28
14,935,868
2
2
null
null
null
null
UTF-8
C++
false
false
26,263
cpp
#include <windows.h> #include <vector> #include <string> #include <time.h> #include <boost/thread.hpp> #include <boost/tokenizer.hpp> #include "Login.h" #include "NetworkMessage.h" #include "Data.h" #include "Config.h" #include "ConstTibia.h" extern unsigned short attackDelay, exhausted, tibiaVersion; ...
[ "henrique_santiago93@hotmail.com" ]
henrique_santiago93@hotmail.com
8166592a6e60a54659d2a46d3af3becf47cba4bf
eae892cd675bcead7087d3645e92b1cef6bcafbc
/QtConsoleApplication1/main.cpp
61e86ca1e20a86855d08126ece70efa20e9bb94e
[]
no_license
SailorLou/vitkitk
e4f654aa643bd130fabe3c3c959ef9e7a3162742
b31ad14c9ad762e0ae1f3877781db957f9143ea5
refs/heads/master
2020-06-18T16:03:18.121680
2019-08-29T01:33:25
2019-08-29T01:33:25
196,357,730
1
0
null
null
null
null
WINDOWS-1252
C++
false
false
6,011
cpp
#include <QtCore/QCoreApplication> #include <QSettings> #include <QTextStream> #include <fstream> #include <iostream> #include <string> #include <QIODevice> #include <QDebug> #include <sstream> #include <QFile> #include "Test.h" #include "Base64.h" #include "Vigenere.h" #include <QDataStream> #include "XOREncryption....
[ "loufuyi@163.com" ]
loufuyi@163.com
d4aa0c233e28ce946d1a79a37da2220a9223b71a
eec62b365b4278cdd206c73d8d795201128f20bc
/Generated Files/Microsoft.UI.Composition.Internal_p.h
3c7493a9cc415845c4dd338bcb4a3c91299a0f39
[]
no_license
AnFunctionArray/CWebView2
81f6812aabbda569b4f9eae7c4124998dfa7120d
e3ac19ab786da04d3fea886390080ae7c6b35a24
refs/heads/master
2022-12-10T09:17:27.790085
2020-08-13T09:23:47
2020-08-13T09:23:47
286,966,624
1
0
null
null
null
null
UTF-8
C++
false
false
47,686
h
/* this ALWAYS GENERATED file contains the definitions for the interfaces */ /* File created by MIDL compiler version 8.01.0622 */ /* at Tue Jan 19 05:14:07 2038 */ /* Compiler settings for C:\Users\sasho\AppData\Local\Temp\Microsoft.UI.Composition.Internal.idl-66e6238b: Oicf, W1, Zp8, env=Win64 (32b run), ta...
[ "sasho648@gmail.com" ]
sasho648@gmail.com
3e8361e3df76f5f6a660532a313f31b177de9397
18da01143c6a560df34884eeb5be6e4a7c744e24
/I_GGX64/7/7对1/2炮5兵对1马.cpp
d0ac0e7965869a4bd08b32d504cbb8660d96c570
[]
no_license
alanthinker/NewGG
974832e6738b1cd0df01ab2c5b94489a4ccf53e9
ead7b553954336b76a476922005cc578f68cc6f1
refs/heads/master
2022-07-05T02:46:18.030741
2020-05-16T14:03:36
2020-05-16T14:03:36
264,444,924
0
0
null
2020-05-16T13:37:04
2020-05-16T13:37:04
null
WINDOWS-1252
C++
false
false
816
cpp
#ifndef END_my_m_MT_R_2pao_5pawn_B_1ma #define END_my_m_MT_R_2pao_5pawn_B_1ma #include "..\\..\\chess.h" #include "..\\..\\preGen.h" #include "..\\..\\endgame\mat.h" #include "2ÅÚ5±ø¶Ô1Âí.cpp" #include "..\\..\\white.h" #else #include "..\\..\\black.h" #endif void my_m_MT_R_2pao_5pawn_B_1ma(typePOS &POSITION, Eva...
[ "keersun@qq.com" ]
keersun@qq.com
5c1e51b23f0e4004652133bacc1cd8b7c7e04451
163f1a7618fade8ad5201330b263e9dc0323024b
/Lab8 - Wyjatki2/MyExceptions.h
938174e2d257f35331a14785256458c482d26e4d
[ "MIT" ]
permissive
Keikeu/CPP-Laboratories
846564827bc4e04fc26a05e0dea11ce498b68564
6030838ce666ab42755754523e4513a32b586a65
refs/heads/master
2020-04-10T20:32:10.508375
2018-04-26T11:57:32
2018-04-26T11:57:32
124,286,844
0
0
null
null
null
null
UTF-8
C++
false
false
75
h
#pragma once using namespace std; class MyException { public: private: };
[ "karolina.m.placek@gmail.com" ]
karolina.m.placek@gmail.com
c6d1e876cf3ebac909bf296190077b539e9e255e
fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd
/content/public/browser/browser_context.h
eff149812e0e169c304d625c90baa720bf7caf61
[ "BSD-3-Clause" ]
permissive
wzyy2/chromium-browser
2644b0daf58f8b3caee8a6c09a2b448b2dfe059c
eb905f00a0f7e141e8d6c89be8fb26192a88c4b7
refs/heads/master
2022-11-23T20:25:08.120045
2018-01-16T06:41:26
2018-01-16T06:41:26
117,618,467
3
2
BSD-3-Clause
2022-11-20T22:03:57
2018-01-16T02:09:10
null
UTF-8
C++
false
false
12,114
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 CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ #define CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ #include <stddef.h> #include <stdint.h> #include...
[ "jacob-chen@iotwrt.com" ]
jacob-chen@iotwrt.com
4cd62839fcb76f8be1edabde8d85e75d7d52b9b6
61db2e724fd264eea7c4eacdf0a0c213035c5eb4
/src/RcppExports.cpp
73671399eb1bcf8f865208d38d4e5954ad541a14
[ "MIT" ]
permissive
r-glennie/pathIntegrateR
9f6a22d5c2294ccf723ef8069a286f4f5abd5086
915932eb8970ef961f93091b11f2f1c34afb0ee0
refs/heads/main
2023-06-30T05:50:32.966516
2021-08-03T13:25:19
2021-08-03T13:25:19
392,324,428
0
0
null
null
null
null
UTF-8
C++
false
false
1,409
cpp
// Generated by using Rcpp::compileAttributes() -> do not edit by hand // Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 #include <RcppEigen.h> #include <Rcpp.h> using namespace Rcpp; // sparse_action Eigen::VectorXd sparse_action(const Eigen::SparseMatrix<double, Eigen::RowMajor>& A, const Eigen::VectorXd& v...
[ "glennie@glennies.co.uk" ]
glennie@glennies.co.uk
0b42bd058dac508c10cc563a63d0e6d39418951a
6c02309751f0ed5551cfe8bbf7bef5b2e1eef300
/datastruct/sort/countsort.cpp
cc0aab5e985b267168f5e356304fba551dea420a
[]
no_license
johnnyleeRH/CommonModule
4703dd27e1a09852f8f1f30e3a162c99f1488728
6809b2294942ab663b2723127c723b32db87407b
refs/heads/master
2021-01-22T18:58:26.516411
2018-10-16T07:31:16
2018-10-16T07:31:16
85,142,353
0
0
null
null
null
null
UTF-8
C++
false
false
1,482
cpp
// 计数排序,ref: http://t.cn/E7D8V9R by程序员小灰 // 适用场景:有限范围内的整数排序 // 不足:数列最大最小值差距过大时不适用;数列元素非整数不适用,局限性可以考虑桶排序 #include <iostream> using namespace std; int* countSort(const int* array, const int len) { //1.得到数列的最大值和最小值,并算出差值d int max = array[0]; int min = array[0]; for (int i = 1; i < len; ++i) { if (array[...
[ "joneli1986@163.com" ]
joneli1986@163.com
86c49b79f5d58151ee61dfb68a680405cf768207
7eb4a9d1f7d4ac2949882458786577ffd71a1e30
/温度控制系统wpf/FDD1.0/FDD1.0/HVAC.cpp
45ae0be0b0aee0fad3b49cbd0225e9e36a1e47b3
[]
no_license
hanjf/IDCSYS
e944eec8abc4ac26790d24632f06daf7e2bb950f
9e18de1b3cab9493b77cf9be9904cf321ce282a6
refs/heads/master
2021-01-10T11:04:34.278052
2016-02-25T05:11:48
2016-02-25T05:11:48
47,959,811
0
0
null
2016-01-18T08:09:59
2015-12-14T07:49:22
C++
GB18030
C++
false
false
22,913
cpp
#include "HVAC.H" #include <cmath> #include <iostream> #include <fstream> #include <time.h> #include <stdio.h> #include <string> using namespace std; int ReaddataFileChange(char* filename); int ReadparameterFileChange(char* filename); void Readdata(double value[21][120],int row); void Readparameter(double value[21][5...
[ "719594728@qq.com" ]
719594728@qq.com
e11db10c215135b016ec1c9cc127b44c65816222
4e4d3fb18e52646ac10b2c558fc23c22c508f32c
/stop_the_light.ino
07c2c475372524046e8ca358d8c2015df3486ba6
[]
no_license
brandon-foster/stop_the_light
03d5ed85c9eb853c174cf2dfc075057b26215523
5177e182b28a2ba17827691aab3b9d46000aee89
refs/heads/master
2016-09-06T16:38:10.166815
2013-12-15T20:43:54
2013-12-15T20:43:54
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,522
ino
int ledPins[] = {2, 3, 4, 5, 6, 7, 8, 9, 10}; // array for the pins connected to the LEDs int redLedPin = 6; // red LED pin number (not the index in the array, the actual pin's number) int delayTime = 1000; // milliseconds to wait before moving to next LED int delayDecrement = 100; // milliseconds to decrease delayTim...
[ "brandon.foster.vt@gmail.com" ]
brandon.foster.vt@gmail.com
b76852fc7300862592745677a7596e2c8cb2d56e
a37a879ef40b19dc16d4e0c640f82b1e0984b4ef
/src/common/widget/validators/hide_if_new_validator.hpp
33adfb86e4070ff8485929930b59ef43d8587209
[]
no_license
pombreda/tms
c107f5525d183116fba11c2852b199f6b2567535
87132d2d95da65cd2c0b3aeaacebbb195aa4851a
refs/heads/master
2021-01-22T20:21:25.825997
2013-03-25T12:06:33
2013-03-25T12:06:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
648
hpp
#ifndef _TMS_COMMON_WIDGET_VALIDATORS__HIDE_IF_NEW_VALIDATOR_HPP_ #define _TMS_COMMON_WIDGET_VALIDATORS__HIDE_IF_NEW_VALIDATOR_HPP_ class StringValidator : public wxTextValidator { public: typedef boost::function<std::string ()> GetterFunction; typedef boost::function<void (std::string)> SetterFunction; StringV...
[ "adavydow@yandex.ru" ]
adavydow@yandex.ru
3235b8efafcd243b7d257ed401bc34133eff4dce
cfc1b3963c44acda67761758bd1cf38a0ef9f9f8
/lianliankan_client/netMsg.cpp
f43cb015280d43e9c678473d51f546518d228cb0
[]
no_license
bjtulianliankan/lianliankan
cc3bd85cb3698ed6bdc0407d1ab41ed7d53906c7
a144711d2c4bbaefcd4ca2e5f70cc85d631ccef7
refs/heads/master
2020-05-24T08:43:12.152377
2019-07-02T15:44:20
2019-07-02T15:44:20
187,189,453
0
2
null
null
null
null
GB18030
C++
false
false
12,211
cpp
/* * Name: QinKuai * Status: Finished */ #include "netMsg.h" NetMsg::NetMsg() { this->list_size = 0; this->command = DEFAULT_COMMAND; } NetMsg::NetMsg(std::vector<User>& users, ushort command) { this->users = users; this->list_size = users.size(); this->command = command; } NetMsg::~NetMsg() { while (this->li...
[ "2609935221@qq.com" ]
2609935221@qq.com
05849aa1cdef22327a96e507603c223babcdbbb5
cc3b200a956e69279783d8f31e3a78fbf08ca13c
/src/rx/render/frontend/technique.cpp
be448c89a9c6bf3fbe0a9d2ad14d1f78daadb00d
[ "MIT" ]
permissive
Moneyl/rex
14c94645085c77674b582644df92d5b34661bf61
0f7b3894862f66c71b2af2175b275a1d421b13a0
refs/heads/main
2023-02-02T17:20:58.283072
2020-12-25T20:53:05
2020-12-25T20:53:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
33,308
cpp
#include <string.h> // strncmp #include "rx/render/frontend/technique.h" #include "rx/render/frontend/context.h" #include "rx/render/frontend/module.h" #include "rx/core/json.h" #include "rx/core/optional.h" #include "rx/core/filesystem/file.h" #include "rx/core/algorithm/topological_sort.h" RX_LOG("render/technique...
[ "weilercdale@gmail.com" ]
weilercdale@gmail.com
5a6689ee17906be977b828584a334ae17d62bc9f
aeceaf14f82453f438478fc5473732bd2c0ed93f
/src/objects/map.cc
26f1d1e8575982040e18c7ced294d4cdd7bae6a7
[ "BSD-3-Clause", "Apache-2.0", "bzip2-1.0.6", "SunPro" ]
permissive
DadaIsCrazy/v8
6ca112d384046de140efc8e4fa2d11a48a7285e9
af69745f36c17a2b73d10c262764bea74e8b4698
refs/heads/master
2020-07-13T22:56:32.951851
2019-08-29T09:59:01
2019-08-29T12:32:28
205,169,055
0
0
null
2019-08-29T13:21:48
2019-08-29T13:21:47
null
UTF-8
C++
false
false
104,350
cc
// Copyright 2019 the V8 project 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 "src/objects/map.h" #include "src/execution/frames.h" #include "src/execution/isolate.h" #include "src/handles/handles-inl.h" #include "src/ha...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
f2a040224a81b4d650621213fadca59cb9b5d576
6be06e389a257e4ad5417c590cc14fdc22fd1c44
/main.cpp
3ed68f31ef6528120810f610f7c8345e8c6bb099
[]
no_license
movebot/Dynamic_trajectory_plannig
676f372897349404afdf312df994b254f1bbe466
f380a93b0032550ce38ea17251c5e49bea8afbc7
refs/heads/master
2022-03-03T16:03:27.433561
2019-09-25T11:18:05
2019-09-25T11:18:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
955
cpp
#include <stdint.h> #include <time.h> #include <iostream> #include "include/execute.h" #include "include/grid_input.h" int main() { // int success_cnt = 0; // std::vector<int16_t> stg; // clock_t start, end; // start = clock(); // for (int16_t i = 0; i < 960; ++i) { // // DrawOneMap(i + 1); // if (...
[ "1023695613@qq.com" ]
1023695613@qq.com
d644a7a6e866c82aa56a94a5ef421b99948385dd
90270683c749007275b02af9a4d53401759eb8b6
/UVa/628.cpp
c40de13f9392c00022fff9ae088f5964a2339b39
[]
no_license
IvanAli/CP
b2d2d676e109f827a86623b0a4f2864776b2b8c1
b1fabccbf611b6a0ddb5107f9c2dcf3a94252f62
refs/heads/master
2021-01-01T05:18:31.190748
2016-10-26T02:17:22
2016-10-26T02:17:22
40,802,076
0
1
null
null
null
null
UTF-8
C++
false
false
1,004
cpp
/* * 628.cpp * * Created on: Jul 9, 2015 * Author: Ivan */ // 628 - Passwords #include <cstdio> #include <deque> #include <vector> #include <set> #include <string> #include <cstring> #include <cstdlib> using namespace std; int n, m; char s[100000]; string *input; string *order; void backtrack(int c) { i...
[ "ivanali@outlook.com" ]
ivanali@outlook.com
d781bd40c989e105ad2e503ea1c289ada04f586c
690ab60b1ad7d3195684d2c31c0349935ac3e694
/FsrSetup.cpp
530b0a247075b79577a79fcffbe926bc4e29a720
[]
no_license
bennett1330/TactileMappingHand
b6027602bf071d49142ddf4030d76b9c149e452f
2eaaea2f4c74d8511ce81dfa08c6848a5a74588b
refs/heads/master
2020-03-28T06:46:11.204159
2018-09-07T18:14:45
2018-09-07T18:14:45
147,858,687
0
0
null
null
null
null
UTF-8
C++
false
false
1,176
cpp
#include "FsrSetup.h" int fsr_index; int fsr_middle; int fsr_ring; int fsr_pinky; int init_fsrs() { bcm2835_gpio_fsel(FSR_INDEX_PIN, BCM2835_GPIO_FSEL_INPT); bcm2835_gpio_fsel(FSR_MIDDLE_PIN, BCM2835_GPIO_FSEL_INPT); bcm2835_gpio_fsel(FSR_RING_PIN, BCM2835_GPIO_FSEL_INPT); bcm2835_gpio_fsel(FSR_PINKY_PIN, BCM2835...
[ "mgbennett1330@gmail.com" ]
mgbennett1330@gmail.com
d26410fc7a2f7631f132434769fbc947a0e92ee5
62e7212d6c1f83921729d599f2970c81e41b5e0c
/V4.0/Src/Plugins/org.owm.scite/OwmScite/ScitillaComponent/Printer.h
967a35c71bf31761eebb35823bf177f010f26f54
[]
no_license
safemens/Script.NET
145ec95e6ac53c21bae07e4b34faae6724facc56
3e559d1c617123019fa47d08e379a324c8606312
refs/heads/master
2021-01-15T20:38:35.227089
2018-09-11T08:30:48
2018-09-11T08:30:48
11,521,946
0
0
null
null
null
null
UTF-8
C++
false
false
1,532
h
//this file is part of notepad++ //Copyright (C)2003 Don HO ( donho@altern.org ) // //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 //version 2 of the License, or (at your option) any lat...
[ "script.net@gmail.com" ]
script.net@gmail.com
3b58f708d68d0be803d33f827e777b948c02b119
08943dde7b228ce913d0851ef3f493b7f13dd4c1
/Source/UnrealGB/UnrealGBGameModeBase.h
0801541636c342a65b194a39249cc2e631ffd50a
[ "MIT" ]
permissive
lineCode/UnrealGB
916a79e79e3818c9eff8852c6129d4bd6b81f093
b0681f550e3b1c9dd8a274e69cf1d2dc287271ef
refs/heads/master
2023-06-07T07:25:22.700938
2020-05-24T15:28:21
2020-05-24T15:28:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
295
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "GameFramework/GameModeBase.h" #include "UnrealGBGameModeBase.generated.h" /** * */ UCLASS() class UNREALGB_API AUnrealGBGameModeBase : public AGameModeBase { GENERATED_BODY() };
[ "zarbock@rebound-software.com" ]
zarbock@rebound-software.com
c0a860e28d74326dd7cc38ee7bb46fbb46a5a0b6
e07e3f41c9774c9684c4700a9772712bf6ac3533
/app/Temp/StagingArea/Data/il2cppOutput/mscorlib_System_Collections_ObjectModel_KeyedColle1516412003.h
98f8adf78c40dd41bbec3ec476173055d1a44300
[]
no_license
gdesmarais-gsn/inprocess-mobile-skill-client
0171a0d4aaed13dbbc9cca248aec646ec5020025
2499d8ab5149a306001995064852353c33208fc3
refs/heads/master
2020-12-03T09:22:52.530033
2017-06-27T22:08:38
2017-06-27T22:08:38
95,603,544
0
0
null
null
null
null
UTF-8
C++
false
false
2,739
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.Collections.Generic.Dictionary`2<System.String,Newtonsoft.Json.Utilities.EnumValue`1<System.Int64>> struct Dictionary_2_t2503861289; // System.Collections.Generic.IEqualityC...
[ "gdesmarais@gsngames.com" ]
gdesmarais@gsngames.com
d3234a7ccfd3c2225ac1c294e7528c3f55d56187
548e9087eea5ea27073ec623ffae372be813f1de
/Codeforces/April/A.cpp
57f014c186558d1895eeafd4a96aec3d977b5b3e
[]
no_license
gaoneto/maratona
e70ac7467e1d1fc383338c0b52b110cc2e38f901
056fc8187aeb94321862796fc3cc284a8003f5f0
refs/heads/master
2021-06-07T13:31:27.536135
2019-11-12T11:13:39
2019-11-12T11:13:39
11,587,935
2
0
null
null
null
null
UTF-8
C++
false
false
986
cpp
#include <cstdio> #include <iostream> #include <vector> #include <map> #include <set> #include <queue> #include <stack> #include <utility> #include <cmath> #include <ctype.h> #include <deque> #include <string> #include <string.h> using namespace std; typedef long long ll; char pres[50][50]={ "Washington", "A...
[ "geraldo@ubuntu.(none)" ]
geraldo@ubuntu.(none)
92c635fc36711d2936bb1048a672ea925e6b4227
f122ea7443a8c2aa4306d5c7444fcc4d73fa70b5
/assimetricaImplementacao/transplex.h
69487ae1941e6ae4e68e37da6665b2300f3fd076
[]
no_license
islamifelipe/Transgene-tico-PCV2
67ee01a7ff9decea099e667bcab265ff0b25c484
aa228881c8f25075de8c327d7f9256b469d62525
refs/heads/master
2021-01-22T21:07:02.031499
2017-04-30T00:05:53
2017-04-30T00:05:53
85,386,379
0
0
null
null
null
null
UTF-8
C++
false
false
259
h
#ifndef _TRANSPLEX_H_ #define _TRANSPLEX_H_ #include "Grafo.h" #include <vector> #include "Informacao.h" #include "gurobi_c++.h" void init(Grafo *g); Informacao simplexrelaxado(Grafo *g); Informacao transplex(Grafo *g, Informacao cicloHamiltoniano); #endif
[ "islame-felipe.da-costa-fernandes@etu.unice.fr" ]
islame-felipe.da-costa-fernandes@etu.unice.fr
1c6d3599a302a0757529bdd8d3030709d2cdeb28
9ffbaeabf63551d04564b6d9520f7efea6ea9876
/Ec_WispFlow/oneflow/core/common/protobuf.h
dc81c409092f7e9af5195fe9b6d14c38fa66c08f
[]
no_license
wanghongsheng01/of_runtime_actor
58746a47ec5405d67a3f9561184fb83e5ebe10fe
8f8e1dcf5e02d9605074c97bf869c8b281f1d8ab
refs/heads/master
2023-07-19T07:01:59.405270
2021-09-06T11:14:05
2021-09-06T11:14:05
403,587,807
1
0
null
null
null
null
UTF-8
C++
false
false
8,928
h
/* Copyright 2020 The OneFlow 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...
[ "2496533749@qq.com" ]
2496533749@qq.com
0edd0cb704b1d45130bf5decfa52ad7f28dbf164
71387741a6519e66ac81c2d7f233f9b58ca94231
/catkin_ws/install/include/image_proc/DebayerConfig.h
a2f42f1d34e8047b4a2b9768deb299e0e62865ec
[ "BSD-3-Clause" ]
permissive
GAVLab/ros-hab-dcs
98aa81e34d6381533a2669f0abe04704cd1ad4cd
ad859f06aa1f6fd43ade65ccad13f3519c42da79
refs/heads/main
2023-04-17T05:29:14.703000
2021-04-25T15:59:49
2021-04-25T15:59:49
313,475,597
1
0
BSD-3-Clause
2021-04-25T15:37:07
2020-11-17T01:40:43
Makefile
UTF-8
C++
false
false
21,833
h
//#line 2 "/opt/ros/noetic/share/dynamic_reconfigure/cmake/../templates/ConfigType.h.template" // ********************************************************* // // File autogenerated for the image_proc package // by the dynamic_reconfigure package. // Please do not edit. // // ********************************************...
[ "mattcastle38@gmail.com" ]
mattcastle38@gmail.com
02a97aad958eea25eeb271ebd2068e249d38a422
5df3e4ac56550976f0a292d1df4e0acf62159deb
/Stack/Stack.h
aea35711b9ee311e1d4f9298496ac2856468a8e9
[]
no_license
AlexShSh/iLab
ea04c235149eac838b1815f6e99d0a39d316d8ba
d66a9117a9320c040c66a604d08eb573258d662e
refs/heads/master
2021-05-06T20:16:51.204110
2018-04-12T14:30:58
2018-04-12T14:30:58
112,373,348
3
0
null
null
null
null
UTF-8
C++
false
false
1,072
h
#ifndef STACKCALCULATE_STACK_H #define STACKCALCULATE_STACK_H #include <glob.h> #define STACK_MAX_SIZE 32 #define STACK_ASSERT(stk) stk->_assert(#stk, __PRETTY_FUNCTION__); #define STACK_DUMP(stk) stk->_dump(#stk, __FILE__, __PRETTY_FUNCTION__, __LINE__); typedef int value_t; enum ERROR_CODE { NO_ERROR = 0, ...
[ "shashin.aeh@phystech.edu" ]
shashin.aeh@phystech.edu
62e3e4fac80d41adb0cafc96d339451f45de023b
d26f24a9415c62d9d6a05ba84dcc966ed7b522e0
/Classes/BuilderTest.h
08f2a6c0c6e2c4ef506992d1aec78c2b3ec65240
[]
no_license
usaya/test
03c34a6e43d61c492c4de4deee4c75bf0096f3f1
2f69073fea90b4b913715982052978e786eb710e
refs/heads/master
2016-09-05T16:10:31.390991
2014-04-29T07:39:07
2014-04-29T07:39:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,570
h
// // BuilderTest.h // MyGame20140426 // // Created by Suto Atsushi on 2014/04/29. // // #ifndef __MyGame20140426__BuilderTest__ #define __MyGame20140426__BuilderTest__ #include "cocos2d.h" #include "cocos-ext.h" USING_NS_CC; USING_NS_CC_EXT; class BuilderTest : public CCLayer , public CCBSelectorResolver , publ...
[ "sutoatsushi@Suto-no-MacBook-Air.local" ]
sutoatsushi@Suto-no-MacBook-Air.local
e5a4fbb3dcb6073eee3daedd044eb1bba738cada
023ed02796b6f8d4363810318fdea726859e0411
/src/main.cpp
fb1576f9887d6541f7fc132e334f26d339656cc0
[]
no_license
eccard/Movimento_Planetario
6b5b18bf4a7e41d3cd8e81e00b6586a98710478c
87e888cb4fb0ee095810be2c6540916c3f1e7a6f
refs/heads/master
2021-01-25T09:55:22.928355
2014-12-12T19:39:49
2014-12-12T19:39:49
27,933,910
1
0
null
null
null
null
UTF-8
C++
false
false
205
cpp
#include "mainwindow.h" #include "mywidget.h" #include <QApplication> int main(int argc, char *argv[]) { QApplication a(argc, argv); MainWindow w; w.showMaximized(); return a.exec(); }
[ "felipelugao@id.uff.br" ]
felipelugao@id.uff.br
f0c5c9f7ee3219c16dc2889524c0e4e18fc51628
353ab20466c3a1ea67d80c342a16d837de9055a2
/Array/fact.cpp
a615f0b2adb70ecfceb74c70da2dacba7baa3051
[]
no_license
hgupta0709/dsa450
cb5e82c12744785d3e2ce6467b67d5840cc3107f
b557c102407328dd701b38a8dc5d276c119de7de
refs/heads/main
2023-05-12T04:42:36.419857
2021-06-01T11:09:11
2021-06-01T11:09:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
728
cpp
/* Given an integer N, find its factorial. */ #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; int q = 2; int arr[100000] = {0}; arr[0] = 1; int len = 1; int x = 0; int num = 0; while (q <= n) { x = 0; num = 0; while (x < len) ...
[ "rohanroy2309@gmail.com" ]
rohanroy2309@gmail.com
fd223e61b6368d2d868821e7ceb8a42bffba938d
32020803dbd34cfb6b69be9db4ae3521ebc8c046
/projects/OG-Language/Util/Logging.cpp
c0ebc2c8d35c8eb628aac7325e53d840bc6c2bbc
[ "Apache-2.0" ]
permissive
gsteri1/OG-Platform
2cf873df438e0e202da8381e5db2a3186f15fdc5
e682c31e69cadde06dd3776544913dde17fe41ba
refs/heads/master
2020-12-25T11:42:03.683586
2011-10-14T16:18:00
2011-10-14T16:18:00
2,582,195
1
0
null
null
null
null
UTF-8
C++
false
false
1,467
cpp
/* * Copyright (C) 2010 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ #include "stdafx.h" #include "Logging.h" #include "Unicode.h" #include <log4cxx/propertyconfigurator.h> #include <log4cxx/basicconfigurator.h> LOGGING (com.opengamma.language.util.L...
[ "andrew@opengamma.com" ]
andrew@opengamma.com
9dd6edf35fc1852fd458caee1bd2a3761cfbe5f7
66746f791b1b7227e1d2bb9e11e6a2c6196e6c6d
/Base/Source/Commands/CommandSystem.h
5dc45973f7726de769cfe35e5d320c300477eb94
[]
no_license
Li-Zhaoyuan/AI-Assignment-Framework
eb8f500251a9605972a32ee47b7261d3f4af8d70
3a244f8f91eb5c6338c819cdcee3a7d9a8ab34f9
refs/heads/master
2021-01-12T12:09:42.440996
2017-02-07T05:56:30
2017-02-07T05:56:30
72,325,900
0
0
null
null
null
null
UTF-8
C++
false
false
558
h
#ifndef COMMAND_SYSTEM_H #define COMMAND_SYSTEM_H #include "../GenericECS/GenericSystem.h" #include "../Classes/singletontemplate.h" #include <vector> #include "../Gathering of Components/CommandComponent.h" class CommandSystem : public GenericSystem, public SingletonTemplate<CommandSystem> { public: virtual void...
[ "leesekheng@yahoo.com" ]
leesekheng@yahoo.com
ce6a7f8d952a2aecd1b0e1c8d5fce563dbbf3b04
efe7a4d1ea4fe6dfcbdec16f784c96b912559321
/missingNumSummary/main.cpp
120f1e74d395f7b8bc21d74934c97e08ef05012c
[]
no_license
jianqiuhuang/ProjectEuler
c857b30adb7e6940380c922c9e4a97d82be8e2c1
b1dad152a82c153deee4d52f45f59ab364f25fe3
refs/heads/master
2021-01-10T09:08:02.864773
2015-12-18T21:30:13
2015-12-18T21:30:13
36,188,216
0
0
null
null
null
null
UTF-8
C++
false
false
951
cpp
#include<iostream> #include<string> #include<vector> using namespace std; string helper(int a, int b){ return (a == b) ? to_string(a) + ", " : to_string(a) + "-" + to_string(b) + ", "; } string func(vector<int> &num, int lo, int hi){ if(num.empty()) return helper(lo, hi); string result; int i = 1; //Check befor...
[ "leohuang@JIANQIUs-MacBook-Pro.local" ]
leohuang@JIANQIUs-MacBook-Pro.local
ab1db89750342ce3cce5814942e7ee1123a7d457
f4cfafe698191c6a72fae71850dc82878a5afc3e
/third_party/gfootball_engine/src/menu/league/league_forward.cpp
e0f049a1b996955a5ff24b47161cabd95d7354bb
[ "Unlicense", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0" ]
permissive
nczempin/gfootball
3e9478a5a970f47de2fe59afd98951f1a52efed3
617e9cb6d48b4ac7187b9b3de68bd4ab44ea528e
refs/heads/master
2020-06-01T20:21:40.815706
2019-07-12T21:15:16
2019-07-12T21:15:16
190,915,700
0
0
Apache-2.0
2019-07-12T21:15:17
2019-06-08T17:22:31
Python
UTF-8
C++
false
false
1,297
cpp
// Copyright 2019 Google LLC & Bastiaan Konings // 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 o...
[ "michalski@google.com" ]
michalski@google.com
80950447f767cb7c48aa215fb30276f0a5cf4b2c
8a87f5b889a9ce7d81421515f06d9c9cbf6ce64a
/3rdParty/boost/1.78.0/libs/metaparse/example/getting_started/8_2.hpp
303c3883097ca93902284284b40272f063cc949f
[ "BSL-1.0", "Apache-2.0", "BSD-3-Clause", "ICU", "Zlib", "GPL-1.0-or-later", "OpenSSL", "ISC", "LicenseRef-scancode-gutenberg-2020", "MIT", "GPL-2.0-only", "CC0-1.0", "LicenseRef-scancode-autoconf-simple-exception", "LicenseRef-scancode-pcre", "Bison-exception-2.2", "LicenseRef-scancode...
permissive
arangodb/arangodb
0980625e76c56a2449d90dcb8d8f2c485e28a83b
43c40535cee37fc7349a21793dc33b1833735af5
refs/heads/devel
2023-08-31T09:34:47.451950
2023-08-31T07:25:02
2023-08-31T07:25:02
2,649,214
13,385
982
Apache-2.0
2023-09-14T17:02:16
2011-10-26T06:42:00
C++
UTF-8
C++
false
false
230
hpp
#ifndef BOOST_METAPARSE_GETTING_STARTED_8_2_HPP #define BOOST_METAPARSE_GETTING_STARTED_8_2_HPP // Automatically generated header file // Definitions before section 8.1 #include "8_1.hpp" // Definitions of section 8.1 #endif
[ "frank@arangodb.com" ]
frank@arangodb.com
56d558098d5ec0680d8483e79b6fac73cf00d859
06aaec5006bc58762e326df3fc0a8b575edad0e0
/Dimensional.h
e605f189da3ec3f05d9c76b49fdcf967eb939ee7
[ "MIT" ]
permissive
TimFinucane/truss-genetic
0f4df5cf4a23909cb606edc36541a71daec640ae
ce01273fb2dedc703d8b65f031316442872f7308
refs/heads/master
2021-01-01T03:48:04.407478
2016-05-16T00:59:22
2016-05-16T00:59:22
58,848,869
0
0
null
null
null
null
UTF-8
C++
false
false
2,947
h
#pragma once #include <math.h> struct Vector { Vector() : x( 0.0 ), y( 0.0 ) { } Vector( double xVal, double yVal ) : x( xVal ), y( yVal ) { } double x; double y; double length() const { return sqrt( x * x + y * y ); } Vector operator +( ...
[ "acrethaen@live.com" ]
acrethaen@live.com
bbf1b7627f50dbaa60a5eb945dde32eb88cfd7ae
3442fa55ad884191a7b3f026a9632b7bffa89f36
/qt-packages/Libraries/ThirdParty/eigen/Eigen/src/Householder/Householder.h
00ada35cf46c57df1861b93c27954e8314ce0562
[]
no_license
santiagoom/qt-packages
c109e683729b346ecdbc6d6f149fc3e43f1b0f07
6e2dc3b6f891003756b9566640a4315cd1bce41b
refs/heads/main
2023-07-06T16:46:04.676604
2023-07-04T10:50:24
2023-07-04T10:50:24
312,006,629
0
0
null
null
null
null
UTF-8
C++
false
false
5,541
h
// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2010 Benoit Jacob <jacob.benoit.1@gmail.com> // Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. I...
[ "ingenuity_zero@163.com" ]
ingenuity_zero@163.com
61bdc178119c724a725ab86bf06ba74fe01f1750
a574a1a8ab51b68389c99ba4a2850ac5d3919188
/EllipseController.h
0be885aa9f80a713b592a49a603838005da1eeac
[]
no_license
IdusMartiae/direct2d-demo
3fdfe856fec67ce4767e4134f52aebbee2a81d47
41390d9054aa80b8bb090630361a3c37392d1cec
refs/heads/main
2023-04-13T17:47:29.733359
2021-04-19T17:42:19
2021-04-19T17:42:19
359,510,168
0
0
null
null
null
null
UTF-8
C++
false
false
762
h
#pragma once #include "Common.h" class EllipseController { HWND m_hwnd; ID2D1Factory* pFactory; ID2D1HwndRenderTarget* pRenderTarget; ID2D1SolidColorBrush* pBrush; ID2D1SolidColorBrush* pOutlineBrush; ID2D1StrokeStyle* pOutline; D2D1_ELLIPSE ellipse; D2D1_STROKE_STYLE_PROPERTIES pOutlinePr...
[ "antonzhylko@gmail.com" ]
antonzhylko@gmail.com
237691f57bf3fb52c5967591b245b6a5c260feef
f2339e85157027dada17fadd67c163ecb8627909
/Server/SchemeCenter/Src/SchemeWarSubFunc.h
e60dd4c89ea6261663c2ed1766deb15bcac5dcd8
[]
no_license
fynbntl/Titan
7ed8869377676b4c5b96df953570d9b4c4b9b102
b069b7a2d90f4d67c072e7c96fe341a18fedcfe7
refs/heads/master
2021-09-01T22:52:37.516407
2017-12-29T01:59:29
2017-12-29T01:59:29
null
0
0
null
null
null
null
GB18030
C++
false
false
1,860
h
/******************************************************************* ** 文件名: CSchemeWarSubFuncSetting.h ** 版 权: (C) 深圳冰川网络技术有限公司 2015 - All Rights Reserved ** 创建人: 李有红 ** 日 期: 2017/4/13 ** 版 本: 1.0 ** 描 述: 战场子功能设置脚本 ********************************************************************/ #pragma once #i...
[ "85789685@qq.com" ]
85789685@qq.com
b677cf402c632cc9efd57bbab9bbca22d50227a6
f11cb40613c551350b8f25d9c72085716f337098
/J03/ex04/SuperTrap.cpp
28e6f8d0d00a97c9e7539d984c9ff4330db67010
[]
no_license
avallete/CPPool
e75128a9946e9e9cabe054a62754d28f857fee47
226609f2f1716565df2f6dce39fc87964062188d
refs/heads/master
2021-01-25T08:32:21.382702
2015-10-28T17:03:40
2015-10-28T17:03:40
37,061,370
0
0
null
null
null
null
UTF-8
C++
false
false
697
cpp
#include "SuperTrap.hpp" SuperTrap::SuperTrap(void): ClapTrap( 100, 100, 120, 120, 1, 60, 20, 5, "SuperTrap default") { std::cout << "SUPERTRAP DEFAULT CONSTRUCTOR" << std::endl; return; } SuperTrap::SuperTrap(std::string name): ClapTrap( 100, 100, 120, 120, 1, 60, 20, 5, name) { std::cout << "SUPERTRAP STRING CON...
[ "avallete@e1r3p1.42.fr" ]
avallete@e1r3p1.42.fr
b934290cd43e67e2c2ad407731e23d718fb2de68
aafe7f83bdbb46c8c8677de4afbb9f20efa209dc
/include/Graph.h
b3a65b8317c567e2f362e44dfe11c0e99cdc0a3e
[]
no_license
blueswhen/my_project
23e3ae7064f6846b8d16f8e7198639d1b6c19593
c89d6b44658c97cc5bf8f739e32ac5973c8b8f56
refs/heads/master
2020-12-24T06:33:36.018569
2018-08-19T15:10:09
2018-08-19T15:10:09
28,211,350
3
0
null
null
null
null
UTF-8
C++
false
false
32,831
h
// Copyright 2014-12 sxniu #ifndef INCLUDE_GRAPH_H_ #define INCLUDE_GRAPH_H_ #include <vector> #include <queue> #include <stack> #include <stdlib.h> #include <assert.h> #include <limits.h> #include <unistd.h> #include "include/CountTime.h" #include "include/ImageData.h" #define TERMINAL reinterpret_cast<Edge*>(1) #de...
[ "sxniu@fudan.edu.cn" ]
sxniu@fudan.edu.cn
42a945d23f4f37ff91cd2c28502d67ecf5d37473
c5abf9cac90b2b89fbf6eb58fcac4e2490534d3d
/cout/cout/소스.cpp
6154c89f70ab16a6ed60e4167b7582a259566eae
[]
no_license
jkjan/Studying-C
9c13560501f267b308c7b7e7c9e9e97756394068
f17b0f693894ffbaa0ef986a0a1f7ade48a88049
refs/heads/master
2020-06-18T06:11:04.183296
2020-01-07T03:37:57
2020-01-07T03:37:57
196,190,172
1
0
null
null
null
null
UTF-8
C++
false
false
477
cpp
#include <iostream> #include <stdlib.h> using namespace std; int find(int n); int main() { int i; int num; int cnt = 0; cin >> num; int*tot = (int*)malloc(sizeof(int)*num); for (i = 0; i < num; i++) { cin >> tot[i]; } for (i = 0; i < num; i++) { if (find(tot[i])) cnt++; } cout << cnt; free(tot);...
[ "jkjan@naver.com" ]
jkjan@naver.com
437b89f789d360902a1cd447cc675db9ce931f86
e491c0236ca2435c21e176fa07b93a84ef6bf0fd
/src/invalid_serials.json.h
b1c2c0b12711baa51d749f6e4d5cef446beb8b75
[ "MIT" ]
permissive
docharlow/PIVX
a0e98213247dde4ee2c2bdc1aa5b645cde7d3e71
d20764a59ac9d4be397e5c7586b80b334f0d7838
refs/heads/master
2020-04-03T17:39:49.808790
2018-10-30T20:50:09
2018-10-30T20:50:09
155,454,495
0
0
null
null
null
null
UTF-8
C++
false
false
54,099
h
// Copyright (c) 2018 The SDC developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef SDC_INVALID_SERIALS_JSON_H #define SDC_INVALID_SERIALS_JSON_H #include <string> std::string LoadInvalidSerials() { std::str...
[ "dev@zumy.co" ]
dev@zumy.co
b831a40f975013420889d3315f3e0e12eefbd481
ec1eda2aef80dbdfa3e548440ddbcac1b0715d7f
/AppliedAlgorithmsExamples/plinkoV2.0.cpp
e9f3bf78baa55b4385d55c481312623823e05eba
[]
no_license
TheKnightedHero/myClassExamples
3e6cf1926df61dd2c7b11866671965d1b5d95538
3c9175b1272a03d8e2e27e4374d9a4f9a38eb123
refs/heads/master
2020-03-27T17:05:25.204591
2018-12-04T23:09:18
2018-12-04T23:09:18
146,827,917
0
0
null
null
null
null
UTF-8
C++
false
false
304
cpp
/* A second solution Dr. Baber created for plinko you basically look at every possible path so a game of plinko with 5 rows, there are 15 paths of maximum, what were the decisions made to get to that value? Node (value, MAxSum, StoredAnswerToQuestion(option1,option2)) (20, 37, 'L') */
[ "cherring1@harding.edu" ]
cherring1@harding.edu