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
827040609f79969bbb0e634e890d56ab12d3d28c
a77cae61867e4fb947f88acb4e11603d9cd0f6d1
/LeetCode/Leetcode2115_做菜.cpp
80de632cbf7fccb2bd1f65c099857cc480cfe7af
[]
no_license
CHOcho-quan/OJ-Journey
cbad32f7ab52e59218ce4741097d6fa0ac9b462f
a9618891b5e14790ba65914783e26f8a7aa03497
refs/heads/master
2023-06-09T15:35:27.418405
2023-06-01T00:57:11
2023-06-01T00:57:11
166,665,271
1
0
null
null
null
null
UTF-8
C++
false
false
1,559
cpp
class Solution { public: vector<string> findAllRecipes(vector<string>& recipes, vector<vector<string>>& ingredients, vector<string>& supplies) { vector<string> res; auto supply_set = set<string>(supplies.begin(), supplies.end()); auto recipe_set = set<string>(recipes.begin(), recipes.end());...
[ "574166505@qq.com" ]
574166505@qq.com
2f30e7c9f661717ce37a83cccae7d2e5cd1269ac
dc488c23c45561e359e6397f3debd94990f49f5f
/Baby shark(2).cpp
05b9c67380c2eb6d74bfe3c0eef4bcdeb44bc3fb
[]
no_license
hs-krispy/BOJ
418fb91baa7598c8ca710d3f9e08adf271f512c0
60921938c551f7f5e98b0ffc884feeaf6394c36f
refs/heads/master
2021-07-18T06:11:07.704323
2021-02-26T16:19:39
2021-02-26T16:19:39
233,381,056
0
0
null
null
null
null
UTF-8
C++
false
false
1,437
cpp
// // Created by 0864h on 2020-09-01. // #include<iostream> #include<queue> #include<vector> #include<climits> using namespace std; int dx[] = {-1, 1, 0, 0, -1, -1, 1, 1}; int dy[] = {0, 0, -1, 1, -1, 1, 1, -1}; int N, M, space[51][51], ans[51][51], Max = 0; vector<pair<int, int>> v; int main() { cin >> N >> M; ...
[ "0864hs@naver.com" ]
0864hs@naver.com
89aa50c7a036fe32f8ac3f102fc7b250455635af
b4b4e324cbc6159a02597aa66f52cb8e1bc43bc1
/C++ code/Taiwan Olympiad in Informatics/2016模擬測驗一/Farm.cpp
2ebb0f0362f4c0032ac798410a7f62173c1ecd90
[]
no_license
fsps60312/old-C-code
5d0ffa0796dde5ab04c839e1dc786267b67de902
b4be562c873afe9eacb45ab14f61c15b7115fc07
refs/heads/master
2022-11-30T10:55:25.587197
2017-06-03T16:23:03
2017-06-03T16:23:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
575
cpp
#include<cstdio> #include<cassert> #include<vector> #include<algorithm> using namespace std; typedef long long LL; struct Farm { int x1,y1,x2,y2; }F[100000]; int W,H,N; LL ANS; int main() { // freopen("inB.txt","r",stdin); while(scanf("%d%d",&W,&H)==2) { scanf("%d",&N); for(int i=0;i<N;i++) { scanf("%d%d%d%...
[ "fsps60312@yahoo.com.tw" ]
fsps60312@yahoo.com.tw
293192af5aa2f46b4624409025d98917cc35aecb
4910c0f3d03935fc8ee03f1e9dc20dfdb2c7c04b
/Recien traducido/Geometria/PythagoreanTriplets.cpp
03af9f1e0150120bf2404975d2930fcbd14e445f
[]
no_license
roca12/gpccodes
ab15eeedc0cadc0735651262887b44f1c2e65b93
aa034a3014c6fb879ec5392c51f9714bdc5b50c2
refs/heads/master
2023-02-01T13:49:27.563662
2023-01-19T22:50:58
2023-01-19T22:50:58
270,723,328
3
5
null
null
null
null
UTF-8
C++
false
false
465
cpp
#include <bits/stdc++.h> void pythagoreanTriplets(int limit) { int a, b, c = 0; int m = 2; while (c < limit) { for (int n = 1; n < m; ++n) { a = m * m - n * n; b = 2 * m * n; c = m * m + n * n; if (c > limit) break; ...
[ "44822667+roca12@users.noreply.github.com" ]
44822667+roca12@users.noreply.github.com
8180ae57112c501728597f95571df8a0f845a266
5181e2dd87941613b74be655fd621c13c1032d31
/1. Nhap mon lap trinh_chuong03_mang mot chieu/bai076.cpp
df11573c1af103ac3304e3aac59afbe13e2aa12c
[]
no_license
my-hoang-huu/My-hh
36c57bcc0ff2a6f09d1404af502a63c94dfd7b92
176a0ec629438260ef1a44db82fe1a99a59c809f
refs/heads/main
2023-06-05T03:03:18.421699
2021-05-07T00:36:26
2021-05-07T00:36:26
342,750,649
0
0
null
2021-05-07T00:36:27
2021-02-27T02:18:47
C++
UTF-8
C++
false
false
1,014
cpp
#include<iostream> #include<iomanip> using namespace std; void Nhap(float[], int&); void Xuat(float[], int); float KhoangCach(float, float); void Gan(float[], int, float); int main() { float a[100]; int n; Nhap(a, n); Xuat(a, n); int x; cout << "\nNhap x: "; cin >> x; Gan(a, n, x); return 1; } void Nhap(floa...
[ "hhmy1995@gmail.com" ]
hhmy1995@gmail.com
423f49dfc798a02e367543f2c1a60a675e5085a4
1fa788bb9bcae02b4e78d15cde2139122a4ed87d
/catkin_ws/devel/include/ros_pololu_servo/MotorCommand.h
4747df8140fe1c9f514607b74072ffd096bc2e92
[]
no_license
Zaaler/csci4302_FinalProject
b9af3f17d8cec1327c52a10da5b7ad6f3d4bf730
bb38f901a501459ce260b230f4bc63a2dbb027b9
refs/heads/master
2021-05-09T16:16:20.678745
2017-05-10T23:25:00
2017-05-10T23:25:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,581
h
// Generated by gencpp from file ros_pololu_servo/MotorCommand.msg // DO NOT EDIT! #ifndef ROS_POLOLU_SERVO_MESSAGE_MOTORCOMMAND_H #define ROS_POLOLU_SERVO_MESSAGE_MOTORCOMMAND_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_t...
[ "odroid@odroid.com" ]
odroid@odroid.com
43ed56e2e59c942126cf2db595f0cc8633369798
45c59e5f456f11f1714b2ddf976b62dfebecfa7d
/Case10/0/cz_solid_12/epsilon
06d82de63f0c8288f208a157f2e3f9f41bd0b489
[]
no_license
JoelWright24/Masters-Thesis-in-OpenFOAM
9224f71cdb38e96a378996996c5c86235db9ee13
b6c420b5054494a26a7d65a34835b27be9e0da4a
refs/heads/main
2023-02-20T17:18:13.067439
2021-01-22T19:30:36
2021-01-22T19:30:36
332,039,823
0
0
null
null
null
null
UTF-8
C++
false
false
896
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*-------...
[ "67100764+JoelWright24@users.noreply.github.com" ]
67100764+JoelWright24@users.noreply.github.com
112479992746c128ede72b6445c7d4276e01e888
a5e05718b6f8b402141e6cfd963b340c613200bc
/Submodules/mxml/src/mxml/parsing/GenericNode.cpp
09058552a055078c6941ced99d162965cf7b707b
[ "MIT" ]
permissive
yk81708090/musitkit
8617699d49da9ddea0dc28897c0f6a0895fac9de
7d57e4dd3a21df2dc82f6725accdd89a8560d7d2
refs/heads/master
2022-04-07T08:23:46.894850
2019-12-20T19:25:29
2019-12-20T19:25:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
918
cpp
// Copyright © 2016 Venture Media Labs. // // This file is part of mxml. The full mxml copyright notice, including // terms governing use, modification, and redistribution, is contained in the // file LICENSE at the root of the source code distribution tree. #include "GenericNode.h" namespace mxml { namespace parsing...
[ "zhangpengcheng.zpc@bytedance.com" ]
zhangpengcheng.zpc@bytedance.com
d6ab420b1e94ff5c0a5cd67c6252c7853b4a7f1e
c6def4876d8b21c64105975992f2a8d9c909f724
/Chapter16/16_50.cpp
c56d51bd973226a9b054d0b039c4e9989435551e
[]
no_license
Aaricis/Cpp_primer
e08ebdab8510b4b4973a83a876a00cc6d9287cd1
e5848bce1897b0e807eadaeb27039d0d3d74f426
refs/heads/master
2023-03-14T18:25:10.488315
2021-03-22T14:16:37
2021-03-22T14:16:37
298,735,772
0
0
null
null
null
null
UTF-8
C++
false
false
515
cpp
#include<iostream> #include<string> template <typename T> void f(T t) { std::cout << "void f(T t)" << std::endl; } template <typename T> void f(const T * t) { std::cout << "void f(const T * t)" << std::endl; } template <typename T> void g(T t) { std::cout << "void g(T t)" << std::endl; } template <typename T> vo...
[ "947165603@qq.com" ]
947165603@qq.com
2b3f9a07e0abb6b5a719153486cd479411c4e5e0
22fd3f2330e48e5d5c22b88d2dd6d7659a114b20
/thewayback/src/GameObject.h
4f72c4886128946564c17b05c2dddcafc406a179
[]
no_license
didimoner/thewayback
824a1fdc0827cca54ba13c045e235d9b90ae3490
0c326e1508ade003c2870ca8a4bcffd63d71baa1
refs/heads/master
2023-02-05T15:51:52.143464
2020-12-29T17:59:38
2020-12-29T17:59:38
282,609,025
0
0
null
null
null
null
UTF-8
C++
false
false
753
h
#pragma once #include "pch.h" #include "Vector2f.h" #include "Drawable.h" #include "Entity.h" class GameObject : public Entity, public Drawable { public: struct InitParams { float_t x = 0; float_t y = 0; uint32_t width = 0; uint32_t height = 0; int32_t zIndex = 1; }; p...
[ "didimoner@gmail.com" ]
didimoner@gmail.com
76219811176d98a57076b1cc42cfd99a20783a62
773169c73bfa09c49046997b6aa92df68fec2b4e
/11_Segment_Trees/03_Problems/01_GSS1_SPOJ.cc
56f06fa9b3342a61465390d2f79f91bd1c64c4c1
[]
no_license
the-stranded-alien/Competitive_Programming_CPP
a9995869bf34cc55ce55fa31da7f7b3b9aadb65d
65dac7953fc1cfa8315f7fe40017abae7515d82f
refs/heads/master
2022-12-22T06:39:12.240658
2020-09-16T12:57:28
2020-09-16T12:57:28
270,649,612
0
0
null
null
null
null
UTF-8
C++
false
false
1,971
cc
#include<iostream> #include<climits> using namespace std; #define MAX 54000 #define INT_MIN -22121 struct treeNode { int prefixSum; int suffixSum; int totalSum; int maxSum; }; int arr[MAX + 1]; treeNode tree[(3 * MAX) + 1]; void makeSegmentTree(int idx, int ss, int se) { if(ss == se) tree[idx] = ...
[ "thestrandedalien.mysticdark@gmail.com" ]
thestrandedalien.mysticdark@gmail.com
d4e40894fee6d601e16d4a4a44489102282fddb5
1483544d8af9b148b73da046afdbcc8492769490
/src/AxisAlignedBoundingBox.cpp
a2f9eb88f29ff8d815dffe84c9a89fb467a7875f
[]
no_license
domtsoi/raytracer-domtsoi
a6156cd6887aadf956f2862810b49c64955df29a
33e662ea07db085be68985545b80b50655d619fb
refs/heads/master
2020-03-09T14:47:42.665116
2018-06-15T21:23:16
2018-06-15T21:23:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,472
cpp
// // AxisAlignedBoundingBox.cpp // raytrace // // Created by Dominic Tsoi on 6/1/18. // #include "AxisAlignedBoundingBox.hpp" #include <glm/glm.hpp> #include <vector> #include "Triangle.hpp" #include "Sphere.hpp" #include "Box.hpp" #include "Object.hpp" void AABB::createBox(Object * curObject) { if (curObject...
[ "dominictsoi@yahoo.com" ]
dominictsoi@yahoo.com
9e86550a83f61bfc4c1864150ffef9e7da109388
a2e9c6ce15319bc8ac16ab263f8c411105373938
/include/layers/layer.h
42bf2f3a44c89523569eea946182c5e8161b7a2b
[ "Apache-2.0" ]
permissive
wzzju/caffe_inference
4081de0c4d6f828dd89e3a8d6faa3fcbe7863484
d358489727d5cc775e78a85caace4057b0949f9e
refs/heads/master
2021-03-27T18:53:35.672647
2017-12-30T16:11:50
2017-12-30T16:11:50
115,787,578
0
1
null
null
null
null
UTF-8
C++
false
false
424
h
// // Created by yuchen on 17-12-29. // #ifndef CAFFE_REF_LAYER_H #define CAFFE_REF_LAYER_H typedef enum { LAYER_TYPE_UNKNOWN = 0, LAYER_TYPE_CONV, LAYER_TYPE_FULLY_CONNECTED, LAYER_TYPE_POOL, LAYER_TYPE_ACTIVATION, LAYER_TYPE_SOFTMAX, } layer_type; class layer { public: virtual void fo...
[ "wzzju@mail.ustc.edu.cn" ]
wzzju@mail.ustc.edu.cn
052a98488aa2bb78b30bcb9e5590e109fb696f3b
3593844fd237df13b8f1839beab949f57de27307
/Codeforces/Brazilian2018/10/test.cpp
452bc854aca1c17227eee43e24f89b4656c042d1
[]
no_license
juniorandrade1/Competitive-Programming
d1330cdde646e770c423abf474c0bfc7ef04c4c0
75c11dcfef38088e2367508acfe507f85cfbd36b
refs/heads/master
2021-01-10T09:32:17.051979
2018-05-27T20:06:26
2018-05-27T20:06:26
51,162,932
1
3
null
null
null
null
UTF-8
C++
false
false
2,057
cpp
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; typedef pair<int,int> ii; typedef vector<int> vi; typedef vector< ii > vii; #define INF 0x3F3F3F3F #define LINF 0x3F3F3F3F3F3F3F3FLL #define pb push_back #define mp make_pair #define pq priority_queue #define LSONE(s) ((s)&(-...
[ "junior.andrade.cco@gmail.com" ]
junior.andrade.cco@gmail.com
c4f9b8308791355eb0137d4a9f518d6c7ff4dfe9
e2108cf56b1a0f3fb18f250a881634a1be21c4fc
/app/src/main/cpp/AudioChannel.cpp
7c31ae8a48682e311e2f9aab9274f5909b6db614
[]
no_license
yizhongliu/NativePlayer
c17276b4718fe7694c9123aad0dea90b10ef8d47
ad901eba1bc5610f20a1e8925755799c291241e8
refs/heads/master
2020-07-14T16:59:39.998234
2019-09-16T09:47:35
2019-09-16T09:47:35
205,358,182
0
0
null
null
null
null
UTF-8
C++
false
false
11,550
cpp
// // Created by llm on 19-8-29. // #include "AudioChannel.h" #include "macro.h" extern "C" { #include <libswresample/swresample.h> }; AudioChannel::AudioChannel(int id, AVCodecContext *avCodecContext, AVRational time_base, JavaCallHelper *javaCallHelper) : BaseChannel(id, avCodecContext, time_base, javaCal...
[ "liuliming@iviewdisplays.com" ]
liuliming@iviewdisplays.com
d8bf190939fcf24bb5421ef262885e70f901e64c
887a7ff30a1496e29622ddc9867a8b9a7e686a6d
/HoG/hog_opencv.cpp
9d1aa4f9d7bcc65eda3a33ce24ad6ba3e9729dd3
[]
no_license
DanyEle/SPD_19
906d6f2f4c22b41562615d0df5aa3871329c9de6
557e808372ed40843535bb3e2a20845e000a3753
refs/heads/master
2020-04-25T22:35:59.771327
2019-06-12T15:11:27
2019-06-12T15:11:27
173,116,473
0
1
null
null
null
null
UTF-8
C++
false
false
2,232
cpp
//Daniele Gadler //University of Pisa //Department of Computer Science //Course: Programming Tools for Parallel and Distributed Systems //Year: 2019 //Inspired from the guide at: https://www.learnopencv.com/histogram-of-oriented-gradients/ #include "opencv2/imgproc/imgproc.hpp" #include "opencv2/opencv.hpp" #include <...
[ "daniele.gadler@yahoo.it" ]
daniele.gadler@yahoo.it
f58de0834e284256ed948ecb6d0908d58dae6e31
a89e4164878026b6db880d5a1d089775bb195824
/expensive_calculator/expensive_calculator/expensive_calculator.cpp
0bb4cb1354a645afb97dcc8d4b30c39493a8ac6b
[]
no_license
SierraOffline/CodeLib_Textbook
e3605a599bcaff604c3cee92579e861ba49e00db
219e69acf28a139a387540f5836aa8dc039375a3
refs/heads/master
2016-09-06T17:54:32.521214
2013-07-04T16:15:50
2013-07-04T16:15:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
369
cpp
//Expensive Calculator //Demonstrates built-in arithmetic operators #include <iostream> using namespace std; int main() { cout<<"7+3="<<7+3<<endl; cout<<"7-3="<<7-3<<endl; cout<<"7*3="<<7*3<<endl; cout<<"7/3="<<7/3<<endl; cout<<"7.0/3.0="<<7.0/3.0<<endl; cout<<"7%3="<<7%3<<endl; cout<<"7+3*5="<<7+3*5<<endl;...
[ "laine.nooney@gmail.com" ]
laine.nooney@gmail.com
0acadf1bcd98cd4f0c7e4e1f8a9afcd95e625f1c
d6b4bdf418ae6ab89b721a79f198de812311c783
/ciam/include/tencentcloud/ciam/v20210420/model/ListUserGroupsResponse.h
5500cbca6318e1761e51e64cd1a6031c4b6490eb
[ "Apache-2.0" ]
permissive
TencentCloud/tencentcloud-sdk-cpp-intl-en
d0781d461e84eb81775c2145bacae13084561c15
d403a6b1cf3456322bbdfb462b63e77b1e71f3dc
refs/heads/master
2023-08-21T12:29:54.125071
2023-08-21T01:12:39
2023-08-21T01:12:39
277,769,407
2
0
null
null
null
null
UTF-8
C++
false
false
4,368
h
/* * Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
a3b6d1467c8e4248055849093b375d76692137d1
9508e47b9471a614e367d3e1277d477f1e1a3843
/sys-prog/aup2ex/ux/uxposixipc.cpp
1159f0baf786ad7e073f2492af35ef04886a5b8e
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
rkks/refer
f4dd8e4a0b8fc00c189a1a0aa05359445d36aed4
ae118ce7d4888b5a9bdb43aaaff2569af791f334
refs/heads/master
2022-09-29T08:32:56.961875
2022-09-19T07:30:59
2022-09-19T07:30:59
127,179,189
6
1
NOASSERTION
2022-04-06T03:31:16
2018-03-28T18:04:47
C
UTF-8
C++
false
false
6,212
cpp
/* Copyright 2003 by Marc J. Rochkind. All rights reserved. May be copied only for purposes and under conditions described on the Web page www.basepath.com/aup/copyright.htm. The Example Files are provided "as is," without any warranty; without even the implied warranty of merchantability or fitness for a partic...
[ "ravikirandotks@gmail.com" ]
ravikirandotks@gmail.com
6e154fdbbc0dafc218d19f6c7867c240dd400caf
8d31659116e04c50e43ac62abc7b1c2b74a9e97b
/FileWithExpense.cpp
68a580f2f381eb0ac6d88f61c9743393eb279830
[]
no_license
Vallu89/BalanceManager
12d39ee2284286dd5f3b09b3bcec1b9533ef83b8
590880cfd93bbde55abe035b71871ce419eff555
refs/heads/master
2021-05-25T12:51:56.253493
2020-04-07T19:48:09
2020-04-07T19:48:09
253,761,655
0
0
null
null
null
null
UTF-8
C++
false
false
722
cpp
#include "FileWithExpense.h" void FileWithExpense::writeExpensesIntoFile( Expense expense ) { bool isFileExist = true; xml.Load(FILE_NAME); if (!xml.FindElem("Expenses")) { xml.SetDoc("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"); xml.AddElem("Expenses"); isFileExist = fals...
[ "rafal.zborowski.dev@gmail.com" ]
rafal.zborowski.dev@gmail.com
385e00e42f01fb7abfe0821a0cff0b4d993a9c35
7c33c6f77b135b38f1781346f69c672a8c87f449
/src/share/manipulator/manipulators/post_event_to_virtual_devices/post_event_to_virtual_devices.hpp
fcee72c2be0c0dd65140632be8756a18d7a18ec2
[ "Unlicense" ]
permissive
erikolofsson/Karabiner-Elements
9d75d6340bedf240e61e937b9576783ce051ca8e
88839a6c326c710b7ad9e1a0916e6bf1f04d8c8f
refs/heads/master
2023-01-20T00:48:51.221890
2020-11-28T08:39:39
2020-11-28T08:39:39
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,559
hpp
#pragma once #include "../../types.hpp" #include "../base.hpp" #include "console_user_server_client.hpp" #include "key_event_dispatcher.hpp" #include "keyboard_repeat_detector.hpp" #include "krbn_notification_center.hpp" #include "mouse_key_handler.hpp" #include "queue.hpp" #include "types.hpp" #include <pqrs/karabine...
[ "tekezo@pqrs.org" ]
tekezo@pqrs.org
d59685a9aa712818848739fab86605bd878f3090
92754bb891a128687f3fbc48a312aded752b6bcd
/Algorithms/C++/941-Valid_Mountain_Array.cpp
15fd2c98ca596c6075f962d5b1a0ccb52a0ea473
[]
no_license
daidai21/Leetcode
ddecaf0ffbc66604a464c3c9751f35f3abe5e7e5
eb726b3411ed11e2bd00fee02dc41b77f35f2632
refs/heads/master
2023-03-24T21:13:31.128127
2023-03-08T16:11:43
2023-03-08T16:11:43
167,968,602
8
3
null
null
null
null
UTF-8
C++
false
false
1,497
cpp
// 941. Valid Mountain Array // Runtime: 32 ms, faster than 25.11% of C++ online submissions for Valid Mountain Array. // Memory Usage: 22.5 MB, less than 37.99% of C++ online submissions for Valid Mountain Array. class Solution { public: bool validMountainArray(vector<int>& arr) { if (arr.size() < 3) retu...
[ "hu.fwh@alibaba-inc.com" ]
hu.fwh@alibaba-inc.com
c480f8ec3e07210f55216cf6ce68390f684d4486
c25631ab35cf0798593f2d56b199ee5d48487a75
/Cuphead/Game.cpp
2600111965e32eff7b7f7a75d56fe888b425b3da
[]
no_license
lkjfrf/Cuphead
a4eeb7c597129d24780c5ef650e51acabcbbe91b
11f174a4c53efd889edb99f775ff3203ba485258
refs/heads/main
2023-06-20T12:00:01.923871
2021-07-13T21:02:50
2021-07-13T21:02:50
385,734,634
1
0
null
null
null
null
UHC
C++
false
false
30,895
cpp
#pragma once #include "framework.h"128 #include "Game.h" // include 순서 잘해야됨 #include <cstdlib> //랜덤함수 #include <ctime> //시간으로랜덤함수 seed역할 Game::Game() { } Game::~Game() { } void Game::InitAll() { m_Scene = Introing; m_StageNum = INTRO; m_uIntro.bTrigger = true; m_nScore = 0; m_nHeroHit = 0; m_nHeroHealth ...
[ "lkjfrf@naver.com" ]
lkjfrf@naver.com
e6de4d58137a789b304677b460e2e4b16602ba68
14541a9f2cef091b474677fb9c3baf4ef3a315d0
/ewsclient/ewsattendee.h
54c8d2b47852e208edde15a88ac6b140ed983f01
[]
no_license
StefanBruens/akonadi-ews
45f5b75445c16b9e3a26cd35900212a41663acb4
05ce7e24547fbdb559de55dabda86d337716cfba
refs/heads/master
2021-01-21T23:23:27.304824
2017-10-04T07:52:29
2017-10-04T07:52:29
95,236,655
0
0
null
2017-06-23T16:20:49
2017-06-23T16:20:49
null
UTF-8
C++
false
false
1,736
h
/* This file is part of Akonadi EWS Resource Copyright (C) 2015-2016 Krzysztof Nowicki <krissn@op.pl> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of ...
[ "krissn@op.pl" ]
krissn@op.pl
2b7699f5dc9246e549ac38dde785259dbc4661e4
44e7a328c6927be55370afe1b72baa3d00a59706
/LightningUI/GUI/Media/SndPlayer.h
f98e54f326ca39c3b6d71620cc349a2a6ae884f2
[]
no_license
layerfsd/lightningUI
0c8ad327112f232483f80dc5e94cb59776fc787f
1495cfa270d7f6cc7fa44bd46c85961047d4b8b5
refs/heads/master
2020-03-28T15:14:47.114756
2017-07-22T04:14:17
2017-07-22T04:14:17
148,571,261
1
0
null
2018-09-13T02:37:07
2018-09-13T02:37:07
null
UTF-8
C++
false
false
695
h
#pragma once #include "../../stdafx.h" #include "../Common/ui_common.h" #include <CSRMedia.h> class CSndPlayer { public: CSndPlayer(HINSTANCE hIns, ICSRMedia* media, const wchar_t *filename, BOOL bLoop, DWORD dwWaveId, DWORD dwVol); ~CSndPlayer(void); void start(); void stop(); private: static DWORD playThread...
[ "949926851@qq.com" ]
949926851@qq.com
9834f7f55e9f468647c55651af840af9f9744e0f
cc63948f2d200ac454d210d2f156f7b4885c62f7
/scheduler/fork/test_2/testdir_5/test_5.cpp
b5275e8055f83daa583ff6881f782f5eef3f905f
[]
no_license
Top-jia/http_file_server
8d42a0c0d7340a1f977e4fe0c1e04c699e041caf
b0ca68fa28dd762142991d3e3031d796b38128ee
refs/heads/master
2021-06-13T06:00:36.295477
2021-02-25T18:30:28
2021-02-25T18:30:28
137,880,764
0
0
null
null
null
null
UTF-8
C++
false
false
11,622
cpp
#include<iostream> #include<string.h> #include<stdio.h> #include<assert.h> #include<unistd.h> #include<stdlib.h> #include<sys/types.h> #include<sys/socket.h> #include<arpa/inet.h> #include<netinet/in.h> #include<errno.h> #include<sys/wait.h> #include<fcntl.h> #include<sys/stat.h> #include<stdbool.h> #include<libgen.h> ...
[ "904957684@qq.com" ]
904957684@qq.com
da006877618d04939fa2d7c93ab59ecedc352bcb
d0848bcbdbd7764db256868b989b2e8cdb347cc3
/src/MiniTTHReader_MarkOwen_All_Classes/MiniTTHReader_MarkOwen_ZDD_all_ttDD_HFOR_COR_AvPTll_ttData_P0_0.0015.cxx
044df51582310881d3897cc11b6d479512ee26ee
[]
no_license
ampereira/lipminianalysis
361625f21e4fbb06955bfd4c9daa96f24a9f633d
3a1489274aa154e9c954a391da0ec5a5f5281b0c
refs/heads/master
2020-04-05T23:39:52.035515
2014-05-19T14:49:31
2014-05-19T14:49:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
31,021
cxx
// ################################################################################# // // _ _ __ __ _ _ _ _ // | | (_) | \/ (_) (_) /\ | | (_) // | | _ _ __ | \ / |_ _ __ _ / \ _ __ __ _| |_ ...
[ "lazeroth89@gmail.com" ]
lazeroth89@gmail.com
62387081c38c1536c4124c5aefb4733b6cb7864b
177a1cf48eb6f44dc3eabc640024d53bfea65033
/SevenWonders.cpp
cfd4bf944229a96cc37b84b9a048caf5d751a03d
[]
no_license
JakobKallestad/CKattis
7be3d14e8f8ac11786b24a3a8c8b2482de9d0f73
e96671d8784b3b8e2b8f92e9543f51b58e1f85b2
refs/heads/master
2020-05-27T18:11:01.746300
2019-07-07T17:16:24
2019-07-07T17:16:24
188,737,604
0
0
null
null
null
null
UTF-8
C++
false
false
463
cpp
// // Created by Jakob Kallestad on 2019-05-26. // #include <iostream> #include <string> using namespace std; int main() { string inp; cin >> inp; int t=0, c=0, g=0; for (auto i : inp) { if (i == 'T') { t++; } if (i == 'C') { c++; } if (i...
[ "Jakob.Kallestad@student.uib.no" ]
Jakob.Kallestad@student.uib.no
d95bf6dac8eb5549e5c18a71dcf8c706be044bb8
a86b3ea1b273801eba8b5de7ecf145fb337807c3
/day03/Claim.h
cf536ccd17d473ef40528968fdda72e7d82bdfa1
[]
no_license
ahbonsu/advent-of-code
43f0b2e2fc0bb06e36088267de4501a59b59f68b
92ee497d9d4cda3731f5194800e7d0fd584ac0f3
refs/heads/master
2020-04-09T02:09:50.847398
2018-12-03T18:45:55
2018-12-03T18:45:55
159,930,685
0
0
null
null
null
null
UTF-8
C++
false
false
1,190
h
#ifndef CLAIM_H_INCLUDED #define CLAIM_H_INCLUDED class Claim { private: int _claim_id; int _x_offset; int _y_offset; int _x_length; int _y_length; public: Claim(int claim_id, int x_offset, int y_offset, int x_length, int y_length) { _claim_...
[ "me@0x6168.ch" ]
me@0x6168.ch
47549794e0242403bac4aca18c4bcbf5f82affdb
f954dd8c0073f138b805bd1bd23d7839236d1514
/trunk/V300/369.cpp
3cd6dc866be5f2396f8c9a80846984c261968e35
[]
no_license
BGCX262/zwsoj-svn-to-git
4c68f0aaea879181e671c10a25ef471b57932bec
7d8f3e87db548d497147b594e789ec1882b08652
refs/heads/master
2021-01-22T09:20:25.466080
2015-08-23T06:54:09
2015-08-23T06:54:09
41,244,883
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
671
cpp
/* @JUDGE_ID: 13160EW 369 C++ */ // nCr ªº°ÝÃD //@BEGIN_OF_SOURCE_CODE #include <iostream> using namespace std; typedef unsigned long ULONG; const int size = 300; ULONG board[size]; ULONG find(ULONG m,ULONG n) { ULONG i,j; if( n==0 ) return 1; if( n==1) return m; for(i=0;i<=n;i++) board[i] = 1;...
[ "you@example.com" ]
you@example.com
c91a81b8642a3827165cb3ce1c8ea332bad23160
7c9a37a4175759be24ba998bd8dfcb844adc39df
/LaRinascenteApp/src/Main/SettingsManager.h
8ae3a8e3892c48afb686c292123097df76fd9ce3
[ "MIT" ]
permissive
ImanolGo/LaRinascente
5a0840e95b6fc879f07c30f7b2cc5ae74d528f6d
6086c51bbc6402e647f94090bef70816b2056657
refs/heads/master
2021-08-20T03:33:45.497326
2017-11-28T04:46:28
2017-11-28T04:46:28
111,727,687
0
0
null
null
null
null
UTF-8
C++
false
false
3,270
h
/* * SettingsManager.h * LaRinascenteApp * * Created by Imanol Gomez on 22/11/17. * */ #pragma once #include "Manager.h" //========================== class SettingsManager ============================== //============================================================================ /** \class SettingsManag...
[ "yo@imanolgomez.net" ]
yo@imanolgomez.net
1790d85978fba7ebf9da46635e855012f7e920b7
d84e689d4b587263f62e353e1da559d906056473
/subsecventaCaractere.cpp
3b99feb7a6db7b21ff053376773637cb179a494d
[]
no_license
cosminvoicu/LearnAlgoritms
2c4bc44d01edaae9a2851d39eef6d1e79068a215
1f71641d56d171c6d2943d33c770e15a86f10e52
refs/heads/master
2021-06-24T06:22:58.956608
2020-11-12T05:11:59
2020-11-12T05:11:59
156,120,051
0
0
null
null
null
null
UTF-8
C++
false
false
905
cpp
#include<iostream> #include<string> using namespace std; int main() { char s1[102],s2[102]; char * p; cin.getline(s1,101); cin.getline(s2,101); int lungimeS2 = 0, primulCaracter[1001], caractereConsecutive[1001], caractereC, iterator, validare = 0; for (int i = 0; s2[i]; ++i) { ++lungimeS2; } int ...
[ "voicu_cosmin95@yahoo.com" ]
voicu_cosmin95@yahoo.com
62f358874ac31f691a53781ca92208aa95148c4b
6f06a153a9f2ecaa8dd9b48ebc147508dee79829
/Postboxes/main.cpp
02dcfa543dcd24cf2b5e25e6a32ee6fae6b2b48a
[]
no_license
isobelm/Vision-postboxes
9e0cf074e465836612868bb80887abead39d67b4
a48297c47da45549bd37b53bc2d189d47f3edcba
refs/heads/master
2023-01-23T02:18:23.890831
2020-11-22T18:27:20
2020-11-22T18:27:20
314,039,039
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
2,300
cpp
/* * This code is provided as part of "A Practical Introduction to Computer Vision with OpenCV" * by Kenneth Dawson-Howe © Wiley & Sons Inc. 2014. All rights reserved. */ #include "Utilities.h" #include <iostream> #include <fstream> #include <list> VideoCapture* postbox_video; int main(int argc, const char** arg...
[ "isobel.mahon@gmail.com" ]
isobel.mahon@gmail.com
e01ed44cfd8645d12d8ee7fa1e149738496fc982
b40c7be7981f8dc0183792c5946c19e3c6fee8b9
/sql/common/ComDistribution.cpp
10910a9b642bcaee845f96446f3c7f33b962a708
[ "Apache-2.0" ]
permissive
jmhsieh/core
763530f55d41538ef7c0198e8bd1cc569f4a66e5
a13345b44f9bd9edae73cc8a2410f087ce3a75eb
refs/heads/master
2021-01-15T21:24:15.162737
2014-06-13T22:16:03
2014-06-13T22:16:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,182
cpp
/********************************************************************** // @@@ START COPYRIGHT @@@ // // (C) Copyright 2003-2014 Hewlett-Packard Development Company, L.P. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You m...
[ "steve.varnau@hp.com" ]
steve.varnau@hp.com
4917aac5a171ab8661b0d75ebf53493648d2f708
99f1775d340becb82225a6903733deb3ddc16868
/app/deprecated/profile_para_single_query_top_m_search_hierarchy_merge.cpp
ec13eb997c393cdeba98a47f5770c81268ad140e
[ "GPL-3.0-only" ]
permissive
johnpzh/parallel_ANNS
55910553b403b91505b00c41cc4f3f886422d14f
2116d7bf9207fc62c9a11b1919212506cc5a6447
refs/heads/master
2022-11-16T06:54:19.724830
2022-11-12T20:26:22
2022-11-12T20:26:22
221,076,233
7
2
MIT
2022-11-12T20:26:23
2019-11-11T21:48:05
C++
UTF-8
C++
false
false
12,084
cpp
// // Created by Zhen Peng on 7/29/2020. // #include <iostream> #include <cstdio> #include <vector> #include <chrono> #include <clocale> #include <omp.h> //#include "../include/papi_panns.h" //#include "../core/Searching.202002101535.reorganization.h" //#include "../core/Searching.201912161559.set_for_queue.h" //#incl...
[ "hi.pengzhen@gmail.com" ]
hi.pengzhen@gmail.com
8604c25712f6e672dcf7bddad947463fe81fb546
e50228ccbb1cac957c258c86dba45ac2a5f6695b
/ArchiveSupport/Merge7z/PipeIPC.cpp
7cc113a9504b665d10cca02e585e105ecc34ce06
[]
no_license
lilixiong/winmerge-v2
395e5c1a0929de1d86babeecf0fdb6e8cb771f81
0766f433fac08c1850091fea31309ecdca81d68a
refs/heads/master
2020-04-06T07:09:42.365269
2015-03-22T12:00:29
2015-03-22T12:00:29
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,767
cpp
#include <windows.h> #include <string.h> #include <tchar.h> #include <fcntl.h> #include <io.h> #include "PipeIPC.h" static bool popen2(const String & cmdline, FILE **inWrite, FILE **outRead) { TCHAR *pcmdline = _tcsdup(cmdline.c_str()); HANDLE hOutReadTmp = NULL, hOutRead = NULL, hOutWrite = NULL; HANDLE hInWriteTm...
[ "none@none" ]
none@none
cca6372b6b19ce48718991abcb685ec152fff07d
b7f86821efae61d0ee2571f147c8531b6133e0ae
/QT-ToDoList-Tests/taskmanagertest.cpp
139ba2ff10dd93cba94143f35c33d5dc67883121
[]
no_license
kevix01/QT-ToDoList
3ded3cd49fbb3ec56dc9b4c39e3b51e38135638e
740ab63cee85b282dc7a0314722799e1686265dd
refs/heads/master
2023-06-23T09:32:09.574769
2021-07-22T13:14:45
2021-07-22T13:14:45
377,795,116
0
0
null
null
null
null
UTF-8
C++
false
false
7,946
cpp
#include "taskmanagertest.h" #include "ui_taskmanager.h" TaskManagerTest::~TaskManagerTest(){ if(a) delete a; } void TaskManagerTest::taskLoadingTest() { TaskManager dlg(QString("Task Managing - Testing")); dlg.setModal(true); dlg.setOrigin(m); dlg.show(); dlg.ui->comboBox->addItem(QSt...
[ "kevin.madrigali@stud.unifi.it" ]
kevin.madrigali@stud.unifi.it
d06d246bbda4a72d23a58d737a2614030033c114
24cd93a27b4b8bf66002747e04717b09a8a076a1
/D03/ex04/SuperTrap.cpp
6827ce9c32bc07ae1013907ed21f3b335087d00c
[]
no_license
ygarrot/PiscineCpp
d4a8895bb7817a49aa017e09a0941a9985d024b6
50b061bf65c08aca72ae17b9d469302317467633
refs/heads/master
2021-10-11T04:16:11.622207
2019-01-21T20:18:05
2019-01-21T20:18:05
166,874,429
0
0
null
null
null
null
UTF-8
C++
false
false
2,520
cpp
/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* SuperTrap.cpp :+: :+: :+: ...
[ "garrot.yoan1@gmail.com" ]
garrot.yoan1@gmail.com
cc22e6d772e8833ab1f15e74a92fded5e7d33b58
de69bc4d515ad056e8da223e945b96c0dc2bc94e
/comprehension/slice2.cxx
87c6943ad5ff30eee981ae0939d516128bdbce3f
[]
no_license
seanbaxter/circle
b7d9f7e25734f005d91b20b3f91ea68fa3cb9e34
f260a80b4279ef7276edeef3b9a3f5f4a0ca6e7c
refs/heads/master
2023-08-28T15:55:22.091193
2023-05-02T19:05:14
2023-05-02T19:05:14
170,960,160
1,992
76
null
2023-08-19T21:54:34
2019-02-16T03:55:15
C++
UTF-8
C++
false
false
1,621
cxx
#include <iostream> template<int... x, typename... types_t> void func1(types_t... args) { std::cout<< "Expansion expression of static parameter pack:\n"; std::cout<< " Non-type template parameters:\n"; std::cout<< " "<< x<<"\n" ...; std::cout<< " Type template parameters:\n"; std::cout<< " "<< @typ...
[ "lightborn@gmail.com" ]
lightborn@gmail.com
b31910cc0958510c74ce9c1b87cd266a5549ebcb
0a3b6a06bb980eeaf7afffecf5233ec0fc6c9cc2
/MCCD/src/deformingNow.cpp
9b0c448d10bbf149fe27fbb9a53560a9089d457a
[]
no_license
desaic/DAC
9e7fa375e49af0dfa1104e7ea48a32f06e063da0
0bc329633bd7a485494421ed2fd5c4bc3d0ca674
refs/heads/master
2021-09-14T14:30:43.176929
2018-05-15T04:40:40
2018-05-15T04:40:40
103,591,873
3
1
null
null
null
null
UTF-8
C++
false
false
3,205
cpp
/*************************************************************************\ Copyright 2012 The University of North Carolina at Chapel Hill. All Rights Reserved. Permission to use, copy, modify and distribute this software and its documentation for educational, research and non-profit purposes, without ...
[ "desaicwtf@gmail.com" ]
desaicwtf@gmail.com
c725dcdb881e6105abaffd990033c46edb246837
cc61c589f924c0f00d17ca61e98dc70e2b356629
/src/Boosting/BaseContainer.cpp
7e81b900faf303bb502d6b4f600e041a14cbd0d3
[]
no_license
PadawanZH/SM_MVTO
ef82b678382541a86f7b455e4369085533a4a274
199426f8b8f26d3dd732ca7fa608729374a1cd07
refs/heads/master
2021-08-24T06:07:59.628010
2017-12-08T18:14:22
2017-12-08T18:14:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
177
cpp
// // Created by zhangan on 17-11-17. // #include "BaseContainer.h" BaseContainer::BaseContainer (char* name) { this->name = name; } BaseContainer::~BaseContainer () { }
[ "zhangan19940520@gmail.com" ]
zhangan19940520@gmail.com
61c45ae734efe8a2a1b21d8ea48b36a281ee6149
87bfee4d038939bd682df9a7629268bcffa2be9b
/leetcode/0472-concatenated-words/concatenated-words/trie.h
6a0b3196ec3c3512db0fa62fcec5341bfb4c7a18
[]
no_license
tmlishuai2/Algorithms
e70393f327a07f66eaaeac97437074a70087d596
5f233e60a7ca140ae2f0053e2ca65315aafdc4a5
refs/heads/master
2021-09-01T14:14:34.129352
2017-12-27T11:43:52
2017-12-27T11:43:52
107,866,579
0
2
null
2017-11-04T13:42:22
2017-10-22T13:06:29
C++
UTF-8
C++
false
false
120
h
#pragma once #include <string> #include <vector> #include <unordered_map> #include <unordered_set> #include <algorithm>
[ "tmlishuai2@hotmail.com" ]
tmlishuai2@hotmail.com
5a49167567ccd0a7d3c88da8c9395c3103875956
2f10f807d3307b83293a521da600c02623cdda82
/deps/boost/win/debug/include/boost/fusion/include/swap.hpp
4c3e00bc9ec807b0a8e704d129588657b4a2dd7f
[]
no_license
xpierrohk/dpt-rp1-cpp
2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e
643d053983fce3e6b099e2d3c9ab8387d0ea5a75
refs/heads/master
2021-05-23T08:19:48.823198
2019-07-26T17:35:28
2019-07-26T17:35:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
128
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:5989c8b5b268b3d1f6c6f052212bfa76cdbe5ba6691f8bb89596c55387ea0dde size 526
[ "YLiLarry@gmail.com" ]
YLiLarry@gmail.com
5dd8472a3506d40d10d6b5c5efcba148eb33dab0
e278a4680ef10e8dcd62071691701dfc6baa6513
/HealthProfile.h
d881898c59e5038ffb88d83bd553fca07789d222
[]
no_license
OBOT-PATRICIA/Assignment2
e659bf107689da0eae3f69556c8146786e5d144b
91553310b3a85cf9db460948b420fba85eecc1f3
refs/heads/master
2016-08-12T15:37:06.872410
2015-06-03T01:14:25
2015-06-03T01:14:25
36,772,973
0
0
null
null
null
null
UTF-8
C++
false
false
2,468
h
/* * HealthProfile.h * HealthProfile class definition. This file represents HealthProfile's public * interface without revealing implementations of HealthProfile's member * functions, which are defined in HealthProfile.cpp * * Stub file for Programming Assignment #2 * * Name: OBOT PATRICIA PETER * Department: ...
[ "obotpatricia2015@gmail.com" ]
obotpatricia2015@gmail.com
4d79349e5edcc079232fa4a486a97f4e504d12a1
0ab07c413623efbae4e4d941a862b38dae810039
/src/Curve2D.cpp
4f10c972efdd9577936e04cccc987da8d337a7a6
[ "MIT" ]
permissive
Konishi2911/csv2obj
18a9dba75b3caf1094f092cc677189151d1f246d
2191c56bb53962c758360ca2cc58010deb04d827
refs/heads/main
2023-03-19T13:44:32.379817
2021-02-22T06:22:20
2021-02-22T06:22:20
338,977,381
0
0
null
null
null
null
UTF-8
C++
false
false
557
cpp
#include "Curve2D.hpp" STool::Curve2D::Curve2D(const CTool::DoubleSV& csv, bool close): name_(csv.name()), verts_() { auto nPoints = csv.nRows(); for (auto i = 0; i < nPoints; ++i) { this->verts_.emplace_back(csv.lineAt(i)[0], csv.lineAt(i)[1]); } if (close) this->close(); } // - Man...
[ "konishi2911@icloud.com" ]
konishi2911@icloud.com
71ed0ca274d9f434f60ccd343dee275ef362eead
f31c4bc9ccc2a575911f994ab9a9a8b7713e0e24
/cpu.cpp
a45a98396bb15224ff363497d8ac9eb6833c63ad
[]
no_license
greylord1996/PDP-11
372d76cbf7b051524f94e310b39dc371c4cc8d43
215501d20d8c6790d25dbf891b0de92949bd0792
refs/heads/master
2021-08-14T13:41:13.180343
2017-11-15T21:36:29
2017-11-15T21:36:29
109,535,608
0
0
null
null
null
null
UTF-8
C++
false
false
676
cpp
#include <cpu.h> void CPU::SetRegisterByNum(int numOfReg, uint16_t val) { this->reg[numOfReg] = val; } void CPU::IncRegisterByX(int numOfReg, int x) { this->reg[numOfReg] += x; } void CPU::DecRegisterByX(int numOfReg, int x) { this->reg[numOfReg] -= x; } uint16_t CPU::GetValFromRegisterByNum(int numOfR...
[ "emchinov@bk.ru" ]
emchinov@bk.ru
73a1010ca25c7c3adba40089e63030df09ace659
a397e0ccaa45324bbeebf172fca41f8c0347d1b7
/Client/AdvancedATM/Dialogs.hpp
fc43fbeeafecbd03fdac447189040b5d04800668
[]
no_license
Haizanjs/RPFramework_AdvancedBanking_Module
e6617c83cd96387a8ec98a37e4826a17d173f4fd
25d3ceb00865ccabf30fb90841ba35b381461bb4
refs/heads/master
2021-09-07T20:40:46.400475
2018-02-28T18:38:26
2018-02-28T18:38:26
123,007,952
0
1
null
null
null
null
UTF-8
C++
false
false
6,924
hpp
class AdvancedATM { idd = 10015; class controls { class RscText_1000: RscText { idc = 1000; x = 0.314375 * safezoneW + safezoneX; y = 0.225 * safezoneH + safezoneY; w = 0.180469 * safezoneW; h = 0.418 * safezoneH; colorBackground[] = {0,0,0,0.8}; }; class RscButton_1600: RscButton { i...
[ "jackmichaelsimons59@gmail.com" ]
jackmichaelsimons59@gmail.com
f7ff6401b6084915e2743772a0409f9baa08ccd4
43ee3cc213125c09205195a30fce171ff9ed44c4
/test/tests/libcxx/set/emplace.pass.cpp
e3ac729ecbae794382e38b0b67ffd95b31d419c6
[ "MIT", "NCSA" ]
permissive
asidorov95/momo
820356ae130fc97d60e26e50fc380a9826e1c89d
ebede4ba210ac1fa614bb2571a526e7591a92b56
refs/heads/master
2020-10-01T18:26:23.841911
2019-12-12T12:04:05
2019-12-12T12:04:05
155,053,265
0
0
null
2018-10-28T09:14:16
2018-10-28T09:14:16
null
UTF-8
C++
false
false
2,714
cpp
//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===---------------------------------...
[ "morzhovets@gmail.com" ]
morzhovets@gmail.com
6b00e947f7576cb9fb50a7dd0bbf2ecf29f78356
b494c362dd9a3c2ea0629c4e9bb841c1bdd05b6e
/SDK/SCUM_UI_ItemStatusWidget_parameters.hpp
4d085990355e33b8cb3669bd83b24114b5c12138
[]
no_license
a-ahmed/SCUM_SDK
6b55076b4aeb5973c4a1a3770c470fccce898100
cd5e5089507a638f130cc95a003e0000918a1ec7
refs/heads/master
2022-05-20T17:28:10.940288
2020-04-03T18:48:52
2020-04-03T18:48:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,253
hpp
#pragma once // SCUM (Dumped by Hinnie) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function UI_I...
[ "hsibma02@gmail.com" ]
hsibma02@gmail.com
9b6ba5dac67ad7d7e2ed5f37b171991acd69fd3c
f93133123b5f7fffc562c023d1255600024a7b10
/Counter Test For CHEFSUM/main.cpp
e3802dc8d91d18cb69499e8d5651964484840abe
[]
no_license
Bunnynegi/Competitive-Coding
85415d3649420bd6851e674003d47238398d8cff
11a3ca975d4ddd4729716f267da9b9bed49c2c12
refs/heads/master
2022-04-02T23:16:50.388043
2020-01-17T14:33:53
2020-01-17T14:33:53
105,656,141
0
0
null
null
null
null
UTF-8
C++
false
false
591
cpp
// #include<bits/stdc++.h> #define fast ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define F first #define S second #define PB push_back #define MP make_pair #define REP(i,a,b) for (int i = a; i < b; i++) #define endll "\n" using namespace std; typedef long long ll; int main() { fast; ll t; cin>>t; ...
[ "cmsn123@gmail.comz" ]
cmsn123@gmail.comz
9bf6b2d2223daa0057c7e25c89922e53e40ee09b
bf3125318772616d741a1e70204eda63680598ea
/patterns/null.h
d0f7ee9fe41a4651213688e38fe580b082f15cea
[]
no_license
cheyxx/algorithm
79cd3a8b7164e90accdae6642c25ce10a52fb527
de7f7e131d8b7974e407616f35265421e93ba1f0
refs/heads/master
2020-03-18T14:59:18.214277
2019-07-04T05:27:41
2019-07-04T05:27:41
134,879,640
0
0
null
null
null
null
UTF-8
C++
false
false
790
h
/* Copyright (c) 2019 The Design Pattern Authors. All rights reserved. */ #ifndef PATTERNS_NULL_H_ #define PATTERNS_NULL_H_ #include <iostream> #include <memory> #include <vector> class AbstractCustomer { public: virtual std::string GetName() = 0; virtual bool isNull() = 0; }; class Customer : publ...
[ "fun.colin.he@gmail.com" ]
fun.colin.he@gmail.com
417bc1ecec5eba0d94a60f21162b19c974bba23a
60d718b01b6c1adbab2ec072836e5826c3985f3a
/QxOrm/inl/QxDao/QxSqlQueryHelper_Update.inl
ac1f418c609c866b2af41744b0a03d82b8fbf3cb
[]
no_license
jpush/jchat-windows
1084127d0ce39ad00a344661f265e5d65389c186
e782268c8d04ffad5d6e9a69308fad30b583603e
refs/heads/master
2022-01-14T06:35:47.571133
2019-05-14T05:32:42
2019-05-14T05:42:19
106,393,361
19
4
null
null
null
null
UTF-8
C++
false
false
3,279
inl
/**************************************************************************** ** ** http://www.qxorm.com/ ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com) ** ** This file is part of the QxOrm library ** ** This software is provided 'as-is', without any express or implied ** warranty. In no event will the authors ...
[ "wangshun@jiguang.cn" ]
wangshun@jiguang.cn
e7d6b1e07d4a9c215bc5caeaabbcbec99a1c3b98
b9d7a0e3748c9b7d648446761971a92c7b483e12
/ASCII_Game/WindowHandler.hpp
2639d566ab7edaa6703c94ee59222d585c96c8e8
[]
no_license
kgarbacinski/ASCII-Game
91823986e89c3eae46de03d63bb67dcbe8c27d92
c8544b3ea3b4af430ecf144c35a6824c61748496
refs/heads/master
2023-01-09T09:35:49.947968
2020-10-24T20:15:42
2020-10-24T20:15:42
278,919,222
3
0
null
null
null
null
UTF-8
C++
false
false
387
hpp
#include <windows.h> #include <string> #include <thread> #include <mutex> #include <iostream> #include <conio.h> enum Colours { NONE = 0, DARK_RED = 4, RED = 12, LIGHT_BLUE = 11, WHITE = 15, LIGHT_GREEN = 10, GRAY = 7, PURPLE = 13 }; #pragma once class WindowHandler { protected: void gotoxy(int x, int y); v...
[ "chlubakarol@gmail.com" ]
chlubakarol@gmail.com
97b31457a6dd8960f9c78441c1fa076069e826bd
af7977991477325ddc604b6d3e2ac3cb4aa29337
/FlappyBirdGame3D3.0/Temp/il2cppOutput/il2cppOutput/mscorlib_System_Collections_Generic_KeyValuePair_22971303333.h
7f0798979e61090ad3184074e03693a4f89129c3
[]
no_license
jpf2141/FlappyBird3D
b824cf5fac6ca3c5739afc342b659af1f2836ab9
fe4e9c421ec8dc26a7befd620f9deaf3c6361de5
refs/heads/master
2021-01-21T13:53:25.062470
2016-05-06T02:39:28
2016-05-06T02:39:28
55,712,365
3
1
null
null
null
null
UTF-8
C++
false
false
1,576
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // System.String struct String_t; #include "mscorlib_System_ValueType4014882752.h" #include "Vuforia_UnityExtensions_Vuforia_WebCamProfile_Prof1845074131.h" #ifdef __clang__ #pragma...
[ "kdj2109@columbia.edu" ]
kdj2109@columbia.edu
4931045e7bd4e6bfc5471c5751b1a8f549c8a607
f7da959df493043193aaad51bffdbafa08d1d6b9
/courses/T-414-AFLV/2-data-structures-and-libraries/where_is_my_internet.cpp
e9da80901d4159e1a66f4047ff8bfa0382004082
[]
no_license
dkiswanto/competitive-programming-exercise
1b3143448a0c448db8f55a1d8415a4bbbb3d2c53
8dcb6cbe9a395e005609a0dfba5b3d5fc3f16386
refs/heads/master
2021-10-23T22:17:56.879188
2019-03-20T13:13:14
2019-03-20T13:13:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,412
cpp
#include <bits/stdc++.h> using namespace std; struct union_find { vector<int> parent; union_find(int n) { parent = vector<int>(n); for (int i = 0; i < n; i++) { parent[i] = i; } } int find(int x) { if (parent[x] == x) { return x; } else {...
[ "kiswanto.d21@gmail.com" ]
kiswanto.d21@gmail.com
e9170829d6e34d8176a3819b32c4bccf4be351f3
9aad69fea204dfa2fe0b16e1d8cf8b8b84e30bad
/src/alloy/test/test_unpack.cc
2af4b0ef0a7f1c3bd8cf41c0bb356c7b35e8df85
[]
no_license
inlandyears/xenia
cc65084e62b37a19bf977519906b1b460d42dc8f
9fcffcf86648c58b390bda8d91fa77a9d006f37d
refs/heads/master
2021-01-21T02:24:09.378373
2014-09-10T03:45:14
2014-09-10T03:45:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,759
cc
/** ****************************************************************************** * Xenia : Xbox 360 Emulator Research Project * ****************************************************************************** * Copyright 2014 Ben Vanik. All rights reserved. ...
[ "ben.vanik@gmail.com" ]
ben.vanik@gmail.com
bc2fddc4eb11d3786f545cae73ff373444b56e70
3bc95589dbd26f2857ebe9ffbfa3d07cd490defa
/src/test/allocator_tests.cpp
da42637aecf0abf439280094d11cd86e8c51fde1
[ "MIT" ]
permissive
perfectcoincore/perfectcoin
5e840973b09081845c38e26e0c6d95e95fae3389
32dcbae0df2798921a9752a1a1371141831f1adc
refs/heads/master
2020-03-21T13:30:48.489603
2018-06-27T06:07:32
2018-06-27T06:07:32
138,610,004
2
0
null
null
null
null
UTF-8
C++
false
false
7,402
cpp
// Copyright (c) 2012-2016 The Bitcoin Core developers // Copyright (c) 2017 The Pigeon Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "util.h" #include "support/allocators/secure.h" #include "test/tes...
[ "webframes@gmail.com" ]
webframes@gmail.com
a56cae9531aea5a3474b0e558a5d90feee8ad0b4
e74ec3c0a5479a657ab34aa5905b797eeeddc59c
/ddf/src/cuda/ddf_add_faster_cuda.cpp
5fa1af41c1b22e4d3bdf4cffceebc66235f065a2
[ "MIT" ]
permissive
OutBreak-hui/ddfnet
33a106f010f906640f335c868cf7da2e85474bd4
65f67692352a2c083b5d7e003e320629a86e8460
refs/heads/main
2023-05-31T20:41:21.803800
2021-06-24T06:37:50
2021-06-24T06:37:50
380,129,330
1
0
MIT
2021-06-25T05:03:59
2021-06-25T05:03:58
null
UTF-8
C++
false
false
1,722
cpp
#include <ATen/ATen.h> #include <torch/extension.h> #include <cmath> #include <vector> int DDFAddFasterForwardLauncher( const at::Tensor features, const at::Tensor channel_filter, const at::Tensor spatial_filter, const int kernel_size, const int dilation, const int stride, const int batch_size,const i...
[ "1252693592@qq.com" ]
1252693592@qq.com
d94d4c9cc1d357c50325a5e0602219f4927c9f9b
64e4fabf9b43b6b02b14b9df7e1751732b30ad38
/src/chromium/gen/gen_combined/third_party/blink/renderer/bindings/modules/v8/v8_usb.h
c0a3337c9c112005c00ca4c7e8d24ae8e7f2b380
[ "BSD-3-Clause" ]
permissive
ivan-kits/skia-opengl-emscripten
8a5ee0eab0214c84df3cd7eef37c8ba54acb045e
79573e1ee794061bdcfd88cacdb75243eff5f6f0
refs/heads/master
2023-02-03T16:39:20.556706
2020-12-25T14:00:49
2020-12-25T14:00:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,647
h
// Copyright 2014 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. // This file has been auto-generated from the Jinja2 template // third_party/blink/renderer/bindings/templates/interface.h.tmpl // by the script code_gene...
[ "trofimov_d_a@magnit.ru" ]
trofimov_d_a@magnit.ru
4cff98c04eb736fd0d1d255ce629706ca1f973fa
8f8ede2d240cafa0b17f135c553a2ae64e6ea1bd
/voice/voicerecog/voicerecoglib/dialogengine/suntec/src/VR_DummyMediaPlayer.cpp
bb1da353f5a8ff47f5622366e9e043b15969c228
[]
no_license
hyCpp/MyDemo
176d86b720fbc9619807c2497fadb781f5dc4295
150c77ebe54fe7b7f60063e6488319d804a07d03
refs/heads/master
2020-03-18T05:33:37.338743
2019-03-10T04:21:01
2019-03-10T04:21:01
134,348,743
0
0
null
null
null
null
UTF-8
C++
false
false
3,340
cpp
/** * Copyright @ 2015 - 2016 Suntec Software(Shanghai) Co., Ltd. * All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are NOT permitted except as agreed by * Suntec Software(Shanghai) Co., Ltd. * * Unless required by applicable law or agreed to in writin...
[ "huyang@192.168.124.5" ]
huyang@192.168.124.5
f594952d9218c49a9d4147f2f9697a65a7f889c5
14338b7167f1971917cc034a9dec9c147709b0e2
/serenity/src/filter/OutputFilter.cc
646e5760c2fa2de170c67256942c1f6476c6e403
[ "MIT", "BSD-3-Clause" ]
permissive
adonig/stappler
655511b8acd88b2b91daa1ac145bda4c28fc3241
4326bffc1883e56ce331ffd6a6b3207750230e86
refs/heads/master
2020-04-05T16:54:55.506700
2018-10-16T14:12:48
2018-11-05T11:25:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,290
cc
// This is an open source non-commercial project. Dear PVS-Studio, please check it. // PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com /** Copyright (c) 2016 Roman Katuntsev <sbkarr@stappler.org> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and...
[ "sbkarr@stappler.org" ]
sbkarr@stappler.org
266ead328b4029dd4af6b281a87f6949eb52560f
8a36937a2098e3eaae402e3ea473824c91dfc077
/Libs/dtkCoreSupport/dtkPluginManager.cpp
93d8d13e511689e456e34ef30a5dc33ec3f59be9
[]
no_license
huangguojun/mydtk
27b35143043bce72b950d2f4d2d44251e87b219f
6b23ab2db87e4aaa4f87c0a872a644c6d646723c
refs/heads/master
2023-06-25T01:43:50.667281
2021-07-26T06:54:35
2021-07-26T06:54:35
224,398,233
2
0
null
null
null
null
UTF-8
C++
false
false
13,092
cpp
/* dtkPluginManager.cpp --- * * Author: Julien Wintz * Copyright (C) 2008 - Julien Wintz, Inria. * Created: Tue Aug 4 12:20:59 2009 (+0200) * Version: $Id: b3bc20cb17f746daf0068ab69d9642c37f8eb20a $ * Last-Updated: mer. avril 2 08:45:01 2014 (+0200) * By: Nicolas Niclausse * Update #: 321 */ /...
[ "guojun.huang@qq.com" ]
guojun.huang@qq.com
2ceaa7546c0cc1aeb090345263b7da1be8717968
6b7cb5e1a66f4af9ea0a8b675a6abb8f6927b9fc
/src/19_RoboFightDesign/RoboFightWithFrontend/Robo.h
f84251062b8c1fb13adc3f0153ed11fc1ee650b9
[]
no_license
supercaracal/game-programmer-book-build
dc405763ed255e81ea8244d2c48dc24a8d98293e
c9e1f65cab3f59a4d552128d0ee22233d79b2773
refs/heads/master
2022-06-10T14:17:00.122380
2020-04-29T04:03:14
2020-04-29T04:03:14
259,812,505
1
0
null
2020-04-29T03:14:35
2020-04-29T03:14:34
null
SHIFT_JIS
C++
false
false
2,805
h
#ifndef INCLUDED_ROBO_H #define INCLUDED_ROBO_H #include "Library/Vector3.h" class Matrix34; class Matrix44; class GraphicsDatabase; class Model; class Bullet; class Robo{ public: Robo( int id ); //番号もらう。自分が何番か知りたいので。 ~Robo(); void draw( const Matrix44& perspectiveViewMatrix ) const; void update(...
[ "slash@watery.dip.jp" ]
slash@watery.dip.jp
80810640384abdf4166334be5f116b773f7463a2
6eaf9fd1d55e07addb1f5f53bfe919c02d0ef6ce
/loop_closure/main.cpp
8239adb2d142a5fe78ca56d258d21be24e11f3c0
[]
no_license
tys17/SLAM
50054596534134106c0e41f0d1aa057646de2f77
186f99d12c4ccb232934b0329b3baca08291b6a5
refs/heads/master
2021-05-06T13:33:49.280846
2017-12-05T05:11:49
2017-12-05T05:11:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,484
cpp
#include <iostream> // opencv #include "opencv2/core.hpp" #include "opencv2/features2d.hpp" #include "opencv2/imgcodecs.hpp" #include "opencv2/highgui.hpp" #include "opencv2/calib3d.hpp" #include "opencv2/calib3d/calib3d_c.h" #include "opencv2/video/tracking.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video...
[ "fjw_thu@163.com" ]
fjw_thu@163.com
9b84ab71d86264a7a36ef7da255499280d69c1d0
6fa38520d36225ea164da9f4466750faa98de7df
/clearBoard/clearBoard.ino
3f252d67b12ce1371895fe7b49f48986492a2fb4
[]
no_license
kailonfok/AER201
4a22a2fbb2553a5be6299d350a45c69e4d8e7a74
427947c42bdb2eda1ca5ebbe410a4582c4cc4ff0
refs/heads/master
2016-09-11T09:36:56.536805
2015-04-06T19:44:27
2015-04-06T19:44:27
29,438,272
0
0
null
null
null
null
UTF-8
C++
false
false
15,013
ino
#include <AFMotor.h> #include <Servo.h> //define objects for motors AF_DCMotor frontMotor(1); AF_DCMotor leftMotor(2); AF_DCMotor backMotor(3); AF_DCMotor rightMotor(4); // Define pins for wing pins const byte frontSwitchPin = 34; const byte leftSwitchPin = 33; const byte rightSwitchPin = 32; int leftSwitchVal, righ...
[ "dknight_77@hotmail.com" ]
dknight_77@hotmail.com
b056f6ef6dce2a3234821e94b31fdb0636645ab8
dbf16f6522ae46d6cffd75577d76bffd1cbeaeb1
/Src/Modules/Infrastructure/RobotHealthProvider.cpp
9f5dd8263c7f6e76103ad0643c1ce434092f6972
[]
no_license
RomanMichna/diplomovka
df6e48f43f2b91407f63e7f100f7e10e16b5d52c
c3f090fe2662cc34f8ecc65ee14e1555695c0f54
refs/heads/master
2021-01-10T15:31:48.017316
2013-04-09T11:32:41
2013-04-09T11:32:41
8,552,952
3
0
null
null
null
null
UTF-8
C++
false
false
4,377
cpp
/** * @file Modules/Infrastructure/RobotHealthProvider.h * This file implements a module that provides information about the robot's health. * @author <a href="mailto:timlaue@informatik.uni-bremen.de">Tim Laue</a> */ #include "RobotHealthProvider.h" #include "Tools/Settings.h" #include "Tools/Debugging/ReleaseOptions....
[ "roman.michna@student.tuke.sk" ]
roman.michna@student.tuke.sk
6e6fbbd130141fd5253c92b959783330e895fd11
31f09c1e92698617f547234ce4b75c7776c25e1b
/gameShao/Classes/GameFMS.hpp
80cde176a047384f1276a99e08a0b3c89f325ca0
[]
no_license
Midnightshao/Cocos2d-CocosCreator
20aa53c7389b99b40e336f0e3820399f195f8051
19edfeb7c98f3a99c261a22a6c1d3e2083452db6
refs/heads/master
2020-04-16T12:36:02.689116
2019-01-14T03:30:16
2019-01-14T03:30:16
165,587,103
1
0
null
null
null
null
UTF-8
C++
false
false
634
hpp
// // GameFMS.hpp // gameShao // // Created by shao on 2019/1/11. // #ifndef GameFMS_hpp #define GameFMS_hpp #include <iostream> #include "cocos2d.h" #include "ui/CocosGUI.h" #include "SceneManager.hpp" #include "reader/CreatorReader.h" #include "reader/Macros.h" USING_NS_CC; class GameFMS :public Layer{ public: ...
[ "748013352@qq.com" ]
748013352@qq.com
ac3f68d75db3503a424c4ca9b9e6e46410843a0b
9480e2e795e5e79b92e69270025351a3c517f901
/src/StateHandler/LobbyHandler/CharacterWearInfo.h
6e58636637316c95447b2301fdf073f848958704
[]
no_license
glandu2/rzgame
ed22db3bdd47cecdcd6f75a0a1c3dedc41040083
90116860a5ad95edef0a28bcea0db51bb3900aac
refs/heads/master
2021-07-06T07:22:06.558498
2020-08-11T21:46:23
2020-08-11T21:46:23
39,275,392
0
0
null
null
null
null
UTF-8
C++
false
false
478
h
#pragma once #include "Database/DbQueryJob.h" #include "GameTypes.h" namespace GameServer { class CharacterWearInfo { public: game_sid_t character_sid; int32_t wear_info; uint32_t code; uint32_t enhance; uint32_t level; uint8_t elemental_effect_type; uint32_t appearance_code; CharacterWearInfo() { wear_info...
[ "glandu2epvp@gmail.com" ]
glandu2epvp@gmail.com
c0a0d26c5bcc6a0a7d9041412c338466c9583682
3f22fe0318a6a483bcbde81b5bdca012dcb278d0
/4_mainWindows/source/src/mydialog.cpp
fea5eccf2e8d2573563dc9ff5d02ffb07101cdbc
[]
no_license
yatt122496/QT
ad044e7cfa08b98ebe1eb13459934e7ba4746c59
e1ff5a04d11cd3212a4a9fd568949f65e32b70e8
refs/heads/master
2023-06-06T12:56:25.592198
2021-06-28T01:16:16
2021-06-28T01:16:16
373,773,890
0
0
null
null
null
null
UTF-8
C++
false
false
1,609
cpp
#include "source/inc/mydialog.h" #include <QtGui> #include <QLabel> #include <QLineEdit> #include <QGridLayout> #include <QPushButton> MyDialog::MyDialog(QWidget *parent) :QDialog(parent) { labelID = new QLabel("学号:"); lineEditID = new QLineEdit; labelName = new QLabel("姓名:"); lineEditName = n...
[ "1254452743@qq.com" ]
1254452743@qq.com
954837dae98cb4e8c30aab3728fd8f7756a2887f
c10650383e9bb52ef8b0c49e21c10d9867cb033c
/c++/Win32_1/First.cpp
8b6107909a395f03f1f6b7501c671013cc654919
[]
no_license
tangyiyong/Practise-project
f1ac50e8c7502a24f226257995e0457f43c45032
4a1d874d8e3cf572b68d56518a2496513ce5cb27
refs/heads/master
2020-08-11T16:28:11.670852
2016-03-05T04:24:41
2016-03-05T04:24:41
null
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
3,667
cpp
#include <Windows.h> #include <stdio.h> #include <vector> using namespace std; HWND ChWndList; HWND PhWndList; HINSTANCE ghInstance; void CreateChilWin(); LRESULT CALLBACK WinProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { switch (uMsg) { case WM_SIZE: { RECT rt; ::GetClientRect(hWnd,&rt); int ...
[ "76275381@qq.com" ]
76275381@qq.com
ffa5bf2d4044fd476b7b70f8da60f49416c8b8e4
39b8e5e003e79fdde12d765a64e9e40f49c6b0b9
/第四周/A.cpp
257a38166f528d82e2bd8b4822d979505fcd7607
[]
no_license
Booooooooooo/wyb---ACM
2af10f93f323ad66e8dd467ee25605e0728c5fa4
dd17594d9c205ebae110022274022f2207878236
refs/heads/master
2021-09-21T02:04:37.847570
2018-08-19T07:37:46
2018-08-19T07:37:46
90,154,488
5
1
null
null
null
null
UTF-8
C++
false
false
725
cpp
#include<stdio.h> #include<iostream> #include<algorithm> using namespace std; int n; struct domin{ int up; int low; }a[105]; int main() { while(scanf("%d",&n)!=EOF) { int i,su=0,sl=0,cnt=0; for(i=0;i<n;i++) { scanf("%d%d",&a[i].up,&a[i].low); su+=a[i].up; sl+=a[i].low; } if(su%2==0&&sl%2==0) { ...
[ "447539789@qq.com" ]
447539789@qq.com
74e5b3596ade28de1e199bacd3c29c105ac8417e
b88af1bf6ed92aababbc8423fe61607bffe9c9a6
/src/binary_search/278_remove_element.hh
1369fff521290cf580a05bc5cec4203a52ff8e4e
[]
no_license
long-gong/leetcode
0d84b5213e4437e8334ac3920ccf364ef31bacaa
afc756dd881dfd1447e410668b2359f646d17753
refs/heads/master
2020-03-25T19:51:01.822018
2018-10-09T05:33:29
2018-10-09T05:33:29
144,103,293
0
0
null
null
null
null
UTF-8
C++
false
false
771
hh
// // Created by saber on 8/18/18. // #ifndef LEETCODE_278_REMOVE_ELEMENT_HH #define LEETCODE_278_REMOVE_ELEMENT_HH /* * Given an array nums and a value val, remove all instances of that value in-place * and return the new length. * * Do not allocate extra space for another array, you must do this by modifying t...
[ "saber@localhost.localdomain" ]
saber@localhost.localdomain
a6b3a7aacfd00455750a51666af48b84eb470854
d2d6aae454fd2042c39127e65fce4362aba67d97
/build/iOS/Preview1/include/Uno.Float2.h
b491d5ecfe9ce83d1e56a8c7dba20c4246ec0620
[]
no_license
Medbeji/Eventy
de88386ff9826b411b243d7719b22ff5493f18f5
521261bca5b00ba879e14a2992e6980b225c50d4
refs/heads/master
2021-01-23T00:34:16.273411
2017-09-24T21:16:34
2017-09-24T21:16:34
92,812,809
2
0
null
null
null
null
UTF-8
C++
false
false
3,291
h
// This file was generated based on '/Users/medbeji/Library/Application Support/Fusetools/Packages/UnoCore/1.0.11/source/uno/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Uno{struct Float2;}} namespace g{namespace Uno{struct Int2;}}...
[ "medbeji@MacBook-Pro-de-MedBeji.local" ]
medbeji@MacBook-Pro-de-MedBeji.local
101ba4ff30c6477e7d093e3d797f691a6d22cd75
23e393f8c385a4e0f8f3d4b9e2d80f98657f4e1f
/3rdparty/boost_1_60_0/boost/log/sinks/text_file_backend.hpp
6cc41742fb7304e8e54dd64d61e583b06099a9b2
[]
no_license
IgorYunusov/Mega-collection-cpp-1
c7c09e3c76395bcbf95a304db6462a315db921ba
42d07f16a379a8093b6ddc15675bf777eb10d480
refs/heads/master
2020-03-24T10:20:15.783034
2018-06-12T13:19:05
2018-06-12T13:19:05
142,653,486
3
1
null
2018-07-28T06:36:35
2018-07-28T06:36:35
null
UTF-8
C++
false
false
20,964
hpp
/* * Copyright Andrey Semashev 2007 - 2015. * 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) */ /*! * \file text_file_backend.hpp * \author Andrey Semashev * \date 09.06.2009...
[ "wyrover@gmail.com" ]
wyrover@gmail.com
92ef838b5caed1ac48097322369e26a2c34241e1
630c2828e5caa69549eb5e9e135867b8b1003fc8
/P3_A3/berechnen2.cpp
3f9de83ae09bb287f6a53a2ff0862ac56569c237
[]
no_license
mabako/whz-computergrafik
7c6194a202333dad0741e27bd2d85f6bc46b9522
531efaef8629b28c450612d046a14fa048dbade2
refs/heads/master
2020-12-24T13:52:34.890384
2012-06-25T16:53:41
2012-06-25T16:53:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
321
cpp
#include "berechnen2.h" minmax* berechnen2(int groesse, int* feld) { if(groesse == 0) return 0; minmax* m = new minmax(); m->max = feld[0]; m->min = feld[0]; for(int i = 1; i < groesse; ++ i) { int wert = feld[i]; if(wert > m->max) m->max = wert; if(wert < m->min) m->min = wert; } return m; }...
[ "mabako@gmail.com" ]
mabako@gmail.com
fa918284dd0d6a34d98a575b6b6cd82c0a2c3e16
b4d3d5f66dc717753fd85639093a09599e0fc664
/curses/src/Gui.hh
b0b887fffd9163430ec6822e585e51f53acf5421
[ "MIT" ]
permissive
okeri/snm
eb4c5c810c4b940e32ea0c842cd5c7d1ca109ddd
7ea65600f9a7f18e029ddb3dd4498255acda2bf0
refs/heads/master
2022-08-25T05:35:48.834763
2022-07-20T14:24:58
2022-07-20T14:24:58
139,017,364
3
0
null
null
null
null
UTF-8
C++
false
false
1,030
hh
#pragma once #include <vector> #include <memory> #include <functional> #include <optional> #include <tuple> #include <string> #include <snm_types.hh> #include "Window.hh" class Gui { public: using PropGetter = std::function<snm::ConnectionProps(const std::string&)>; using Connector = std::function<void(cons...
[ "ezhi99@gmail.com" ]
ezhi99@gmail.com
c6117b7e7ed39468f78c4021bad2640341430edc
7fab9494bd5ba64980d9bb86d8ba0735b538d2b5
/combination.cpp
f4e7f7ec91b778630bf4dc5295965f0e73092402
[]
no_license
IvanDonat/ssc19
38a2d8f56c22630c4fdfd5178d3d5859260cac74
0fd9edc776fdd47d985d012418c1c07ccc78b03c
refs/heads/master
2020-04-29T00:47:23.479490
2019-04-05T09:34:41
2019-04-05T09:34:41
175,707,875
0
0
null
null
null
null
UTF-8
C++
false
false
553
cpp
// Here it suffices to check all combinations of CW/ACW, as the input // is small enough. A bitmask is used to through iterate all possibilities. #include <iostream> using namespace std; int n, a[16]; int main() { cin >> n; for(int i = 0; i < n; i++) cin >> a[i]; for(int bits = 0; bits < (1<<(n-1)); bits+...
[ "ivan.pupovac@student.manchester.ac.uk" ]
ivan.pupovac@student.manchester.ac.uk
4506525816361bee0406c75b23050ff43315e044
8e4b67f26bcb816bfaa9743341146f3abe25b130
/src/PRHS_Entity.cpp
fd61dfa59918bbc53512a3754e1bceb949a8730a
[]
no_license
PRHS-Programming-Club/PRHS-Game-Lib
0c3f3977b1f0bb031ebe37bdf561a6ee2a77dd42
e1494d80e3df91df741d4932d96de6cbc7f3b7d0
refs/heads/master
2020-04-17T10:22:37.677738
2019-09-05T21:34:50
2019-09-05T21:34:50
166,498,923
0
0
null
null
null
null
UTF-8
C++
false
false
2,444
cpp
/* Version 2.0.0 of the PRHS Game Library Last Modified on January 18, 2019 */ #include "PRHS_Entity.h" #include "PRHS_Window.h" namespace PRHS { TextureManager& Entity::textureManager = TextureManager::getInstance(); Entity::Entity() : skinId("NO SKIN"), position{ 0.0, 0.0, 0.0, 0.0, 0.0 ...
[ "sciencedude2003@gmail.com" ]
sciencedude2003@gmail.com
73c67956958e4987face605712635332d26d9a6c
d85a2cade5af30cea1f959a4ddd91db9bd857e60
/Core/Widgets/Tab/TabsSpaceSplitter.cpp
715b4774dc46aa863483caf953aa03107af4d4b8
[ "MIT" ]
permissive
hobbit19/SieloBrowser
d57dc8e6724cd6d8ac22e01569f2a0631704e378
6872caf3749eda3aa78d64ab5e3b926be2eb03ec
refs/heads/master
2020-04-08T20:29:53.909362
2018-11-19T22:12:04
2018-11-19T22:12:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,892
cpp
/*********************************************************************************** ** MIT License ** ** ** ** Copyright (c) 2018 Victor DENIS (victordenis01@gmail.com) ...
[ "admin@feldrise.com" ]
admin@feldrise.com
d111a3d5235b72cb012236ac2242ab355e66f39f
d77220ce79c81e5c7271ddee00e9e5bd9e0cce77
/exercise_2_1/convolution.h
804c45a4774259ebb48072939f4dc514c62c6697
[]
no_license
RoboJackets-Software-Training/week-2-programming-exercise-Khaidde
a0f332b3453673788f5068e712ac9fd7bdb92d7e
0c8a6957e2dbba3288a94a72512d3f2e83efb3cb
refs/heads/master
2022-12-22T07:21:07.467872
2020-10-01T20:53:33
2020-10-01T20:53:33
300,096,755
0
0
null
2020-10-01T00:26:21
2020-10-01T00:26:11
C++
UTF-8
C++
false
false
119
h
#pragma once std::vector<double> applyConvolution(std::vector<double> x, std::vector<double> w, bool pack_with_zeros);
[ "calthekhid@gmail.com" ]
calthekhid@gmail.com
e32365a25c023940314bfbb67b8b51cbb1463d40
1063f7e13f50fa0fee6723a77dc533d786e3082f
/trunk/src/main/manual/ManualResultDetailDlg.h
5bdeda109a273b1de147f9f0d522ce9a5631d2d5
[]
no_license
zjm1060/HandSet
9e9b8af71ee57a7b90a470473edb72ef7b03c336
59a896e38996fe9f9b549316974bf82ffa046e1e
refs/heads/master
2022-12-21T19:52:10.349284
2017-03-10T08:20:14
2017-03-10T08:20:14
112,681,985
0
0
null
2020-09-25T01:00:09
2017-12-01T01:50:46
C++
GB18030
C++
false
false
4,416
h
/// @file /// /// @brief /// 手动实验具体结果 头文件 /// /// Copyright (c) 2013 IUnknownBase Inc /// /// 作者: /// lqx 2013.7.18 /// /// 修改历史: /// #pragma once #include "src/main/resource.h" #include "src/main/dlg/basedlg.h" #include "src/service/datalayer/DsmDataLayer.h" enum eMRDShowReportType { MRDSmvReport = 0, ...
[ "383789599@qq.com" ]
383789599@qq.com
935ace9a68d8405816dc4ce141e1a775e3233b3d
cfeeb8a7aea90d5acd4fc9ce1194ac4c426bea70
/IOCP_DummyClient/IOCP_DummyClient/CLFMemoryPool_TLS.h
62f5b3923b9cc44a2e855a5c27cb34fb174ef7c7
[ "MIT" ]
permissive
kbm0996/-Network-IOCP-EchoServerClient
17b1169514b882aaeeaa4bb2b9a4ffbd93032e3a
91f12607c522dd664d5997681abb5a503d9109bd
refs/heads/master
2020-08-15T16:31:36.913524
2019-12-15T21:22:40
2019-12-15T21:22:40
215,371,370
2
1
null
null
null
null
UHC
C++
false
false
6,068
h
/*--------------------------------------------------------------- MemoryPool TLS TLS(Thread Local Storage)를 활용해 하나의 메모리풀로부터 스레드별로 데이터 청크 할당 프로세스당 TLS 개수가 제한되어있으므로 이의 유의해야 함 - 클래스 * CLFMemoryPool_TLS: CDataChunk를 관리하는 메모리풀을 내장한 클래스 * CDataChunk : DATA Block 덩어리. 재활용X. - 사용법 CLFMemoryPool_TLS<DATA> MemPool(300, F...
[ "kbm0996@naver.com" ]
kbm0996@naver.com
ce0f079f6a964417ed0b4d22c00e6638315110c9
9a2121d51f15d2fe4b242a01dd6463be44f2a251
/c++/BinarySearch1.h
f6b87381881cfb43b43a75fee7d688a5f8d87958
[]
no_license
marek5050/cs109
0f60a2162e8990caebe7797be302658fe79a2261
d03807b13092a977c4cc931594cd8394c8b8e870
refs/heads/master
2020-12-07T05:24:45.186061
2016-05-18T19:50:38
2016-05-18T19:50:38
35,233,438
0
0
null
2015-05-07T17:21:52
2015-05-07T17:21:50
C++
UTF-8
C++
false
false
1,244
h
// --------------- // BinarySearch1.h // --------------- #ifndef BinarySearch1_h #define BinarySearch1_h #include <cassert> // assert #include "LowerBound1.h" template <typename RI, typename T> bool binary_search_recursion_1 (RI b, RI e, const T& v) { if (b == e) return false; const RI p = b + ((e -...
[ "downing@cs.utexas.edu" ]
downing@cs.utexas.edu
1463c926bc2a34f4211f680bde99356dd5af49b8
8a7e5803bd6dfab67e43f338e382e9f20b07c8bd
/tools/RandomCubeToDoFormula.cpp
602301fd634056f26835d34857b2f7fa647f4b28
[]
no_license
xiaocjnu/cubesolve
0d78f31dbb11ec02798323c200b07aff6c275e7d
f32ad6187466f0c7a2c9766b9fa96ba8bf6a1e8c
refs/heads/master
2023-05-07T19:24:17.824302
2021-06-05T06:36:17
2021-06-05T06:36:17
374,013,715
0
0
null
null
null
null
UTF-8
C++
false
false
3,703
cpp
// 用来生成 CFOP 和 层先法公式练习所用的状态 #include "RandomCubeToDoFormula.h" #include <tuple> using namespace std; using namespace cs; AxisCubieCube randomCubeToDoFormulaF2L(int axis, int idx) { AxisCubieCube cc; if (idx < 0 || idx >= 41 || axis < 0 || axis >= 24) return cc; cc.cubie = CubieCube::randomCube(); cc = cc....
[ "huxiaobin@gancube.com" ]
huxiaobin@gancube.com
4395f6f96672b2af9b5bdd692eb3782e908bdd95
33b567f6828bbb06c22a6fdf903448bbe3b78a4f
/opencascade/ShapeAnalysis_TransferParameters.hxx
477584834be5458121d079f71fd96e67dfc1d5e0
[ "Apache-2.0" ]
permissive
CadQuery/OCP
fbee9663df7ae2c948af66a650808079575112b5
b5cb181491c9900a40de86368006c73f169c0340
refs/heads/master
2023-07-10T18:35:44.225848
2023-06-12T18:09:07
2023-06-12T18:09:07
228,692,262
64
28
Apache-2.0
2023-09-11T12:40:09
2019-12-17T20:02:11
C++
UTF-8
C++
false
false
3,703
hxx
// Created on: 1999-06-21 // Created by: Galina KULIKOVA // Copyright (c) 1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Les...
[ "adam.jan.urbanczyk@gmail.com" ]
adam.jan.urbanczyk@gmail.com
1905716e09d1afc0c1e0106acc214f013dc6de37
37d211eebb4bac08244a64bfe931f97420936682
/字符串通配符/字符串通配符/z.cpp
df2c012b06f806613b5e0bf5f966b28977eaa446
[]
no_license
girl-6/C-
203cf1fe09152098af9a346f144657352b5fc15f
05cc7c00398297def51e2211103e4fa8556f5701
refs/heads/master
2021-07-11T03:23:09.258195
2020-07-20T05:48:48
2020-07-20T05:48:48
179,990,456
2
0
null
null
null
null
UTF-8
C++
false
false
1,010
cpp
#include <iostream> #include <string> using namespace std; bool Compar(string &s1, string &s2) { if (s2.empty()) return false; for (int i = 0; i < s2.size(); i++) { if (s1[i] >= 'A'&&s1[i] <= 'Z') s1[i] += 32; if (s2[i] >= 'A'&&s2[i] <= 'Z') s2[i] += 32; if (s1[i] == s2[i] || s1[i] == '?') continu...
[ "1971561926@qq.com" ]
1971561926@qq.com
01bf7d4daccf0074c4565428deb8dc03e9fe37f1
33bd7c6d8df57039ec636cbf62f02265e7b861fb
/include/h3api/H3Assets/H3TextTable.cpp
06d07a07177bff750a19352ded0018608756d49f
[ "MIT" ]
permissive
RoseKavalier/H3API
26f5bd1e2d63d1a61f762bba16a009ba33bf021f
49c65f1e30fe82a2156918aa7e45349f91a8524d
refs/heads/master
2023-08-18T14:07:00.214661
2022-11-14T02:27:17
2022-11-14T02:27:17
367,050,838
21
8
MIT
2023-08-06T16:55:05
2021-05-13T13:04:01
C++
UTF-8
C++
false
false
2,364
cpp
////////////////////////////////////////////////////////////////////// // // // Created by RoseKavalier: // // rosekavalierhc@gmail.com // // Created or last upda...
[ "rosekavalierhc@gmail.com" ]
rosekavalierhc@gmail.com
34e11e34dfd90da897cc6c2760d0fd33c92de0d1
4a13b76504c735d5a82a64ab2f6186a5d0df5f7b
/count-and-say.cpp
9d31b7b0b87344e2c6fd24904aaaca6828b69888
[]
no_license
lispc/leetcode
e586513217cc308418f15334d3fd42000aced3f9
e3cb380d364083a94fdf859aa38d5706206a9cb7
refs/heads/master
2020-06-05T05:16:58.867428
2014-07-14T13:30:39
2014-07-14T13:30:39
21,820,438
1
0
null
null
null
null
UTF-8
C++
false
false
640
cpp
class Solution { public: string it(string s) { stringstream ss; int l = s.size(); char prev=s[0]; int cnt=1; for(int i=1;i<l;i++) { if(s[i]!=prev) { ss<<cnt<<prev; cnt=1; prev=s[...
[ "mycinbrin@gmail.com" ]
mycinbrin@gmail.com
51affbe6e0ae0c0f3817996c66b2c1bcd00b349b
8bfa3c91abe7f22bffc3115c1fa48ed1a4aabd82
/ABC/119/D/lazy_faith.cpp
5c231b3edee4bc6ae0e850eef2581dcb4d447e7b
[]
no_license
yugo1103/atcoder
96a0dcd41704fadc0a1ef3253cdffa4a961fdc0a
9b2d0b1a0f178cd442d51d2ad07added982d2a92
refs/heads/master
2020-07-26T04:04:41.019118
2020-03-30T10:42:39
2020-03-30T10:42:39
208,528,448
0
0
null
null
null
null
UTF-8
C++
false
false
2,601
cpp
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; #define rep(i, n) for(int i = 0; i < n; i++) int main(void){ ll a, b, q; cin >> a >> b >> q; pair<ll, ll> sq[a + q], tq[b + q]; pair<ll, ll> x[q]; rep(i, a){ cin >> sq[i].first; sq[i].second ...
[ "y1103orz@akane.waseda.jp" ]
y1103orz@akane.waseda.jp
56eb36e35021c486973d300e36531bdf27fddefe
6090fd92273ffae6ac2fd1e6d63798267f2e797f
/LinkedStack/src/linked_stack.h
9e12959a598fc7d12964347586b4ec0b23f5dfc7
[]
no_license
vapstor/EstruturaDados
d62f0bc1708dc6932f6816e21b02b4a4f5942ea2
2475526bca22d9dfad495cddf869f1148b3c11d6
refs/heads/master
2021-07-12T08:21:42.475268
2017-10-17T05:02:10
2017-10-17T05:02:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,001
h
//! Copyright [2017] <Acauã Pitta> #ifndef STRUCTURES_LINKED_STACK_H #define STRUCTURES_LINKED_STACK_H #include "./linked_list.h" #include <cstdint> // std::size_t #include <stdexcept> // C++ Exceptions namespace structures { template<typename T> //! Class Pilha Encadeada class LinkedStack : LinkedList<T>{ publ...
[ "acaua.pitta@hotmail.com" ]
acaua.pitta@hotmail.com
0558e5a3856ce56dbbd016feb794597b254d343c
36f94605da715fcf8820224cf4789c042f5dfbc4
/GramN2/GramN2_pssm/building_batchfile_pssm.cpp
8cdb2c522e22d8735ce17ee76e252da7b9ace12e
[]
no_license
swakkhar/ProteinLocalization
6f5334c2110c6b1d9b2a76d3f8e2371fc264fb5a
bd5c4b91d303a8ce8eb2c3601895b9ebdd197e4a
refs/heads/master
2016-09-12T12:38:45.084062
2016-04-27T13:43:45
2016-04-27T13:43:45
57,215,546
0
0
null
null
null
null
UTF-8
C++
false
false
1,254
cpp
#include <iostream> #include <fstream> #include <cctype> #include <ctype.h> #include <iomanip> #include <cstring> #include <string.h> #include <stdlib.h> using namespace std; int main() { long i,j; int m =10; char num_data[7]; char format[]=".txt"; char add_text[50]="dos2unix train"; ofstrea...
[ "sshatabda@gmail.com" ]
sshatabda@gmail.com
3d13d0a9c0c3f343f836570a50fe4834c809bc77
cd44c5b4e2687b38722b8ea74f0e9ca8930fb2c9
/abc067_a.cpp
5e8988f70debb8c44d74ba701df1091d84bee7b4
[]
no_license
sigu1011/atcoder
b1a3b54d9f1e8c178e5f58505cca69b5ace1b23f
8280c422a065b676eefeaf2374229635a92531bc
refs/heads/master
2020-06-11T17:44:17.073065
2020-01-26T14:50:48
2020-01-26T14:50:48
194,039,322
0
0
null
null
null
null
UTF-8
C++
false
false
231
cpp
#include <bits/stdc++.h> using namespace std; int main() { int A, B; scanf("%d%d", &A, &B); if (A % 3 == 0 || B % 3 == 0 || (A + B) % 3 == 0) { printf("Possible"); } else { printf("Impossible"); } return 0; }
[ "52273288+sigu1011@users.noreply.github.com" ]
52273288+sigu1011@users.noreply.github.com
454a9a3f8b70820cb9be7fef64bd34ea5f233148
8e0e9ecac8a3a79539d80cd41b1d66e476abd4a2
/src/app/MIA/src/tool_factory.h
1aa1760274a92c700080c23d84645673ca150348
[]
no_license
Tzishi/FlashPhoto
ddf28a4ece3bff2d79006061273af60e1b76739c
31cb94b9c2783c048402a29595a31ee12295183c
refs/heads/master
2020-04-08T18:43:36.078519
2018-11-29T07:02:15
2018-11-29T07:02:15
159,621,953
0
0
null
null
null
null
UTF-8
C++
false
false
1,938
h
/******************************************************************************* * Name : tool_factory.h * Project : image_tools * Module : Tool * Copyright : 2016 CSCI3081W TAs. All rights reserved. * Description : Header file for ToolFactory * Creation Data : 2/15/15 * O...
[ "tengx096@umn.edu" ]
tengx096@umn.edu
d3f6c07cb9b967d09ce7b2b6def1123a2f4b2010
99cf7ed46654fabf55b4bd0a4e16eb512177e5c3
/Public_Library/Core/Matrices/SPARSE_MATRIX_THREADED_CONSTRUCTION.cpp
81ce174382453be7bfa387d3dfa1b339c2a004ec
[]
no_license
byrantwithyou/PhysBAM
095d0483673f8ca7cee04390e98b7f5fa8d230ca
31d8fdc35dbc5ed90d6bd4fd266eb76e7611c4a5
refs/heads/master
2022-03-29T06:20:32.128928
2020-01-21T15:15:26
2020-01-21T15:15:26
187,265,883
0
1
null
null
null
null
UTF-8
C++
false
false
2,562
cpp
//##################################################################### // Copyright 2017 Craig Schroeder // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### #inclu...
[ "snubdodecahedron@gmail.com" ]
snubdodecahedron@gmail.com
ed270d0db79ed339ebe16a2b34db435d42b246f4
0026670c52b81d336d32f279624ccf51c7c75c23
/Bob/AIEngine/AIEnemyGMonsterFire.h
2f5bb96aa3a23e1c1f95dba81adf3ad49505d577
[ "MIT" ]
permissive
shoematt/BladeofBetrayal
c4863a220ad3e16d0610e1d4923756101a9cb9dd
8657c4bb41c8127e200fe529c526153ef5e1338f
refs/heads/master
2020-12-28T23:24:00.684411
2015-03-13T07:22:16
2015-03-13T07:22:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
668
h
// EnemyGMonsterFire.h: interface for the EnemyGMonsterFire class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_ENEMYGMONSTERFIRE_H__BFF05288_8859_4374_9A56_563294C71E28__INCLUDED_) #define AFX_ENEMYGMONSTERFIRE_H__BFF05288_8859_4374_9A56_563294C71E28__INCLUDED_ #if _MSC_...
[ "duhone@conjuredrealms.com" ]
duhone@conjuredrealms.com
49270ce8376d340563d97e6e595166f66489b026
66fad47ebc33fb401e75948620004671643c26f3
/src/qt/rpcconsole.cpp
6302d1ad733524b8e3057ff4073779d307f3262a
[ "MIT" ]
permissive
TheQuantumCoin/QuantumCoin
903c4ef204ac61aad4cddbadf7ef4500d55c4f54
740a549bc0e9eee1d64ccde221af2d5250455986
refs/heads/master
2021-01-22T06:44:17.882676
2014-03-08T17:42:04
2014-03-08T17:42:04
17,347,677
0
1
null
null
null
null
UTF-8
C++
false
false
14,200
cpp
#include "rpcconsole.h" #include "ui_rpcconsole.h" #include "clientmodel.h" #include "bitcoinrpc.h" #include "guiutil.h" #include <QTime> #include <QThread> #include <QKeyEvent> #if QT_VERSION < 0x050000 #include <QUrl> #endif #include <QScrollBar> #include <openssl/crypto.h> // TODO: add a scrollback limit, as the...
[ "username@computername.(none)" ]
username@computername.(none)
192e5f93f512ee53385bdc0257df62c6150eb4bb
0ca50389f4b300fa318452128ab5437ecc97da65
/src/color/YPbPr/akin/YDbDr.hpp
23faa84d6adb1c695bd5ec23c31afaf732e22209
[ "Apache-2.0" ]
permissive
dmilos/color
5981a07d85632d5c959747dac646ac9976f1c238
84dc0512cb5fcf6536d79f0bee2530e678c01b03
refs/heads/master
2022-09-03T05:13:16.959970
2022-08-20T09:22:24
2022-08-22T06:03:32
47,105,546
160
25
Apache-2.0
2021-09-29T07:11:04
2015-11-30T08:37:43
C++
UTF-8
C++
false
false
1,748
hpp
#ifndef color_YPbPr_akin_YDbDr #define color_YPbPr_akin_YDbDr #include "../../generic/akin/YPbPr.hpp" #include "../category.hpp" #include "../../YDbDr/category.hpp" namespace color { namespace akin { template< ::color::constant::YPbPr::reference_enum reference_number >struct YPbPr< ::color::cat...
[ "dmilos@example.com" ]
dmilos@example.com
eb08f09fd281596fee24bb3a0d06dfc08ef56dfc
3d150aadc458dee33ebd532b33bc0e5e260d2ce5
/a4/q1printer.cc
9db9503cc1bf70449ea6c6311637799889c073be
[]
no_license
f2mahmud/concurrency-problems
5044169441287b98a8c7708aa0ad0e87d4512cf3
c54efdfca332cf82b437e3018be4b046b36c787c
refs/heads/master
2021-10-22T23:31:24.108762
2019-03-13T16:50:07
2019-03-13T16:50:07
168,610,012
0
0
null
null
null
null
UTF-8
C++
false
false
2,632
cc
#include <iostream> #include "q1printer.h" using namespace std; Printer::VoterState::VoterState(){} void Printer::VoterState::update( Voter::States s, unsigned int gv, unsigned int pv, unsigned int sv, unsigned int bc) { state = s; giftVote = gv; pictureVote = pv; statueVote = sv; blockCount =bc; dirty = true...
[ "f2mahmud@uwaterloo.ca" ]
f2mahmud@uwaterloo.ca
df33ed974fa7e7c7b0c1d779807edb29ce8533c0
76f9898ff7a555f4a729d725056a317af818375d
/tools/ZAPD/ZAPD/ZRoom/Commands/SetObjectList.cpp
f8d00a101e095a9b4bb1583412e535d922ca9f1b
[ "MIT" ]
permissive
z64proto/sw97
0b65837ab2f2a4073faca5670761d7fe0e74d29d
f571505ade2cefd4a5b5d19da06d33e7c6b02c60
refs/heads/master
2023-08-01T02:47:42.895871
2022-05-15T20:29:08
2022-05-15T20:29:08
430,216,978
208
29
null
2021-11-22T12:23:50
2021-11-20T21:52:59
C
UTF-8
C++
false
false
2,109
cpp
#include "SetObjectList.h" #include "../../BitConverter.h" #include "../../StringHelper.h" #include "../../ZFile.h" #include "../ObjectList.h" #include "../ZRoom.h" using namespace std; SetObjectList::SetObjectList(ZRoom* nZRoom, std::vector<uint8_t> rawData, int rawDataIndex) : ZRoomCommand(nZRoom, rawData, rawData...
[ "zelda@sw97" ]
zelda@sw97
2f31e19e9d1bc0ef2852ef09acf4cdbcea1b5ae7
8cd0711daac64d4396d6f231728283b5c2c50233
/code/project1.cpp
c7d3bad57a5c9e995c9a07bce4f3c52e709e74aa
[]
no_license
rcmccartney/comparing_optimal_sorts
af8ce6912ff7a051aa426903fd609b89eb89d5bb
63106a08ccc082224449f76628fe25305d12232d
refs/heads/master
2021-01-01T05:59:25.475211
2014-12-16T16:46:23
2014-12-16T16:46:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,801
cpp
//============================================================================ // Name : project1.cpp // Author : rm7536 // Description : Uses sorting algorithms and generic templates to read in data // sort it and compare running times // Version : $Id$ // Revision : $Log$ //=========...
[ "rm7536@rit.edu" ]
rm7536@rit.edu