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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8d662d120c653c09672c049714385cc5d0544732 | 70309969e419e3da3fa8adf51fbc6f7b396e854b | /code/improve/BPM/speaker.hpp | 7b08a76674b0ed3338b85fc024dd4bc57ec9407d | [] | no_license | carlos1348820/learngit | d4d0a295e7de81be48eec1a95290d00d1bd43483 | 981d3058f7fdf80ac9a0a8d515f72ff17a02c12a | refs/heads/master | 2022-07-13T11:42:56.596382 | 2020-05-17T11:42:02 | 2020-05-17T11:42:02 | 255,522,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 295 | hpp | #pragma once
#include <iostream>
#include <string>
using namespace std;
class speaker
{
public:
void operator=(const speaker &p)
{
this->m_name=p.m_name;
this->m_ID=p.m_ID;
this->m_score=p.m_score;
}
string m_name;
int m_ID;
double m_score;
}; | [
"1348820149@qq.com"
] | 1348820149@qq.com |
f0594daab1ba75ba26533eb5da5378ed278b5f59 | 61a344bd2ae94057a3cd0f53f850af918baa2f56 | /dBOSpp/Tests/TestSys.hpp | eff722db851e5b05d5db888044478c15d5eae8c4 | [] | no_license | yisea123/dBOS | 18435199775de7931061ad29989c0535738b0f68 | e23c5c6b9a00dfe6504910b05a0ce89fa39d603d | refs/heads/master | 2020-09-21T16:22:23.322436 | 2016-07-14T08:46:58 | 2016-07-14T08:46:58 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 3,046 | hpp | /**
* @file TestSys.hpp
* @author David Broadhurst
* @date 28/06/2015
*
* \brief Definition of unit test system for dBOS.
*
*/
// -------------------------------------------------------------------------------------------------
#ifndef TESTSYS_H_
#define TESTSYS_H_
// ------------------------------------------... | [
"decbroadhurst@gmail.com"
] | decbroadhurst@gmail.com |
9df271ad1361ad19e3717aa79cecb34ba9af8f1d | 3f284e1d3e737f9f47bf8a04f550336f5afd0cc5 | /platformer_program/glut/9RotationTranslationScaling.cpp | a0af8913474f4f1ab6c623704a010b113699a5f1 | [
"MIT"
] | permissive | ricsinaruto/Platformer-game | 33a05daee3511ac110237f081f651c4680c9ef64 | b3ebbc771864741f78b09244478db1ddc2bd8ffb | refs/heads/master | 2021-01-11T15:28:23.262317 | 2020-05-17T14:14:28 | 2020-05-17T14:14:28 | 80,352,754 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,914 | cpp | #include "screencasts.h"
/* Poor man's approximation of PI */
#define PI 3.1415926535898
/* Macro for sin & cos in degrees */
#define Cos(th) cos(PI/180*(th))
#define Sin(th) sin(PI/180*(th))
/* Globals */
double dim = 3.0; /* dimension of orthogonal box */
char *windowName = "OpenGL screenscasts 9: Rotation, Scal... | [
"ricsinaruto@hotmail.com"
] | ricsinaruto@hotmail.com |
6d87dc3b3f4d367deb118b20fee723ed49b6b740 | ffd02605bdd357feae1d81a30b875debee43ee82 | /src/Model/MathHelper.cpp | 9fcb32bf0174174c0b8690cc1aa47b02f9432950 | [] | no_license | janhsimon/AmbientOcclusion | 45c4c26e1215419c4dad7df4bab21224e248f5b4 | 8c44d6f783fa1b4fa416049d7400b8b6d530c4f7 | refs/heads/master | 2021-06-04T20:12:17.912798 | 2016-08-21T14:57:13 | 2016-08-21T14:57:13 | 63,185,305 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 889 | cpp | #include <glew.h>
#include "MathHelper.hpp"
glm::mat4 MathHelper::aiMatrix4x4ToGlm(const aiMatrix4x4 &from)
{
glm::mat4 to;
to[0][0] = from.a1; to[0][1] = from.b1; to[0][2] = from.c1; to[0][3] = from.d1;
to[1][0] = from.a2; to[1][1] = from.b2; to[1][2] = from.c2; to[1][3] = from.d2;
to[2][0] = from.a3; to[2][1... | [
"checker_at_work@web.de"
] | checker_at_work@web.de |
fde774f8bda6783d6b253baf1e71ffc235e5855b | d3700c868de44d9b49ccba6cd792dd72924df811 | /.localhistory/C/Users/Henrique/Documents/Visual Studio 2017/TcpByteComunication/TcpByteComunication/1571254223$Adapter.cpp | 2510eec99c825d40e3c138b2da07044863b78bb1 | [] | no_license | HenriqueGomesOriginal/tcpByteCommunication | 211ed3597f3fdfb4a7d415aceec9a73733857f1b | 8c56bbafd6638eceb88f9ebdc778c97919061caa | refs/heads/master | 2020-08-28T05:52:58.380815 | 2019-10-25T20:59:00 | 2019-10-25T20:59:00 | 217,613,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,136 | cpp | #include "Adapter.h"
Adapter::Adapter()
{
}
int Adapter::setRunning(bool run)
{
running = run;
return 0;
}
bool Adapter::getRunning()
{
return running;
}
void Adapter::init(Object^ form)
{
System::Windows::Forms::Form^ form1 = (System::Windows::Forms::Form^)form;
System::Windows::Forms::RichTextBox^ rt_message... | [
"henriquegomesoriginal@gmail.com"
] | henriquegomesoriginal@gmail.com |
90b58d5d8e2aff9ab341041dd4573cffc324f4c6 | 65bdfba9ea0f117be69d7d0f314ef4d39ee23170 | /teste-de-rede/teste-de-rede.ino | 517344ee7244dd034aa3af9c0e58a587f64234fc | [] | no_license | dieisonborges/diesenbeer-arduino-webview | ce671c9b7af207479e3691d6d32de71feb64cc67 | 000459cfa0c432e8b504e14e1ad2742d51ac2215 | refs/heads/master | 2022-11-27T12:54:29.925742 | 2020-08-10T00:07:18 | 2020-08-10T00:07:18 | 284,768,919 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,176 | ino | //Programa: Automacao Residencial com Arduino e Ethernet Shield
//Autor: FILIPEFLOP
#include <SPI.h>
#include <Ethernet.h>
String readString;
int pino_rele1 = 3;
int pino_rele2 = 4;
boolean ligado = true;
boolean ligado_2 = true;
//Informacoes de endereco IP, gateway, mascara de rede
byte mac[] = { 0xA4, 0x28, 0x... | [
"dieisoncomix@gmail.com"
] | dieisoncomix@gmail.com |
e9f92acaad10aee272ceaa014045c5db23c98258 | 7bd101aa6d4eaf873fb9813b78d0c7956669c6f0 | /PPTShell/PPTShell/NDCloud/NDCloudContentService.h | b3beeaa29e660d9077a163078b08595f6ea15f2d | [] | no_license | useafter/PPTShell-1 | 3cf2dad609ac0adcdba0921aec587e7168ee91a0 | 16d9592e8fa2d219a513e9f8cfbaf7f7f3d3c296 | refs/heads/master | 2021-06-24T13:33:54.039140 | 2017-09-10T06:31:11 | 2017-09-10T06:35:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,811 | h | //-----------------------------------------------------------------------
// FileName: NDCloudContentService.h
//
// Desc:
//------------------------------------------------------------------------
#ifndef _ND_CLOUD_CONTENT_SERVICE_H_
#define _ND_CLOUD_CONTENT_SERVICE_H_
#include "Util/Singleton.h"
#include "Http/H... | [
"794549193@qq.com"
] | 794549193@qq.com |
4979bf780a013e54e6fb11213b3e0291d1581acf | 889eafa465b495e23552f89dcfc8a490c45aff3e | /src/wii/wii_connect_server.h | bae26cc8139894686914d138e68b4f64b8f2f886 | [] | no_license | tzik/puyoai | d3d5b2e84fe85caeea438f2ecb830f4bb9d99432 | 02f86563e2f78b098d6dd03fc041ac3d5fa29426 | refs/heads/master | 2020-12-30T18:29:59.953727 | 2014-07-02T16:28:22 | 2014-07-02T16:28:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,138 | h | #ifndef WII_WII_CONNECTOR_SERVER_H_
#define WII_WII_CONNECTOR_SERVER_H_
#include <array>
#include <deque>
#include <map>
#include <memory>
#include <mutex>
#include <string>
#include <thread>
#include "base/base.h"
#include "capture/analyzer_result_drawer.h"
#include "core/decision.h"
#include "core/field/core_field.... | [
"mayah@mayah.jp"
] | mayah@mayah.jp |
9e13ed0d4dd36a66191c29701dc34d2b0572b0b5 | 48adaba2bb6312c7e89ff4bbb590815e97a31e58 | /src/gen-cpp/BucketStoreMapping.cpp | 067e9d5ffb88fcdda92d20c3c3c37ef6375f7418 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | onlinecity/scribe | 5ea38ba34dcfa24a1fa78f6b5bf58651633e5c67 | 82baf7d2143ac3f69db295478e9c34904b1b2b97 | refs/heads/master | 2021-01-18T09:40:13.217888 | 2013-08-13T12:59:35 | 2013-08-13T12:59:35 | 2,749,804 | 0 | 1 | null | 2013-08-13T12:55:32 | 2011-11-10T16:26:20 | C++ | UTF-8 | C++ | false | true | 12,198 | cpp | /**
* Autogenerated by Thrift Compiler (0.7.0)
*
* DO NOT EDIT UNLESS YOU ARE SURE THAT YOU KNOW WHAT YOU ARE DOING
*/
#include "BucketStoreMapping.h"
namespace scribe { namespace thrift {
uint32_t BucketStoreMapping_getMapping_args::read(::apache::thrift::protocol::TProtocol* iprot) {
uint32_t xfer = 0;
std... | [
"hd@onlinecity.dk"
] | hd@onlinecity.dk |
214416a9517fc115f081c247c67bc6eceb2cbbb3 | c51febc209233a9160f41913d895415704d2391f | /YorozuyaGSLib/source/CQuestMgr.cpp | b6fe82113e7f8ee9644a3cbfd2a799fcbc6a6138 | [
"MIT"
] | permissive | roussukke/Yorozuya | 81f81e5e759ecae02c793e65d6c3acc504091bc3 | d9a44592b0714da1aebf492b64fdcb3fa072afe5 | refs/heads/master | 2023-07-08T03:23:00.584855 | 2023-06-29T08:20:25 | 2023-06-29T08:20:25 | 463,330,454 | 0 | 0 | MIT | 2022-02-24T23:15:01 | 2022-02-24T23:15:00 | null | UTF-8 | C++ | false | false | 10,875 | cpp | #include <CQuestMgr.hpp>
START_ATF_NAMESPACE
CQuestMgr::CQuestMgr()
{
using org_ptr = void (WINAPIV*)(struct CQuestMgr*);
(org_ptr(0x1402875a0L))(this);
};
void CQuestMgr::ctor_CQuestMgr()
{
using org_ptr = void (WINAPIV*)(struct CQuestMgr*);
(org_ptr(0x1402875a0L))... | [
"b1ll.cipher@yandex.ru"
] | b1ll.cipher@yandex.ru |
5c2238d00d3048b21856eabf7b366ebffa938f0c | be17755e937d9691c52773691a7e008b3bfbf272 | /Study/16_week/SWEA/3.cpp | 7349f62af5d4e318e065ad575a36380a8d622159 | [] | no_license | kimdy003/AlgorithmStudy | 933673314534d8c4fd50e4e276fd9185634d1191 | d0eb90bfa45c760d4b70abc83bcd5372d4bf0718 | refs/heads/master | 2023-04-09T10:20:07.095903 | 2021-04-17T14:38:59 | 2021-04-17T14:38:59 | 276,691,657 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,200 | cpp | #include<iostream>
#include <cstring>
#include <queue>
#include <map>
const int MAX = 20;
using namespace std;
int n, m;
string board[MAX][MAX];
int visit[MAX][MAX][4][16];
map<string, int> order;
pair<int, int> movdir[] = {{-1, 0}, {1, 0}, {0, -1}, {0, 1}}; //상 하 좌 우
void BFS(int test_case){
queue<pair<pair<in... | [
"kyl123451@naver.com"
] | kyl123451@naver.com |
2f23a813fe611a319cec12bd55ee8b5858a07981 | 75952c75cf062910c9ced72ff22d7a3d5ea1513d | /c++/google_eggs.cpp | 69d4232eae12faedb6e4101f35945c28e27cea2b | [] | no_license | GabrieleMaurina/workspace | f01a412f001f63c8e41dc8e6d21941be83bf404e | 37d98a99c83d36c07c51990c5b6ec2a8acaac33e | refs/heads/master | 2022-09-26T16:48:49.169262 | 2022-08-30T20:09:18 | 2022-08-30T20:09:18 | 155,683,393 | 1 | 0 | null | 2021-02-26T14:42:44 | 2018-11-01T08:16:45 | Python | UTF-8 | C++ | false | false | 538 | cpp | #define MAX_N 1000000
#define MAX_K 100
#include <iostream>
using namespace std;
int f(const int n, const int k){
static int fs[MAX_N-1][MAX_K-1];
if(k<0||n<0)return -1;
if(n==0)return 0;
if(k==0)return -1;
if(n==1)return 1;
if(k==1)return n;
if(fs[n-2][k-2])return fs[n-2][k-2];
int mn=n;
int mx;
for(int i... | [
"gabriele@localhost-live.lan"
] | gabriele@localhost-live.lan |
1f9f6687361d4194c4760132ad8840b5a353a525 | 96fd9c3aca202842d7c8690e8ecfea2283deea20 | /test/ssl-client.cpp | a116354e4a44bb75ad6a436f53d845524402927e | [] | no_license | hbhdytf/socks5-ssl | e0a18faa96829f8f945f1f056f3974658c52ac4c | 36f2568d313d6fb44e0f1bf7f89561e26bed14c5 | refs/heads/master | 2021-01-10T22:03:37.667027 | 2015-04-21T18:40:13 | 2015-04-21T18:40:13 | 34,344,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,279 | cpp | #include <cstdio>
#include <errno.h>
#include <unistd.h>
#include <malloc.h>
#include <string.h>
#include <sys/socket.h>
#include <resolv.h>
#include <netdb.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#define FAIL -1
int OpenConnection(const char *hostname, int port)
{ int sd;
struct hostent *host;
... | [
"hbhdytf@mail.ustc.edu.cn"
] | hbhdytf@mail.ustc.edu.cn |
adbeefa8c3bdc6a26120296a6ac78ce8d6241f36 | 99a430e13f9789bb1328c68846b2ab48251a796f | /Assignment/Bow.hpp | db3e7b69ae05183c2202cb7b78cbc21a7f7aa50a | [] | no_license | MattJumpertz/Simple-RPG-Game | 25c1af0fb38c9285f8d31f82ccf805be6619d1a7 | ea187f24d3362903e7fad026f00b66c759f24450 | refs/heads/master | 2021-01-10T17:04:35.122072 | 2016-03-30T09:23:40 | 2016-03-30T09:23:40 | 55,049,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 554 | hpp | //
// Bow.hpp
// Assignment
//
// Created by Matthaeus Jumpertz on 9/03/2016.
// Copyright © 2016 Matthaeus Jumpertz. All rights reserved.
//
#ifndef Bow_hpp
#define Bow_hpp
#pragma once
#include "Weapon.hpp"
#include <stdio.h>
using namespace std;
//Inherit from Weapon class
class Bow : public Weapon
{
publi... | [
"mattjumpertz@gmail.com"
] | mattjumpertz@gmail.com |
6e66335505ed0c8b3fddda4437c7885a893a1952 | 43a54d76227b48d851a11cc30bbe4212f59e1154 | /rce/src/v20201103/model/InputManageMarketingRisk.cpp | a291179d6ed20505e6b2b0e136011b5490613263 | [
"Apache-2.0"
] | permissive | make1122/tencentcloud-sdk-cpp | 175ce4d143c90d7ea06f2034dabdb348697a6c1c | 2af6954b2ee6c9c9f61489472b800c8ce00fb949 | refs/heads/master | 2023-06-04T03:18:47.169750 | 2021-06-18T03:00:01 | 2021-06-18T03:00:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,980 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tenent.com"
] | tencentcloudapi@tenent.com |
db4896df49ede66bf5358c64152de91022f60445 | 25ec9458c43fa2a5c0b53419b9daf71cd9df78f7 | /dune/gdt/spaces/dg/interface.hh | 1289470e4e2e5e880fb94ec1590928bbf16dbf4f | [
"BSD-2-Clause"
] | permissive | gitter-badger/dune-gdt | e31ecbff8b897956a55df2d8af9b3cba310d88e4 | 2d658a74f6a2f96a3d3b6cdef702f6b69ec63f42 | refs/heads/master | 2021-01-12T16:24:54.755194 | 2016-10-05T09:13:17 | 2016-10-05T09:13:17 | 70,047,474 | 0 | 0 | null | 2016-10-05T09:43:24 | 2016-10-05T09:43:24 | null | UTF-8 | C++ | false | false | 2,625 | hh | // This file is part of the dune-gdt project:
// https://github.com/dune-community/dune-gdt
// Copyright 2010-2016 dune-gdt developers and contributors. All rights reserved.
// License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)
// Authors:
// Felix Schindler (2015 - 2016)
#ifndef DUNE_GDT_... | [
"felix.schindler@wwu.de"
] | felix.schindler@wwu.de |
56a80765065e4dbbbf80a0783fa8377ed8554dc7 | 524fdd21b916dcc2b18c8f236f3765760d17a136 | /Solutions/387. First Unique Character in a String/solution.cpp | 3cbf8e8924e3cb8b1c635bf2bb605037f1c7a686 | [
"MIT"
] | permissive | andreweissen/LeetCode | ae7556e6e877df95b73401cc368b886b57b4a480 | f149f1761aed8e3615fd0c384ad1ca8bb7bf7a5d | refs/heads/master | 2023-08-01T15:40:38.472708 | 2021-10-01T11:41:23 | 2021-10-01T11:41:23 | 403,603,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,263 | cpp | /**
* solution.cpp
* @author Andrew Eissen <andrew@andreweissen.com>
* @version 1.0
*/
#include <iostream>
class Solution {
public:
/**
* Though the author's first attempts at this problem involved the use of
* involved data structures like <code>map</code>s and <code>vector</code>s to
* produce a clu... | [
"aeissen@gmail.com"
] | aeissen@gmail.com |
821e41170f18a13525a7337ae30a0e5a2ad92e01 | 47bc067058e4d45f8729670b1bfa19aceaadc156 | /HE_CCUP/1.cpp | 51b00656459c55c7a5f80a1d7282fd5a12cfcf20 | [] | no_license | return19/All-C-Codes | 0bd0df357cd4bbc6552e1d943df792a1b4d806bb | b1c2269d2436a0cd65a5ef022595300c4827520f | refs/heads/master | 2021-09-09T16:13:53.464406 | 2018-03-17T17:02:55 | 2018-03-17T17:02:55 | 125,650,568 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,674 | cpp | #include<bits/stdc++.h>
using namespace std;
char aa[101000];
char bb[101000];
int n;
int cmp(int a,int b,int c,int d){
int i,j;
i=a;
j=c;
while(i<=b){
if(aa[i]!=bb[j]) return 0;
i++;
j++;
}
return 1;
}
int check1(int a,int b,int c,int d){
int i,j,k;
if(cmp(a... | [
"abhinandan1941996@gmail.com"
] | abhinandan1941996@gmail.com |
613d96ec191559613d47b67c03eaa65853ac9287 | 429c7c9911d1d474085610a4a9623c116ab0b50e | /NeuArch/NaPetCn.cpp | c1ea8d6d5afd88612c5be94c2dce3549925b64c2 | [] | no_license | evlad/nnacs | 932f575056da33e8d8b8a3b3f98b60b9713a575f | fea3f054b695c97b08b2e2584f2b56bc45b17e0b | refs/heads/master | 2023-04-27T00:38:55.261142 | 2019-10-06T16:20:55 | 2019-10-06T16:20:55 | 13,727,160 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 4,381 | cpp | /* NaPetCn.cpp */
static char rcsid[] = "$Id$";
//---------------------------------------------------------------------------
#include <stdio.h>
#include <string.h>
#include "NaStrOps.h"
#include "NaExcept.h"
#include "NaPetNet.h"
#include "NaPetNod.h"
#include "NaPetCn.h"
//----------------------------------------... | [
"ev1ad@yandex.ru"
] | ev1ad@yandex.ru |
6b4b5b0ce65cce2223cc31e04b899f5dee7c51b2 | 33c28fb730db4f6ac7e71b4795fee289abcf1043 | /数据结构ADT程序/查找/Search/Search/search.cpp | a2574625bbabfdde791f754bb36457ff1faeee61 | [] | no_license | HuangC7/Initial-learning-on-data-structure | 2d63355c932cbbecf0c28f5c5d16eac1aca0ef71 | 6bfd98923e2679d3ecbd32a42e72abac59237828 | refs/heads/master | 2022-11-07T10:36:59.545415 | 2020-06-24T14:06:05 | 2020-06-24T14:06:05 | 274,675,564 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,151 | cpp | #include "search.h"
int Search(int a[], int n, int k) {
int i;
for (i = 1; i <= n; ++i)
if (a[i] == k)
return i;//查找成功返回i
return 0;//查找失败返回0
}
int Bsearch(int R[], int low, int high, int k) {
int mid;
while (low <= high) {//当子表长度大于等于1时进行循环
mid = (low + high) / 2;//取当前表的中间位置
if (R[mid] == k)//找到后返回元素的位置
... | [
"924615933@qq.com"
] | 924615933@qq.com |
d386f2409488d98ca5f95fac61cb61965df621c1 | 566d5c57562a5eb207160fa5c8a76a7609b85927 | /windows/runner/main.cpp | 23549e6ae88cf4cb2f6f730f584e510c2cb66b18 | [] | no_license | mi1890/work_assitant | 4a4333c9b4e15b93271dfd8ac729bec80575f552 | dab8f3b2bc0ac4308cd991b4c0dfcc35fb7c06b7 | refs/heads/master | 2023-02-01T15:07:21.269297 | 2020-12-20T09:23:51 | 2020-12-20T09:23:51 | 323,034,993 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,266 | cpp | #include <flutter/dart_project.h>
#include <flutter/flutter_view_controller.h>
#include <windows.h>
#include "flutter_window.h"
#include "run_loop.h"
#include "utils.h"
int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
_In_ wchar_t *command_line, _In_ int show_comm... | [
"mit1890@qq.com"
] | mit1890@qq.com |
94c8f15acc28a6266053d5d88f0545e6ff0e734a | c4aa092e45dc943ed3932a796a0870ce84714500 | /CommonUtl/utl/UI/EnumComboBox.cpp | 9189948ff105cf49be54a0a22af68c1f3c5c68d9 | [] | no_license | 15831944/DevTools | d07897dd7a36afa6d287cac72a54589da15f968d | 50723004dc9c705e8f095d6f503beeb4096e4987 | refs/heads/master | 2022-11-21T05:41:56.927474 | 2020-07-24T12:30:59 | 2020-07-24T12:30:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,067 | cpp |
#include "stdafx.h"
#include "EnumComboBox.h"
#include "Utilities.h"
#include "utl/EnumTags.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#include "BaseStockContentCtrl.hxx"
// maxEnumValue is used to display fewer enumerations than defined in the enum formatter
CEnumComboBox::CEnumComboBox( const CEnumTags* pEnu... | [
"phc.2nd@gmail.com"
] | phc.2nd@gmail.com |
1460bafd23294fed00354f330b8e95826fbb31f7 | ee8122d29ed51b8ed6c2fd2a753a086fe203055d | /hellomap3/Nuti.framework/Versions/A/Headers/vectortiles/MapnikVT/TextSymbolizer.h | eb8974a81c5a15ea3681e262467403308851749c | [] | no_license | nutiteq/hellomap3d-ios-lfs | 9b18824ba2461392c93d9e789d0ca31c68f6fb39 | 624593eed5d46c5b5fa6690eb95033fb026ca324 | refs/heads/master | 2021-01-24T15:23:22.716202 | 2015-07-02T16:39:16 | 2015-07-02T16:39:16 | 38,443,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,107 | h | /*
* Copyright 2014 Nutiteq Llc. All rights reserved.
* Copying and using this code is allowed only according
* to license terms, as given in https://www.nutiteq.com/license/
*/
#ifndef _NUTI_MAPNIKVT_TEXTSYMBOLIZER_H_
#define _NUTI_MAPNIKVT_TEXTSYMBOLIZER_H_
#include "TileSymbolizer.h"
#include "ParserUtils.h"
#... | [
"jaak@nutiteq.com"
] | jaak@nutiteq.com |
7c7d99fde0b3a203a399685f1fe9d962c9f013f1 | d65387cbff074381a68d040f28c457d03053cfa9 | /COMS327/behrens_nicholas_assignment-1.08/dungeon_objects.h | df439e2b6a40e7a18f3e5e7cf745d640caca71c8 | [] | no_license | nab0310/327Spring2017 | 5f03e1b2a72f5104ec8b9e2b772be1b787042bbe | 8cc3cf29d31b1b2a38a4f67d248dc5399b792424 | refs/heads/master | 2021-01-20T01:29:04.412204 | 2017-04-24T20:51:36 | 2017-04-24T20:51:36 | 89,285,844 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,889 | h | #ifndef DUNGEON_OBJECTS_H
#define DUNGEON_OBJECTS_H
# include <stdint.h>
# include "dims.h"
# include <vector>
# include <string>
# include "dice.h"
# include "descriptions.h"
typedef struct dungeon dungeon_t;
void gen_objects(dungeon_t *d);
class dungeon_object {
private:
std::string name;
object_type_t type;... | [
"nabehrens@sbcglobal.net"
] | nabehrens@sbcglobal.net |
145ca29de3a3cc45b97e747e93c30143ab595bb1 | 7c3389b924ce291642a10d53db8b0cd04dbddbf7 | /src/perf-jit.h | 248c9a2eda968f4eeb06c9cf08569b533d495477 | [
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | hinus/v8 | 65c1946d079226dd75dc27c29f351f800dbba710 | 14570528745be33c583d23b441c0f3e7a4ea315a | refs/heads/master | 2021-01-21T17:50:38.397026 | 2016-03-30T01:08:11 | 2016-03-30T01:08:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,915 | h | // Copyright 2016 the V8 project authors. 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 source code must retain the above copyright
// notice, this list of ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
c81aa8178fcd52b00466b2e8e4f3eb6ae04bea7e | a5cf450078809a0b507e21d56660b7c4f033c6d5 | /include/utl/stringarray.h | fe394142479cd95e193481825f950370a923463d | [] | no_license | fay1987/communication_manager | 98a72677d4e2aa631e2c895741819a53c639c79a | 7df29883f6a18400ceb26682cf2d800630b6df33 | refs/heads/master | 2021-07-13T14:30:04.214616 | 2018-01-25T08:08:05 | 2018-01-25T08:08:05 | 94,993,715 | 1 | 2 | null | null | null | null | GB18030 | C++ | false | false | 1,019 | h | /*==============================================================================
* 文件名称 : stringarraiy.h
* 模块 : 字符串数组类
* 创建时间 : 2008-04-28 15:55:23
* 作者 : 尹宏昊
* 版本 : v1.0
* 修改后版本 : v1.1
* 修改摘要 :
* 修改者 : 尹宏昊
* 修改日期 : 2008年5月6日
==============================================================================*/
#ifndef _P... | [
"lingquan324@163.com"
] | lingquan324@163.com |
9a8fe5bec003b29536f64b9f8bfd08eecb45fb75 | b00a71616f031ee09c75979de16c1a3860a0cdc3 | /ServicePack.cpp | 4452ae67e3136c276d5b50ab733521954d3068ae | [] | no_license | brobichaud/DotNetVersion | ca9beb3534b851dda6e672597e2b121598ceb352 | a67f290ccc0e3646e4b18d6f17b928c4c6dca704 | refs/heads/master | 2021-06-19T15:50:05.963528 | 2019-06-21T17:29:28 | 2019-06-21T17:29:28 | 115,156,779 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,959 | cpp | #include "registrykeys.h"
#include "support.h"
/******************************************************************
Function Name: GetNetfx4xSpLevel
******************************************************************/
int GetNetfx4xSpLevel(char* szVersion)
{
DWORD dwRegValue = 0;
lstrcpy(szVersion, "");
RegistryGet... | [
"brobichaud@digimarc.com"
] | brobichaud@digimarc.com |
19924cf9a595f95f5f715903559c143e217458c9 | 8afb5afd38548c631f6f9536846039ef6cb297b9 | /_ORGS/NPM/node/deps/v8/src/wasm/function-body-decoder-impl.h | 7927e58d8452b1cd463aedeaf34899a01d3dabc5 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"SunPro"
] | permissive | bgoonz/UsefulResourceRepo2.0 | d87588ffd668bb498f7787b896cc7b20d83ce0ad | 2cb4b45dd14a230aa0e800042e893f8dfb23beda | refs/heads/master | 2023-03-17T01:22:05.254751 | 2022-08-11T03:18:22 | 2022-08-11T03:18:22 | 382,628,698 | 10 | 12 | MIT | 2022-10-10T14:13:54 | 2021-07-03T13:58:52 | null | UTF-8 | C++ | false | false | 196,486 | h | // Copyright 2017 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.
#if !V8_ENABLE_WEBASSEMBLY
#error This header should only be included if WebAssembly is enabled.
#endif // !V8_ENABLE_WEBASSEMBLY
#ifndef V8_WASM_FUNC... | [
"bryan.guner@gmail.com"
] | bryan.guner@gmail.com |
6c00dd7bf9ba76a2bbea724d0eca1c267df145b5 | 964ecc9b389b3bf90ec8d6c0e4b131597737a71c | /project1/tcpsocket.hpp | 5942ed3bfeccd8b3bc287dbcb60a3836adc812ba | [] | no_license | Thesunseeker/Linux | 6ab2e2cf287884e672133bb0c2de97279f2b7682 | 393f6008fcfea0478d675abf8629823698985c77 | refs/heads/master | 2020-08-12T14:26:46.830254 | 2019-12-18T14:18:18 | 2019-12-18T14:18:18 | 214,783,485 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,847 | hpp | #ifndef __M_SOCK_H__
#define __M_SOCK_H__
#include <iostream>
#include <string>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
class TcpSocket
{
public:
TcpSocket()
:_sockfd(-1)
{}
int GetFd()
{
return _s... | [
"1045206922@qq.com"
] | 1045206922@qq.com |
f1b22a9be4468ce185b625377491ef1af332ffe6 | be4bf29e3f333ab48bca932145815e5fecad0d11 | /config/h.cpp | eeb6ccef1b249547f81062bdab7fa08cab9dcd7e | [] | no_license | oscar6654/oscar-api | d03c9e101927757f5c18014dba828ea61731a415 | aee8bf833aca55977dfe77772881a5376c40f0f5 | refs/heads/master | 2021-01-10T05:58:41.739904 | 2016-03-06T08:31:57 | 2016-03-06T08:31:57 | 48,014,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 60 | cpp | using namespace std;
int main()
{
cout << "Hello";
}
| [
"ochng6654@gmail.com"
] | ochng6654@gmail.com |
2ccb63fc65ed9f3f435e06f49ebd0122eeb88727 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10_refined2/0.048/alpha.water | 229fca5c15c14028eff04f220114e18c8db0e4b8 | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 451,697 | water | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
... | [
"stig.m.nilsen@gmail.com"
] | stig.m.nilsen@gmail.com |
47fa065639340279c44d1a909472f5333f007625 | 61a5de9fc8d78424b6ab98f37638582de986b9aa | /extensions/gettext/src/libomi_strings.cpp | 0ad008de2f3dbbcfbb46afcf73401d4eea222484 | [] | no_license | fbohorquez/omi | dd706b3ba5e192dd5f6a15a7fb361ed403f25b61 | 805c5e4c670e8b9d5accfb7939a92fc315b07bf4 | refs/heads/master | 2021-01-17T12:48:07.982124 | 2016-07-31T14:43:00 | 2016-07-31T14:43:00 | 58,492,749 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 451 | cpp | #include "libomi_strings.h"
void ucfirstNode::run () {
vector<runNode*> v = this->getParams ();
if (v.size() == 1){
strvalue_ = stringNode::to_str (v[0]);
strvalue_[0] = toupper(strvalue_[0]);
}else
throw errorException("A parameter is required", "ucfirstNode::run, size " + to_string (v.siz... | [
"franj@sobremesa"
] | franj@sobremesa |
168118008f86472bd25c7d78b9f9a01dd12bee9b | eb7242691851b8d9aa6c2eaf1497a4f629cf58a9 | /test24.cc | 150350a11f52f1662d8b3f88e9ea0f09cc315def | [] | no_license | YoungYoungMay/jz_offer | 4afcb87e85649b3f946779c4e1c862d00f92b162 | 14fdf5dd90c86c7901273ee2f195e2b4cd19aaa2 | refs/heads/master | 2020-03-23T03:15:10.173730 | 2018-09-06T01:36:07 | 2018-09-06T01:36:07 | 141,019,516 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 747 | cc | //栈的压入、弹出序列
//给定两个序列,一个为栈的入栈序列,一个为出栈序列
//看出栈序列是否为给定入栈序列的出栈
bool IsPopOrder(vector<int> pushV,vector<int> popV)
{
//辅助栈
stack<int> s;
//当入栈序列全部入辅助栈,但栈顶元素与出栈序列当前序列不一致,返回false
for(int i=0,j=0; j<pushV.size(); )
{
//先入栈,并将入栈序列后移
s.push(pushV[i++]);
//当前栈顶元素与出栈当前元素一致,出栈... | [
"102332172@qq.com"
] | 102332172@qq.com |
f88168ffcccee66be7bafe94d732caadb3a05032 | c5115b36ca2787b8363b221a88bc4ad4e8c189fd | /PAT/A1124 Raffle for Weibo Followers.cpp | 0c77e45ac67cb1269e8c8ba800cfbbdfccfb2ebf | [] | no_license | ninthDevilHAUNSTER/UnrestrainedGamblingWithSurreptitiousLuna | 51f151ccb494989aff1997f22ff07f6d05ffc96a | e94ff4e7d7e4c695fcdd4dec9ff6214d5c53d99f | refs/heads/master | 2021-02-07T00:43:06.096300 | 2020-03-21T06:58:50 | 2020-03-21T06:58:50 | 243,962,903 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,104 | cpp | //
// Created by shaob on 2020/3/9.
//
#include <iostream>
#include <cstdio>
#include <map>
#include <vector>
#include <set>
#include <string>
#include <cstring>
#include <vector>
#include <stack>
#include <algorithm>
#include <cmath>
#include <stack>
#include <queue>
#include <cassert>
#include <cmath>
#include <unor... | [
"luotianhan@126.com"
] | luotianhan@126.com |
33bb2844ad4336522922c4fb0d52c5ede8b6fd9c | f3986aae0e60ffd9395968a7dcb639eb55f07dd7 | /c++/cpp_primer/14/test.cpp | 4c55d4bc4c772bd90ada62e9701e47eb36c5d1bd | [] | no_license | czisimba/playground | 764dba458088e0c80e2b75850c1fb36e73dace4d | 7a892add3e233eec41233f9555ebf5f704998179 | refs/heads/master | 2020-05-22T04:01:49.504407 | 2017-03-13T09:25:11 | 2017-03-13T09:25:11 | 47,691,357 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | #include <iostream>
using namespace::std;
int main()
{
char c = 1;
cout << int(c) << endl;
return 0;
}
| [
"chengz@zctt.com"
] | chengz@zctt.com |
d17a9746e212f6df07d100b0c1f8ee2e3ea16cec | 636394fc4967123179dd2dc935f437e735c6d38a | /export/windows/obj/src/flixel/system/frontEnds/WatchFrontEnd.cpp | 9521933cb94b03b893c0f903b2e7cf159519326f | [
"MIT"
] | permissive | arturspon/zombie-killer | 865e6ef3bdb47408f9bfea9016f61bf19b2559c7 | 07848c5006916e9079537a3d703ffe3740afaa5a | refs/heads/master | 2021-07-18T16:44:26.556092 | 2019-05-04T13:56:08 | 2019-05-04T13:56:08 | 181,805,463 | 0 | 1 | MIT | 2021-07-16T23:18:46 | 2019-04-17T02:50:10 | C++ | UTF-8 | C++ | false | true | 10,766 | cpp | // Generated by Haxe 4.0.0-rc.2+77068e10c
#include <hxcpp.h>
#ifndef INCLUDED_Std
#include <Std.h>
#endif
#ifndef INCLUDED_flixel_FlxG
#include <flixel/FlxG.h>
#endif
#ifndef INCLUDED_flixel_FlxGame
#include <flixel/FlxGame.h>
#endif
#ifndef INCLUDED_flixel_system_debug_FlxDebugger
#include <flixel/system/debug/FlxDeb... | [
"artursponchi@gmail.com"
] | artursponchi@gmail.com |
90408c6d69f656177986d13bc929718dbf5f9602 | a7764174fb0351ea666faa9f3b5dfe304390a011 | /inc/StepGeom_TrimmingSelect.hxx | b33c57f33fcf0568c54beaafffec16af2c9f0bab | [] | no_license | uel-dataexchange/Opencascade_uel | f7123943e9d8124f4fa67579e3cd3f85cfe52d91 | 06ec93d238d3e3ea2881ff44ba8c21cf870435cd | refs/heads/master | 2022-11-16T07:40:30.837854 | 2020-07-08T01:56:37 | 2020-07-08T01:56:37 | 276,290,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,796 | hxx | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _StepGeom_TrimmingSelect_HeaderFile
#... | [
"shoka.sho2@excel.co.jp"
] | shoka.sho2@excel.co.jp |
2afd469706fab79d81f5888e7d52f915813516d2 | dddf302707374c419b8742d3b8c7dd90da68ca41 | /010.cpp | 7c0e2ac1718ac0ab5eb749412faf771821d27e6b | [] | no_license | dancooper0705/euler_project | 76c1e858359e1716d391957827199d0a2321bc42 | 39db2ee1534174fd92f303f23d7e8659a928205c | refs/heads/master | 2020-07-13T16:25:36.965322 | 2019-08-29T08:34:34 | 2019-08-29T08:41:45 | 205,114,495 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,858 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef vector<vii> vvii;
template<typename S, typename T>
ostream& operator<<(ostream& out, const pair<S, T> p) {
out << "(" << p.first << "," << p.second << ")";
... | [
"dancooper0705@gmail.com"
] | dancooper0705@gmail.com |
6a59b8fbf2f952f113eea2863e2870872d06ef43 | 17e8b775ec28c774857919b8df957145adf2e606 | /codeforces/Splitting-into-digits.cpp | f0ce676b5776757613f5e13cae10f8b424708b19 | [] | no_license | chamow97/Competitive-Coding | 30b5acc77d51207c55eca91b8da161d80a3fbfab | 8f2d8a1ca6881dbde9c75735240d4e4f681e0138 | refs/heads/master | 2021-04-28T21:40:05.294842 | 2019-09-15T13:25:59 | 2019-09-15T13:25:59 | 77,766,905 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,187 | cpp | //template by chamow
#include<bits/stdc++.h>
/*-------------------------------------------------------- */
using namespace std;
/*-------------------------------------------------------- */
#define rep(i,val,n) for(ll i=val;i<n;i++)
#define per(j,val,n) for(ll j=val;j>=n;j--)
#define pb push_back
#define pi 3.14157
#... | [
"jchandramowli15039@it.ssn.edu.in"
] | jchandramowli15039@it.ssn.edu.in |
15cd5794008b7aba67000b11174c02af9cbc2343 | eae5744872b95c2e288c1b27ec50b985ea2b97e0 | /src/Swam.h | 6c7bbb2a604e609257c2999d7cb24ea465759f55 | [] | no_license | felixnilantha/SDL-Basics | 952e6949568b3f1f551aa93793d5c00d59169caa | d8bfb08dce4c536bddd5d5b55561104c058dba9b | refs/heads/master | 2020-03-22T07:48:20.508663 | 2018-07-04T13:23:48 | 2018-07-04T13:23:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 445 | h | /*
* Swam.h
*
* Created on: 27Mar.,2018
* Author: sooriyasilva
*/
#ifndef SWAM_H_
#define SWAM_H_
#include "Particle.h"
namespace npscreen {
class Swam {
public :
const static int NPARTICLES = 5000;
private:
int lastTime;
Particle *m_pParticle;
public:
Swam();
virtual ~Swam();
const Particle * cons... | [
"felixnilantha@gmail.com"
] | felixnilantha@gmail.com |
f9507ca2f67273d85a72825030bcd4ac34c8fe97 | 0edbcda83b7a9542f15f706573a8e21da51f6020 | /private/shell/ext/netplwiz/unpage.cpp | e77349dffe83e441ee8517d7e5f2864afb70145a | [] | no_license | yair-k/Win2000SRC | fe9f6f62e60e9bece135af15359bb80d3b65dc6a | fd809a81098565b33f52d0f65925159de8f4c337 | refs/heads/main | 2023-04-12T08:28:31.485426 | 2021-05-08T22:47:00 | 2021-05-08T22:47:00 | 365,623,923 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 7,171 | cpp | /***********************************************************
unpage.cpp
User Manager username wizard and prop page implementations
History:
09/23/98: dsheldon created
***********************************************************/
#include "stdafx.h"
#include "resource.h"
#include "unpage.h"
#include "misc.h"
/*... | [
"ykorokhov@pace.ca"
] | ykorokhov@pace.ca |
2d78b0c21c68e7ba690bea32627ff80adc843401 | 02ad580dcef8e1584a231afbd54a5caadfab9698 | /Final Project/hls/attention_baseline/attention_test.cpp | a64f8fe4ea5fd3fac2e04a1a5fdf310bdc3d4456 | [] | no_license | wh-xu/CSE237C_wexu | ced322ecf81d05260c727ebb3b0739d147a175b2 | 58781bbb5e11ff79e8db715f1af6281d8f88f51c | refs/heads/main | 2023-02-01T21:41:32.211424 | 2020-12-21T07:47:56 | 2020-12-21T07:47:56 | 302,580,496 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,803 | cpp | /*
This is DFT computation using matrix vector multiplication form.
*/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <math.h>
#include "attention.h"
struct Rmse
{
int num_sq;
float sum_sq;
float error;
Rmse()
{
num_sq = 0;
sum_sq = 0;
error = 0;
}
float add_value(float d_n)
{
n... | [
"xuweih0712@gmail.com"
] | xuweih0712@gmail.com |
45c33dde17ee70f2d00670233e4d45691d1893e1 | b7173b6e3309621e96d01c88aab98ef73a5fd333 | /Graph.hpp | 90a8b739282d4ad84a9a9e30de454e36e54e80e0 | [] | no_license | EnderGed/fast-random-walk | 5e86394aca7935d27062931670c7a11e94913246 | b1d7a60d5aa06158aad00690500fa419dd2f0561 | refs/heads/master | 2020-12-05T13:05:55.118194 | 2020-01-06T14:44:41 | 2020-01-06T14:44:41 | 232,120,558 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,193 | hpp | #ifndef GRAPH_HPP
#define GRAPH_HPP
// External C++ Header files
// External C Header files
#include <cstdio>
// Local Headers
#include "HelperFunctions.hpp"
#include "FastPRNG.hpp"
class Graph
{
public:
Graph(Graph && other);
virtual ~Graph() {free((void *) nodes); free((void *) transitions);}
/**
* Performs... | [
"bartlomiej.surma@cispa.saarland"
] | bartlomiej.surma@cispa.saarland |
0e6564df4aeda601b440c7c194b1bd8d03161b8d | 349fe789ab1e4e46aae6812cf60ada9423c0b632 | /FIB_DataModule/REM_SprNeispr/UREM_DMSprGrpNeisprImpl.h | 191ba4fbe06cb1a34b435d6a89e4e66c6a08feea | [] | no_license | presscad/ERP | a6acdaeb97b3a53f776677c3a585ca860d4de980 | 18ecc6c8664ed7fc3f01397d587cce91fc3ac78b | refs/heads/master | 2020-08-22T05:24:15.449666 | 2019-07-12T12:59:13 | 2019-07-12T12:59:13 | 216,326,440 | 1 | 0 | null | 2019-10-20T07:52:26 | 2019-10-20T07:52:26 | null | UTF-8 | C++ | false | false | 4,002 | h | #ifndef UREM_DMSprGrpNeisprImplH
#define UREM_DMSprGrpNeisprImplH
#include "IREM_DMSprGrpNeispr.h"
#include "UREM_DMSprGrpNeispr.h"
#include "UGlobalConstant.h"
//---------------------------------------------------------------
class __declspec(uuid(Global_CLSID_TREM_DMSprGrpNeisprImpl)) TREM_DMSprGrpNeisprImpl : public... | [
"sasha@kaserv.ru"
] | sasha@kaserv.ru |
b0df391b371190076cb722c42d1eb8c73bc40f22 | 3e5f4c3fc27e95b109043b1d8be66fdbf83f4821 | /chapter10/List10-7_2.cpp | 6fc9c2dc2d3160ee668444b031a33bd63bbe42f5 | [] | no_license | TakutoMotomura/C-class-and-inheritance | f66d857f6d47b1f9f0e00bd2abdc77d1a1adc0b0 | d2a6bf5b6fbbe178751039dbd1a46c253e30c936 | refs/heads/master | 2023-06-16T13:03:01.037797 | 2021-07-09T14:17:57 | 2021-07-09T14:17:57 | 358,620,032 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,756 | cpp | #include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
class Player
{
protected:
char mark;
int number;
public:
virtual void select() = 0;
char getMark();
int getNumber();
Player( char mark );
};
class User:public Player
{
public:
... | [
"takumoto913@gmail.com"
] | takumoto913@gmail.com |
cab392bef35a913b5cbde1e2225c9e8fb9e25c89 | 19448f7d69528da771c624285cdf2f06e540038f | /Arduino/MOSEC/sketch_may29a/serial_input.cpp | 82d83bf0ecb3f228e83f6ec98712808fdfd4babc | [] | no_license | KONGDejing/Original-Paper | 0e65329274b4fa130fb5855854386ed3dbb42946 | 297306bd31c2bdfd737a3dbb30c18c7fddc5c7d8 | refs/heads/master | 2020-09-17T12:55:12.715039 | 2019-12-25T05:44:08 | 2019-12-25T05:44:08 | 224,091,718 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,673 | cpp |
#include "string.h"
#include "stdio.h"
#include "Arduino.h"
#include <EEPROM.h>
#include "avr/boot.h"
byte DeviceNum;
const char readSerialbuf[30];
const char Flagbuffer[30];
char Flaghackbuf[30];
char inputString[30]; // a String to hold incoming data
bool stringComplete = false; // whether the string is c... | [
"18271879756@163.com"
] | 18271879756@163.com |
d0ebe285ba8686da5ace2d18285adab65661c1c4 | f25987bb9dd38677e91c65fdea0eb48c8d9071c6 | /CDRManager/CDRManager.cpp | cf44350799fcb1d17f7d23b2929b28afd430c8c5 | [] | no_license | jiafenggit/crmproxy | 6089fdcf9cfa5da3634fe21807ccc5c464580b4e | b0858fc5aaf05015ad77960500e0c0889cac7b92 | refs/heads/master | 2020-04-02T09:00:03.744123 | 2018-10-22T06:36:59 | 2018-10-22T06:36:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,746 | cpp | #include <CurlCallback.h>
#include <curl/curl.h>
#include <CDRManager.h>
#include <iostream>
#include <sstream>
#include <map>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/... | [
"root@msk6.sipuni.com"
] | root@msk6.sipuni.com |
7b05c231040b176886c972028190ef59a7c8d564 | af661f4fe4570dc7fb569fa21564562c7925f4ef | /SCruickshankFinalProject/mainHeader.h | 68bb67f889f9b05567e9dbab3c10c94e430206be | [] | no_license | stvncruickshank/Windows-Mania | 0c958545283eb9435816dbdc170e14c12136a991 | 0096c284363be345efce6a173427cd974aa7522f | refs/heads/master | 2021-05-11T02:31:29.335442 | 2018-01-21T22:09:05 | 2018-01-21T22:09:05 | 118,364,224 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 809 | h | #pragma once
#include <string>
//#include "stdafx.h"
#include <iostream>
#include <cstdlib>
#include <string>
#include <fstream>
#include <stdlib.h>
#include <sstream>
#include <stdio.h>
#include <conio.h>
class CMyApp : public CWinApp
{
public:
virtual BOOL InitInstance();
};
class CMainWindow : public CWnd
{
prote... | [
"steven@STVN"
] | steven@STVN |
200e28812da1ee01825c54454433078ccf648e4c | 65549d29e1595c26a57b2137c0c1c77ac4ae142b | /B-BOS Backup/backup/about to change screen size/OS/OS example/timer.h | 806b2c7afeeeeb65f3d33c3da332e9f43d00ba54 | [] | no_license | Bradon-Barfuss/B-BOS-Bradon-Barfuss-Operating-System | 05bfb42ad044ca4a30b45a4478d8d7f883c5f6cf | 9556266fd85782bbc64fa4a05dae30f9b9a9aa26 | refs/heads/master | 2023-03-05T18:12:25.656689 | 2023-02-24T19:10:55 | 2023-02-24T19:10:55 | 262,191,622 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | h | #ifndef _TIMER_H_
#define _TIMER_H_ 1
#include <stdint.h>
#include "stdio.h"
#include "port.h"
class Timer
{
public:
Timer();
~Timer();
void install_timer();
private:
};
void timer_handler_driver(struct regs *r);
#endif | [
"bradonbarfuss@gmail.com"
] | bradonbarfuss@gmail.com |
3fe51542abfdf62c76cc73ce0fe172e695c56ed0 | 01370e1d6d628834d00d74d6c27556ff39320410 | /VirtualBox-5.0.12-Thinputer/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp | 4ffd922a6073b0a547109d477a6c62dc628ea6df | [] | no_license | stonezk/Thinputer3D_ReadBack | 13ca19c0cfc05af88082321dfc524240961dca7f | 09418b420e82bb7eb6ce76e066145fcf240aaec9 | refs/heads/master | 2021-07-14T05:31:01.057984 | 2017-10-13T01:26:15 | 2017-10-13T01:26:15 | 104,833,018 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,891 | cpp | /* $Id: SUPLib-win.cpp $ */
/** @file
* VirtualBox Support Library - Windows NT specific parts.
*/
/*
* Copyright (C) 2006-2015 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* you can redistribute it a... | [
"zhengke_stone@foxmail.com"
] | zhengke_stone@foxmail.com |
b7d2febe8045f85ce8bf304f1adf92f4db3ce02e | 01f89be799583773fc74438eec436f0a71f56697 | /Vector2D.h | 52c7c25b07590e7bcf6a183075126c054379e4b8 | [] | no_license | Jcweeden/Tile-Map-and-GameObject-Parser | f4339049b33a560feaa0af74d8edb36abcfc5633 | 3207d727f2926c3b66eefc5f673cc60ba0f521de | refs/heads/master | 2020-03-24T00:41:28.652818 | 2018-08-21T13:46:22 | 2018-08-21T13:46:22 | 142,302,811 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,557 | h | #ifndef _Vector2D_
#define _Vector2D_
#include <iostream>
#include <math.h>
class Vector2D
{
public:
Vector2D(float x, float y): m_x(x), m_y(y) {}
Vector2D() : m_x(0), m_y(0)
{}
//get/set x,y coords of vector
float getX() {return m_x;}
float getY() {return m_y;}
void setX(float x) {m_x = x;}
void set... | [
"Jcweeden@hotmail.co.uk"
] | Jcweeden@hotmail.co.uk |
a70876c029a800ad6afc0824b813c7f561a803ce | 987f428478e3a71d751e9a62a3beaa4a2aaf3f74 | /article.h | c63068cfe029e5021e65bd833f7e923aac67ea57 | [] | no_license | MaQingT/family-share-center | f619ede492297bb3f9649c9796ab4cb1ac65b181 | 34367ce36a2b7b48e74a6fa533e38c7077d279bd | refs/heads/master | 2020-06-02T18:56:50.673504 | 2019-06-11T01:57:05 | 2019-06-11T01:57:05 | 191,274,461 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 717 | h | #ifndef ARTICLE_H
#define ARTICLE_H
#include <QString>
#include <user.h>
#include <QDateTime>
class Article{
public:
Article(int articleid,QString articleName,QString URL){
this->articleid = articleid;
this->articleName = articleName;
this->URL = URL;
}
int getId(){
return... | [
"724233959@qq.com"
] | 724233959@qq.com |
3f97e439bd6a103d8ba987065d39a3638e7ef87d | c5534a6df16a89e0ae8f53bcd49a6417e8d44409 | /trunk/nGENE Proj/TypeInfo.h | 34294d3dec1f44679da3c5d07b236e853d6e2dda | [] | no_license | svn2github/ngene | b2cddacf7ec035aa681d5b8989feab3383dac012 | 61850134a354816161859fe86c2907c8e73dc113 | refs/heads/master | 2023-09-03T12:34:18.944872 | 2011-07-27T19:26:04 | 2011-07-27T19:26:04 | 78,163,390 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,985 | h | /*
---------------------------------------------------------------------------
This source file is part of nGENE Tech.
Copyright (c) 2006- Wojciech Toman
This program is free software.
File: TypeInfo.h
Version: 0.04
---------------------------------------------------------------------------
*/
#pragma... | [
"Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57"
] | Riddlemaster@fdc6060e-f348-4335-9a41-9933a8eecd57 |
3e57f0f8d1aa51ecb7f8fa9ef1154e7fd79c0c32 | 9bc49a6a955d96edb671f0a58fc8a5c6c04ce7f9 | /Fireworks/Calo/plugins/FWCaloTowerProxyBuilder.h | a4c9191f9764bd69914251b23ceae498ad89eebe | [] | no_license | cbernet/cmssw | 8d9b6b46f6d3d2b892d0bb842d2eb8e150dba85c | 6857635a9abe54328e5456f9de9e20fc61b298f7 | refs/heads/CMSSW_7_3_X | 2020-05-20T12:01:10.187444 | 2014-10-16T13:51:38 | 2014-10-16T13:51:38 | 25,311,955 | 2 | 1 | null | 2017-01-10T12:28:35 | 2014-10-16T16:50:53 | null | UTF-8 | C++ | false | false | 3,540 | h | #ifndef Fireworks_Calo_FWCaloTowerProxyBuilder_h
#define Fireworks_Calo_FWCaloTowerProxyBuilder_h
// -*- C++ -*-
//
// Package: Calo
// Class : FWCaloTowerProxyBuilderBase
//
/**\class FWCaloTowerProxyBuilderBase FWCaloTowerProxyBuilderBase.h Fireworks/Calo/interface/FWCaloTowerProxyBuilderBase.h
Descripti... | [
"sha1-a7060483da9297f8a5e32b46919e3b15dd1653ae@cern.ch"
] | sha1-a7060483da9297f8a5e32b46919e3b15dd1653ae@cern.ch |
616978f5fcff227e2779112e85d68a0d23095b95 | 6f1190c83e14502f10c853605510898c34fda7f7 | /streaming_engine/operators/ParsingOperator.h | 770888acaef31f58a4da909977480a86ecf24c23 | [] | no_license | hpides/mp-ddsp-ws20 | 9cb7b3b5f746bfdfca7f510dc84b580761aed848 | 1fb1e80e1581a46230e31d7f3dfe092620ef7254 | refs/heads/master | 2023-04-06T01:17:30.480484 | 2021-05-04T09:58:25 | 2021-05-04T09:58:25 | 363,420,676 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,003 | h | #pragma once
#include <cmath>
#include <cstdint>
#include "Definitions.h"
#include "TransformingOperator.h"
namespace Parsing
{
template<typename T>
inline T parse(char*& pos)
{
T ret = 0;
while (*pos != ',')
ret = ret * 10 + (*pos++ - '0');
pos++;
return ret;
... | [
"ivan.ilic@student.hpi.de"
] | ivan.ilic@student.hpi.de |
9baa31e63657865f10afa7c5a5d3d86dd9142a48 | 68768bd1df4eb5d699bbe95fcbd7dc3551940d55 | /src/sqlite/db.hpp | f95ab95df24b08b3734ad3575227d28534b6b1d9 | [
"MIT"
] | permissive | daviswalker/mx3 | b3bed718e0ca7fcc9e0199f7518ed9da24dd3b84 | 39e449a9250bb6c8c3eac599f3c10beeb009f01f | refs/heads/master | 2020-12-25T10:34:23.601736 | 2015-03-20T19:12:38 | 2015-03-20T19:12:38 | 32,622,273 | 0 | 0 | null | 2015-03-21T06:17:26 | 2015-03-21T06:17:26 | null | UTF-8 | C++ | false | false | 3,547 | hpp | #pragma once
#include <set>
#include <chrono>
#include "stl.hpp"
#include "stmt.hpp"
namespace mx3 { namespace sqlite {
// single param helpers for sqlite3_mprintf
string mprintf(const char * format, const string& data);
string mprintf(const char * format, int64_t data);
string libversion();
string sourceid();
int li... | [
"stevenkabbes@gmail.com"
] | stevenkabbes@gmail.com |
63928f83ef6d5e86bc6262058e24c77b5983cc08 | d4d48fb0eb655871b963575326b112dac746c33d | /src/libs/fvutils/camera/tracker.h | f09473577e9a0ac6b49030d7754782ec36ae40e3 | [] | no_license | kiranchhatre/fawkes | 30ac270af6d56a1a98b344c610386dfe1bc30c3e | f19a5b421f796fc4126ae9d966f21462fbc9b79e | refs/heads/master | 2020-04-06T19:41:36.405574 | 2018-11-13T18:41:58 | 2018-11-13T18:41:58 | 157,746,078 | 1 | 0 | null | 2018-11-15T17:11:44 | 2018-11-15T17:11:44 | null | UTF-8 | C++ | false | false | 1,991 | h |
/***************************************************************************
* camera_tracker.h - This header defines a camera tracker
*
* Generated: Thu Jul 14 22:29:25 2005
* Copyright 2005 Tim Niemueller [www.niemueller.de]
*
****************************************************************************/
... | [
"niemueller@kbsg.rwth-aachen.de"
] | niemueller@kbsg.rwth-aachen.de |
9e3869d871fc0adf4c7ed90583c3eb25fd594d7e | 1d9df1156e49f768ed2633641075f4c307d24ad2 | /content/public/browser/render_frame_host.h | 9a1a9b8f43eaa75118bfc828e383dbfb2b93cffa | [
"BSD-3-Clause"
] | permissive | GSIL-Monitor/platform.framework.web.chromium-efl | 8056d94301c67a8524f6106482087fd683c889ce | e156100b0c5cfc84c19de612dbdb0987cddf8867 | refs/heads/master | 2022-10-26T00:23:44.061873 | 2018-10-30T03:41:51 | 2018-10-30T03:41:51 | 161,171,104 | 0 | 1 | BSD-3-Clause | 2022-10-20T23:50:20 | 2018-12-10T12:24:06 | C++ | UTF-8 | C++ | false | false | 13,492 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
#define CONTENT_PUBLIC_BROWSER_RENDER_FRAME_HOST_H_
#include <string>
#include "base/callback_forwar... | [
"RetZero@desktop"
] | RetZero@desktop |
daf051fe03e275f5b3166e7c6817be319a22e1f0 | 203e087b1c2791e9108ccadff60834efbb7f2fbb | /Test1/Detective/Test1/main.cpp | c3e58a246c0d0eb6f507386740df82df7439e96e | [] | no_license | 917wiszniewskibianca/Object-Oriented-Programming | 543ec91b9afec2e4d0b08b4bfcd6b6a55cecb006 | 59593982d7540260896ccf3866233920d96c42cb | refs/heads/master | 2023-03-15T15:06:36.317208 | 2018-12-17T14:00:50 | 2018-12-17T14:00:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 511 | cpp | #include "repo.h"
#include "controller.h"
#include "ui.h"
#include "tests.h"
int main()
{
//Tests::testAll();
Repository repo;
TElem e1("Julie is a friend of corrupt police officer Martin", false, false);
repo.addEntity(e1);
TElem e2("Julie was last seen at underground station Victoria", false, false);
repo.addE... | [
"todorananacorina13@gmail.com"
] | todorananacorina13@gmail.com |
436daeb4e05991fa8fef4f038e972d882eebd512 | 27a7b51c853902d757c50cb6fc5774310d09385a | /4DYUCHIGX_RENDER/circle.cpp | bc738d04c90108fbf8840b261c2d59cfac214f52 | [] | no_license | WildGenie/LUNAPlus | f3ce20cf5b685efe98ab841eb1068819d2314cf3 | a1d6c24ece725df097ac9a975a94139117166124 | refs/heads/master | 2021-01-11T05:24:16.253566 | 2015-06-19T21:34:46 | 2015-06-19T21:34:46 | 71,666,622 | 4 | 2 | null | 2016-10-22T21:27:35 | 2016-10-22T21:27:34 | null | UTF-8 | C++ | false | false | 1,007 | cpp | #include "circle.h"
CCircle::CCircle()
{
memset(this,0,sizeof(CCircle));
}
void CCircle::Initialize(DWORD dwPicesNum)
{
DWORD i;
m_dwPicesNum = dwPicesNum;
m_pv4Point = new VECTOR4[dwPicesNum];
DWORD dwIndicesNum = dwPicesNum*2;
m_pIndex = new WORD[dwIndicesNum];
for (i=0; i<dwPicesNum; i++)
{
m_pInde... | [
"brandonroode75@gmail.com"
] | brandonroode75@gmail.com |
041168c408b941ed71fd0cd85909050a0df988ce | 970f47b70ab7aefd5c510e0806615a51d5bc35cb | /huser.h | 21e5ea47a484c3acf10473404cbd0dcd845eb5fc | [] | no_license | fblabs/HamletMODSF | 0d6ce7f93cdf889b14503b49c5e29fb62f203857 | f2da591e4240675739775c15e7587a029d047b16 | refs/heads/master | 2022-12-06T01:53:21.986719 | 2020-08-26T17:08:12 | 2020-08-26T17:08:12 | 269,602,982 | 0 | 0 | null | 2020-07-22T10:47:41 | 2020-06-05T10:37:32 | C++ | UTF-8 | C++ | false | false | 778 | h | #ifndef HUSER_H
#define HUSER_H
#include <QObject>
#include <QSqlDatabase>
class HUser : public QObject
{
Q_OBJECT
public:
explicit HUser(QObject *parent = 0);
private:
QSqlDatabase db;
int role;
int id;
bool active;
bool update;
bool updateana;
QString... | [
"fabio.bonfante@fblabs.eu"
] | fabio.bonfante@fblabs.eu |
c9b04730f7806b9333f6dc1ca8bee90bfa586d38 | 4a6b0ba2ee14493ba27b293baa93d083e6274f4e | /engine/engine.h | 78a25c5b780dd760f22c6e8071e76c44341e9a8c | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | waffle-iron/arctic | 3fdf01ff7d80aaf6c79bd17b0fadd4ff7600f3d7 | 767ebbe13a1b9a683811a649142438d1a688c5f0 | refs/heads/master | 2021-01-13T05:58:56.678699 | 2017-06-21T15:43:44 | 2017-06-21T15:43:44 | 95,020,120 | 0 | 0 | null | 2017-06-21T15:43:43 | 2017-06-21T15:43:43 | null | UTF-8 | C++ | false | false | 2,213 | h | // The MIT License(MIT)
//
// Copyright 2017 Huldra
//
// 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
// to use, copy, modify, ... | [
"povelitel2003@gmail.com"
] | povelitel2003@gmail.com |
dea8e9bbf756c151c4c2a06866924d6512f013f6 | c5c2633980fa4629bda09b26f12e2321c6837d12 | /Discrete Math/1 course/Labs/01_semestr/01_Coding-encoding/AHuffman/main2.cpp | 2530dbd9604b43492603449247a266bcbc7173f5 | [] | no_license | DimaPhil/ITMO | bb5dbcc12730cb932ffc6c94bed7e69b71c583e1 | 356a781ae599129f318a469786d34fa088e9dd45 | refs/heads/master | 2021-03-24T14:05:13.915854 | 2017-02-26T12:02:47 | 2017-02-26T12:02:47 | 20,375,933 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,916 | cpp | #define TASKNAME "huffman"
#include <cstdio>
#include <iostream>
#include <fstream>
#include <cmath>
#include <algorithm>
#include <ctime>
#include <cctype>
#include <cstdlib>
#include <cassert>
#include <functional>
#include <iomanip>
#include <string>
#include <cstring>
#include <map>
#include <set>
#include <vector>... | [
"dima239.philippov@gmail.com"
] | dima239.philippov@gmail.com |
02b5689251ff772ee6bcc7dfa60b6096c44c4ddf | 7ce91a98ae434dbb48099699b0b6bcaa705ba693 | /TestModule/HK1/Users/18110253/BAI2.CPP | 1ca840b7acf451467dac907f0fae0feac78e7b5f | [] | no_license | ngthvan1612/OJCore | ea2e33c1310c71f9375f7c5cd0a7944b53a1d6bd | 3ec0752a56c6335967e5bb4c0617f876caabecd8 | refs/heads/master | 2023-04-25T19:41:17.050412 | 2021-05-12T05:29:40 | 2021-05-12T05:29:40 | 357,612,534 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | cpp | #include <stdio.h>
#include <string.h>
#include <math.h>
void xuat(long kq);
long To10(char S[]);
void main()
{
char A[30],B[30];
gets(A);
gets(B);
long a = To10(A);
long b = To10(B);
long kq = a + b;
xuat(kq);
}
void xuat(long kq)
{
printf("%ld",kq);
}
long To10(char S[])
{
long a=0;
int len = strlen(S);
... | [
"Nguyen Van@DESKTOP-8HI58DE"
] | Nguyen Van@DESKTOP-8HI58DE |
0e715b7de39f3a67b923f98903ebaf1f18ae524d | 3635df8d74077ff1d51e468f545d21a7a73a584e | /Anima/Math/Matrix4.h | 666243d64559027d5ef93c2b69b0b5123f3a6628 | [] | no_license | edamiani/Anima-Engine | 2615ee632b10e35dceb82b902661acd988aa9396 | 14b99b71bf5ea5c4b19d08037ca56298a36f6288 | refs/heads/master | 2021-12-14T10:38:18.883495 | 2021-12-02T20:08:08 | 2021-12-02T20:08:08 | 18,024,642 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,075 | h | #ifndef __AE_MATH_MATRIX4__
#define __AE_MATH_MATRIX4__
#include "Anima/Types.h"
#include "Anima/Math/Vector4.h"
#include <cassert>
namespace AE
{
namespace Math
{
class Matrix4
{
public:
inline Matrix4()
{
}
inline Matrix4(
AE::Real m00, AE::Real m01, AE::Real m02, AE::Real m03,
AE::Re... | [
"edamiani@gmail.com"
] | edamiani@gmail.com |
4d0c198e3c257e0e432e8c712a86ec692956acba | 902431f47020b66dcaf3268ebdee75247ec30fd4 | /examples/gui/AR013xDbdx/CqUsbCam/CqUsbCam/CqUsbCam_API.cpp | ac8c23b035ffeb553b058ad2a6f59381b88fbf83 | [] | no_license | aileenfun/CqUsbCam_Windows | e6dc855715032dafca84c106b05727053a5e6800 | 75ecde058d46cd9c9356e8a1791863bb740eb1bd | refs/heads/master | 2021-06-20T03:46:46.186783 | 2021-05-16T02:18:04 | 2021-05-16T02:18:04 | 205,856,867 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 3,041 | cpp |
#include "stdafx.h"
#include "CqUsbCam_API.h"
/*
void BMPHeader(int lWidth, int lHeight, cq_byte_t* m_buf, BITMAPINFO* m_bmi)
{
int mlBpp = 8;
bool lReverse = false;
BITMAPFILEHEADER bhh;
BITMAPINFOHEADER bih;
memset(m_bmi, 0, sizeof(BITMAPINFO));
memset(&bhh, 0, sizeof(BITMAPFILEHEADER));
memset(&bih, 0, si... | [
"alanliu0618@gmail.com"
] | alanliu0618@gmail.com |
fa6eab95d2f0b1506d2efe435ff9277459da1d6e | ca27096c9f501101964b11b5400a495aa5baec6e | /airplay-dll-demo/CAirServerCallback.h | 2f663f7a85160c6931808bf7df9c4f8c2f4d9ea4 | [
"MIT"
] | permissive | iyh/airplay2-win | f077434c3f818a248600bd237b3c7207635555c8 | 9980a26f6468b01a041dabb433097d12688a2463 | refs/heads/master | 2021-04-20T16:16:03.015907 | 2020-05-08T05:33:53 | 2020-05-08T05:33:53 | 249,698,662 | 0 | 1 | MIT | 2020-03-24T12:11:32 | 2020-03-24T12:11:32 | null | UTF-8 | C++ | false | false | 861 | h | #pragma once
#include <Windows.h>
#include "CSDLPlayer.h"
class CAirServerCallback : public IAirServerCallback
{
public:
CAirServerCallback();
virtual ~CAirServerCallback();
public:
void setPlayer(CSDLPlayer* pPlayer);
public:
virtual void connected(const char* remoteName, const char* remoteDeviceId);
virtual ... | [
"fingergit@sina.com"
] | fingergit@sina.com |
8f464f8feb79ae049a9b416c78ac1be2de600e2f | cf6ae38d4adf41e3eb219b8ac477aa7ca7c7d18a | /boost/libs/asio/example/echo/async_udp_echo_server.cpp | e8ed4bbeea365344e6b356701d9dbb2778bf6b3b | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | ryppl/boost-history | a560df2bc79ffc7640f09d258599891dbbb8f6d0 | 934c80ff671f3afeb72b38d5fdf4396acc2dc58c | HEAD | 2016-09-07T08:08:33.930543 | 2011-07-10T13:15:08 | 2011-07-10T13:15:08 | 3,539,914 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,467 | cpp | //
// async_udp_echo_server.cpp
// ~~~~~~~~~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2007 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)
//
#include <cstdlib... | [
"chris@kohlhoff.com"
] | chris@kohlhoff.com |
0f683ad92d61bb571fc4451f912a339554e5f1cd | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5769900270288896_0/C++/tomasf/b2.cpp | eb6a00373693c3c4d523159b0c3a4e2384f41832 | [] | 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 | 1,138 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
#define pb push_back
#define mp make_pair
#define S second
#define F first
#define INF 0x3f3f3f3f
#define MEMSET_INF 127
#define _ ios_base::sync_with_stdio(0);cin.tie(0);
i... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
cb85fee5b89a21067375c15062d916c9f38c8a6e | 255d7c1c1f1fa64ed25167f349668e78c4518a58 | /src/nowplayingitem.cpp | 2fff7a45fdef2c7f9eeb428df2b677afea46ccae | [] | no_license | keegancsmith/AmarokQuilt | 24f166aab5144a338a8c184a5cf732cf2dcaaeab | 410378b2fd24ba0171761c79808417a816ea619b | refs/heads/master | 2021-01-10T21:30:52.296474 | 2008-09-14T21:11:38 | 2008-09-14T21:11:38 | 1,733,801 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,508 | cpp | /**************************** -*- mode: c++ -*- ****************************
* *
* file : nowplayingitem.cpp *
* date started : 15 Jun 2008 *
* author ... | [
"keegan.csmith@gmail.com"
] | keegan.csmith@gmail.com |
b63c204a8a9262c437e16f7fa5f3bdbb00b0fc48 | f80795913b6fbbfbc1501ca1e04140d1dac1d70e | /10.0.14393.0/winrt/internal/Windows.UI.Core.AnimationMetrics.1.h | e10e760bc37f8fa25c9f3c52249a9c44b707c7b1 | [
"LicenseRef-scancode-generic-cla",
"MIT"
] | permissive | jjhegedus/cppwinrt | 13fffb02f2e302b57e0f2cac74e02a9e2d94b9cf | fb3238a29cf70edd154de8d2e36b2379e25cc2c4 | refs/heads/master | 2021-01-09T06:21:16.273638 | 2017-02-05T05:34:37 | 2017-02-05T05:34:37 | 80,971,093 | 1 | 0 | null | 2017-02-05T05:27:18 | 2017-02-05T05:27:17 | null | UTF-8 | C++ | false | false | 6,932 | h | // C++ for the Windows Runtime v1.0.161012.5
// Copyright (c) 2016 Microsoft Corporation. All rights reserved.
#pragma once
#include "../base.h"
#include "Windows.UI.Core.AnimationMetrics.0.h"
#include "Windows.Foundation.0.h"
#include "Windows.Foundation.1.h"
#include "Windows.Foundation.Collections.1.h"
WINRT_EXPO... | [
"josuen@microsoft.com"
] | josuen@microsoft.com |
4492736d5cd128f52c2848fda76abaafd1301a7b | b91e559e91406706f21f30605b00954c8b29eb61 | /Less_Than_Doom/Vector.cpp | 9b937630da9a02016d54263a3fb826ad41ff3a27 | [] | no_license | Daniel-F-Parker/Less_Than_Doom | ecdd3971b6dcd8f6546dbd26b704cadf38c5c252 | 9d5d3143f110a8daa254dca813c6995c6c73b7b7 | refs/heads/master | 2020-09-24T10:17:34.555220 | 2019-12-15T12:58:55 | 2019-12-15T12:58:55 | 225,738,225 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,894 | cpp | #include "Vector.h"
#include <math.h>
//Vector 2
V2 operator+(V2 val1, V2 val2)
{
V2 result;
result.x = val1.x + val2.x;
result.y = val1.y + val2.y;
return result;
}
V2 operator-(V2 val1)
{
V2 result;
result.x = -val1.x;
result.y = -val1.y;
return result;
}
V2 operator-(V2 val1, V2 val2)
{
V2 result;
resu... | [
"Dan.P@outlook.com"
] | Dan.P@outlook.com |
37dff1b47ea0ad572ccfb0b2047dee17c0ee384f | 1af49694004c6fbc31deada5618dae37255ce978 | /ash/system/holding_space/holding_space_test_api.cc | 186dc2458da7285ae60edd627b2f2a0760c0b9fb | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 5,193 | cc | // Copyright 2020 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 "ash/public/cpp/holding_space/holding_space_test_api.h"
#include "ash/drag_drop/drag_drop_controller.h"
#include "ash/public/cpp/holding_space/h... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
127c3ff43716c5a4591574a73f94845968e4ffe3 | 242d143cfa172d6b51e7f4fe73d8eed2395d6d91 | /graph-algos/bellman-ford-algorithm.cpp | 4e4f8a5ac4b02d60c1987c5f64e9b11eada2faea | [] | no_license | Ankit80165/Data-Structures-and-Algorithms | 7b11775809c928db875c468202747388477b4f93 | fcd1694ead0b091a5f08d01c0546bbc689fd989d | refs/heads/master | 2023-07-03T04:47:58.786090 | 2021-08-11T16:12:07 | 2021-08-11T16:12:07 | 370,378,360 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,876 | cpp | // implementation of bellman ford algoritm
// time complexity = O((N-1)*e)
// space complexity = O(N)
// N = total number of edges
#include<bits/stdc++.h>
#include<cstring>
#include<climits>
using namespace std;
#define add(x) accumulate(x)
#define sz(x) (int)(x).size()
#define mp make_pair
#define pb push_back
#define... | [
"ankit.majhirisen357@gmail.com"
] | ankit.majhirisen357@gmail.com |
3b739f0bb66bf8d15ee5997063426d3422af91b9 | bc39b43f556c8bf78872662522af2ee311637b43 | /content/browser/background_fetch/background_fetch_delegate_proxy.h | 2ec79134c21a69a97ffea6846d11595114f1a83d | [
"BSD-3-Clause"
] | permissive | shahzadlone/chromium | a0b3cb45909a6232e4f94557d7c41668b4ae9a21 | cd1c297873cd93013b043744950ad0ac121ad351 | refs/heads/master | 2023-01-01T13:40:42.049827 | 2019-01-21T00:01:26 | 2019-01-21T00:01:26 | 166,625,000 | 0 | 0 | NOASSERTION | 2019-01-20T05:01:40 | 2019-01-20T05:01:40 | null | UTF-8 | C++ | false | false | 8,699 | h | // Copyright 2017 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_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_DELEGATE_PROXY_H_
#define CONTENT_BROWSER_BACKGROUND_FETCH_BACKGROUND_FETCH_DELEGATE_PROXY_H_
#... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
aacf717e86e93c4188065cbe77d722bd372be05f | 3a03b7e63e363dd5ea49fc441a913955c764c987 | /Patterns/pattern 14.cpp | ade16c5aadf70c8f7bf686d30b5a096103d42867 | [] | no_license | Tarunverma504/C-concepts | d8460082a59f48b3add44b3c517b4e3397dc71a1 | 2b7f39b8a71eeabdb861adf39ca20fd3f923fa40 | refs/heads/master | 2020-12-04T02:49:33.638450 | 2020-10-16T11:28:33 | 2020-10-16T11:28:33 | 231,577,319 | 0 | 2 | null | 2020-10-16T11:32:22 | 2020-01-03T11:51:22 | C++ | UTF-8 | C++ | false | false | 254 | cpp | /*
55555
54444
54333
54322
54321
*/
#include<stdio.h>
int main()
{
int i,j,k,z;
for(i=1;i<=5;i++)
{
z=5;
for(j=1;j<=i;j++)
{
printf("%d",z);
z--;
}
z=z+1;
for(k=4;k>=i;k--)
{
printf("%d",z);
}
printf("\n");
}
return 0;
}
| [
"vermatarun4305@gmail.com"
] | vermatarun4305@gmail.com |
4bb76192ab65c19197d0f5bd8623a70c76ae6781 | e4f92a2dcfe08617c62efbc6da3e3ae2b946fa45 | /1_month/6_heap_tree_sort/heap_tree_sort/trees.h | a9eabb137a13349e58490f870bba38a8cda80a33 | [] | no_license | stasemv/otus-algo-2019-04-Staselovich-HW | 03fe4c0050045cda9d6877d882532679a0bcd375 | 68fd70c9718d1da403950e14138efe7ad61bb4bb | refs/heads/master | 2020-05-22T07:17:01.694893 | 2019-11-04T08:48:18 | 2019-11-04T08:48:18 | 186,261,721 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 639 | h | #ifndef TREES_H
#define TREES_H
#include "stddef.h"
template<class T>
class clsBinTreeItem
{
protected:
T data;
clsBinTreeItem<T> *left;
clsBinTreeItem<T> *right;
public:
clsBinTreeItem() {
left = right = NULL;
}
clsBinTreeItem(T data) {
data = data;
left = right = NULL... | [
""
] | |
16c8dc1a204e363e23711d95ba865e006015679f | 6c73f12e6849ece5ce43e45f323ad4d5694effd9 | /Problems/codeforces/Rodolfo/R256/D.cpp | dc34ad83277e2c51b10ac33cf142b9b0d370199e | [] | no_license | rocker3011/FTF | 577bb35ddae24e91546a89af84e303152512f15d | d1d9924a001dbe17dfab71f6b74a97a1a19fbccb | refs/heads/master | 2020-04-04T11:57:01.446923 | 2019-01-04T20:20:06 | 2019-01-04T20:20:06 | 155,909,190 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 921 | cpp | #include <bits/stdc++.h>
using namespace std;
class edge{
public:
int x;
long long c;
edge(int x, long long c){
this->x = x;
this->c = c;
}
};
vector <edge> adj[300050];
int n;
long long arr[300050];
long long tot = 0LL;
long long dfs(int x, int p){
long long max1=0LL;
long long max2=0LL;
int con... | [
"rockavenger3011@gmail.com"
] | rockavenger3011@gmail.com |
250d4f4facfcb29270f5295ff701775cea8b52d4 | e1520ec4ab2e7c8c034630acea8cdfb587e80062 | /tool/CharacterMakerQt/lib/geoLib.h | 6956c0027373279ee3ab83beb84b4c7de9db51eb | [] | no_license | Scincy/pini-engine | 756237ff328d0388b1f4900d7abdee6dc213547f | 5e0cd7250f5330e53790f3334cec79a1733822f0 | refs/heads/master | 2020-05-26T22:29:43.194934 | 2018-04-24T23:53:18 | 2018-04-24T23:53:18 | 82,510,123 | 0 | 0 | null | 2017-02-20T02:53:51 | 2017-02-20T02:53:50 | null | UTF-8 | C++ | false | false | 1,010 | h | #ifndef GEOLIB_H
#define GEOLIB_H
class Vector2d //2차원 Vector 클래스 참고 // 벡터끼리 사칙연산 되도록 연산자 오버라이딩
{
public:
float x;
float y;
//dot=>숫자, cross=>벡터
//normalize 벡터정규화
//length
Vector2d();
Vector2d(float x,float y);
~Vector2d();
float len();
//float dot(Vector2d v); //내적 = A*b*cOS(
//floa... | [
"ho4040@nooslab.com"
] | ho4040@nooslab.com |
e4afe6b7509032f35d18b765e538811d2882a99c | 5dd3f72188289f92ddf2e859ce2bb426206520c3 | /src/InputReader.h | 85040855098ec46bd3539f84c321a9038efbc71a | [] | no_license | mborger/derby_tools | 664635d184a23037c57d2b7499121d086194aac7 | de922e8d7bf2bafd8b267b9ba221faf12c9e7e8d | refs/heads/master | 2020-05-30T15:40:47.233280 | 2014-06-16T06:24:58 | 2014-06-16T06:24:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | h | /*
* Copyright 2012 Matthew Borger
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... | [
"matthew@borgernet.com"
] | matthew@borgernet.com |
ba536c416c83922742471944d272a537bfbbfd6d | 94b2148ef2af4db4dac486f9b6e36942df502578 | /libraries/I2SD/I2SD_Slave.h | 6faffa4b2b3a28716b7587fea15cda40a238a405 | [] | no_license | tomcircuit/Wyolum-old-archive | d30fcaa880cb8e1e7901f2710483c7a306f4aead | 07001059774cc4e4fccfc54970b60f108f8e1971 | refs/heads/master | 2021-12-24T06:38:34.489005 | 2016-03-06T21:14:50 | 2016-03-06T21:14:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,208 | h | /*
I2SD_Slave.h -- I2C <--> SD interface.
(lives on I2SD device i.e. not client code)
Justin Shaw
The hardware and software for I2SD have been enabled by the
open souce Adafruit data logging shield.
Thanks to the Adafruit Team for making them
available (http://www.ladyada.net/make/logshield/)
LI... | [
"wyojustin@gmail.com"
] | wyojustin@gmail.com |
c207e0e81fc46c122c37bdf0c1ce995e98b01e82 | 41dbb24e2539b610e6a058bbe138ce113f95c671 | /Classes/UnitTest/ParticleTest.cpp | 2b1f27a8f253bb06b5a4ed57ce68c4097e3876e7 | [] | no_license | tklee1975/ShooterCcx3 | cfe5a4a865d62e91fa8f2b6d1a069ff245b9f1e2 | 6eae74f46f01b387dd18fd6688eb01fdbbea51b7 | refs/heads/master | 2020-04-02T09:46:24.271770 | 2016-10-23T14:33:39 | 2016-10-23T14:33:39 | 34,161,695 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cpp | #ifdef ENABLE_TDD
//
// ParticleTest.m
// TDD Framework
//
//
#include "ParticleTest.h"
#include "TDDHelper.h"
void ParticleTest::setUp()
{
log("TDD Setup is called");
log("Please write somethings");
}
void ParticleTest::tearDown()
{
log("TDD tearDown is called");
log("Please do clean up here");
}
#pragma mar... | [
"tklee1975@gmail.com"
] | tklee1975@gmail.com |
b194225bce235223a9cdc597c03866ef3f37536e | ea3c28a91a060c9e6e301df6ee88ceead5fc08a7 | /Classes/GameServer.cpp | 5cb0f5b3fc0f100bb7155a6055fe6cfec2827ddb | [] | no_license | Cocos2d-x-vn/Cocos2048 | 2d57661758231217a61a631bde2144903c16d8dd | b87b759bdc619312f318d9d29501492c31834b51 | refs/heads/master | 2020-11-30T13:01:56.399028 | 2014-06-09T09:37:33 | 2014-06-09T09:37:33 | 21,073,822 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,614 | cpp | #include "GameServer.h"
void GameServer::Restart()
{
m_score = 0;
m_numEvent = 0;
for(int i = 0 ; i<ROW ; i++)
for(int j = 0 ;j<COL ; j++)
m_save[i][j] = 0;
//随机出两个数字
int r0 = rand() % ROW;
int c0 = rand() % COL;
m_save[r0][c0] = 2 + rand() % 2 * 2;
addEvent(ET_APPEAR,0,0,r0,c0);
int r1 = rand() %... | [
"466474482@qq.com"
] | 466474482@qq.com |
543130a0661be8153cba684587d8801f148d3538 | d4e96aa48ddff651558a3fe2212ebb3a3afe5ac3 | /Modules/ThirdParty/VNL/src/vxl/core/vnl/Templates/vnl_diag_matrix_fixed+float.4-.cxx | ef019c737ca1ee4c580dfdf6c1cc8ea5ddc33252 | [
"SMLNJ",
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer",
"NTP",
"IJG",
"GPL-1.0-or-later",
"libtiff",
"BSD-4.3TAHOE",
"... | permissive | nalinimsingh/ITK_4D | 18e8929672df64df58a6446f047e6ec04d3c2616 | 95a2eacaeaffe572889832ef0894239f89e3f303 | refs/heads/master | 2020-03-17T18:58:50.953317 | 2018-10-01T20:46:43 | 2018-10-01T21:21:01 | 133,841,430 | 0 | 0 | Apache-2.0 | 2018-05-17T16:34:54 | 2018-05-17T16:34:53 | null | UTF-8 | C++ | false | false | 88 | cxx | #include <vnl/vnl_diag_matrix_fixed.hxx>
VNL_DIAG_MATRIX_FIXED_INSTANTIATE(float, 4);
| [
"ruizhi@csail.mit.edu"
] | ruizhi@csail.mit.edu |
557181b30e9308eacd80ababa51412a69095e89b | 666f45e41611e8704bdec57fe51ebc2b5643cccc | /KindleHelper.Plugin.CPPPlugin/KindleHelper.Plugin.CPPPlugin.h | 0094f67f80c40959c540f2bb69ad86ea10d7b6cf | [] | no_license | KindleHelper/KindleHelper | 9b8f8a83ea1e55fc4c0450b09517d1901d9e1623 | 34395cb352dcca5996d90043e2272045395fe7c5 | refs/heads/master | 2020-12-02T19:45:43.768789 | 2017-07-06T02:51:50 | 2017-07-06T02:51:50 | 96,385,265 | 0 | 1 | null | 2017-07-06T03:37:36 | 2017-07-06T03:37:36 | null | GB18030 | C++ | false | false | 831 | h | // KindleHelper.Plugin.CPPPlugin.h
#pragma once
using namespace System;
using namespace KindleHelper::Plugin::Interface;
namespace KindleHelper {
namespace Plugin
{
namespace CPPPlugin
{
public ref class CPPPlugin:public IPlugin
{
public:
// TODO: 在此处添加此类的方法。
virtual String^ Show()
{return "CPPPlugin";};... | [
"yh20021212@126.com"
] | yh20021212@126.com |
0727b369662868d65fbe85a10a690ab436d46683 | 0b6a665251ead732f4e83a2e59046665e57590ef | /2/3/main.cpp | 10ad0a614c23225d1547005b8615fa9246d2b4ad | [] | no_license | yrHeTaTeJlb/cracking-the-coding-interview | 9de60749aafcfec92842a9e77c0eb2e9fec09be5 | 4902a2f62622f01c250bf34c31935be3b2c84b9b | refs/heads/master | 2023-06-13T09:22:46.297906 | 2021-07-10T13:20:43 | 2021-07-10T13:36:46 | 366,486,542 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,890 | cpp | #include <initializer_list>
#include <memory>
#include <tuple>
#include <gtest/gtest.h>
// Implement an algorithm to delete a node in the middle (i.e., any node but the
// first and last node, not necessarily the exact middle) of a singly linked
// list, given only access to that node.
//
// EXAMPLE
// Input: the nod... | [
"jjj.bo@yandex.ru"
] | jjj.bo@yandex.ru |
062b0a4c703323086004dfeb47ad26981770205e | f14f1fb63b15e716b150c245eb0802e39701a678 | /aula11_sources/ExemploMapaStruct01.cpp | f42df569a3e2dd97e3ba6c59db3c9842a5f3770d | [] | no_license | EdsonMateus1/codigos-em-C-C-faculdade | 331e834abe8f61c55e8ff84e25913fa19f8380bd | 89c3cc0ce4ca45a33278cccb7630d3bc09b4fbfe | refs/heads/master | 2022-11-03T03:39:59.590885 | 2020-06-18T21:23:54 | 2020-06-18T21:23:54 | 273,053,286 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,572 | cpp | #include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <map>
using namespace std;
struct Materias{
string codigo;
string disciplina;
int periodo;
};
typedef struct Materias tMaterias;
int main(){
int chave;
int i = 1;
map<int, tMaterias> MapaLista;
tMaterias mat;
... | [
"tioed2015@gmail.com"
] | tioed2015@gmail.com |
89b4feea68b3ac745908b2e45ee6af15344ca814 | d6d4e9dda8fa6ac9f66d124db465121e5a287e0f | /libraries/glfw-3.3/deps/nuklear.h | c4bdcedf23f8925e07f4ce91bd7d342570e771c9 | [
"Zlib"
] | permissive | IlyaZadyabin/OpenGL | 35bff1458c8ce7bdccbb5317f7131b29e95406a8 | dfaf9bac0426aef98edab64e419e416e8635094c | refs/heads/master | 2023-02-06T04:27:07.883544 | 2020-12-26T13:23:17 | 2020-12-26T13:23:17 | 312,682,295 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 980,620 | h | /*
/// # Nuklear
/// 
///
/// ## Contents
/// 1. About section
/// 2. Highlights section
/// 3. Features section
/// 4. Usage section
/// 1. Flags section
/// 2. Constants section
/// 3. Dependencies sec... | [
"z.ilya.007@gmail.com"
] | z.ilya.007@gmail.com |
dcce93ba2a4a6814ec66b70c0ecd49e9eb46d1de | 09ab08f51d8a0ef6ae86aa5d3c2e3b3f01a775bd | /C_C++/examples/op_over2.cpp | 3034ed53a80aff391134621b460b7d2003f9a13d | [] | no_license | oconnellamethyst/csci1113 | 7beb093b7a619362de460f6a296afabf47bddc8d | 7f099756753b9b3bbd467d9327179b71b02ae673 | refs/heads/master | 2020-03-18T12:58:58.246400 | 2018-06-29T20:59:16 | 2018-06-29T20:59:16 | 134,754,110 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,755 | cpp | /* FILE: op_over2.cpp */
/*
More operators, one is unary.
*/
#include <iostream>
using namespace std;
class COMPLEX{
double Re;
double Im;
public:
void print( ) const;
COMPLEX operator*(const COMPLEX & b) const;
COMPLEX operator-(const COMPLEX &b) const;
COMPLEX operator-( ) const;
COMPL... | [
"oconnellamethyst@gmail.com"
] | oconnellamethyst@gmail.com |
630cb43d4ce7a5964d7f0c3667c358c7c09440c6 | 44c8dbbe8cf860eadced513fcfea756c2f0dec9f | /Plugins/MediaPipe/Source/MediaPipe/Private/mediapipe/framework/formats/annotation/rasterization.pb.h | 9fd27b99d233494e4ec90c18f8ac1b00554c5631 | [
"Apache-2.0"
] | permissive | FashengChen0622/ue4-mediapipe-plugin | 41ddaca0572a718028a4e7210b428b5a29d12aa4 | 28c2dfa2ddcb00296bf3307c6651dc60b7533ca6 | refs/heads/master | 2023-09-04T14:30:20.317405 | 2021-11-23T15:46:08 | 2021-11-23T15:46:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 20,219 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: mediapipe/framework/formats/annotation/rasterization.proto
#ifndef GOOGLE_PROTOBUF_INCLUDED_mediapipe_2fframework_2fformats_2fannotation_2frasterization_2eproto
#define GOOGLE_PROTOBUF_INCLUDED_mediapipe_2fframework_2fformats_2fannotation_2frasteri... | [
"muutant@gmail.com"
] | muutant@gmail.com |
29d37a5c157d05238ede4e3006ca2bbf2396fd44 | 93dd7a515053dd3800cc816e08ddbb600bd2f45e | /art/runtime/elf_file.h | 138147b03f73de778ff0b444ff2af158027c4d0f | [
"Apache-2.0"
] | permissive | linuxandroidmcu/android | 416d69bd68e3e1b4133718ae344cf951a070a079 | 6ebfac58721e49cb0a6e143b32cfc3ad84801999 | refs/heads/master | 2016-09-06T19:13:21.504892 | 2014-05-21T11:04:37 | 2014-05-21T11:04:37 | 19,928,595 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 6,305 | h | /*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | [
"linuxandroidmcu@163.com"
] | linuxandroidmcu@163.com |
3c1c456c5476fd498ad6bcba0611339e00d65cc1 | c06d20cb9b5174fac7f3ce407b6006cbcf4e53c3 | /src/po_man.cpp | c2538642507f03ffbf3dde1939d462c0474653ca | [] | no_license | dptetc/DooMB | a4484b24f12a2213fb46fcab2338141b06d4dc47 | 18425e260227d819b0c6d084473f8f1bbbc21243 | refs/heads/master | 2022-12-14T21:56:56.556756 | 2020-09-20T21:23:53 | 2020-09-20T21:23:53 | 127,284,332 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 35,397 | cpp |
//**************************************************************************
//**
//** PO_MAN.C : Heretic 2 : Raven Software, Corp.
//**
//** $RCSfile: po_man.c,v $
//** $Revision: 1.22 $
//** $Date: 95/09/28 18:20:56 $
//** $Author: cjr $
//**
//************************************************************************... | [
"SIMPSON-NEKEK@mail.ru"
] | SIMPSON-NEKEK@mail.ru |
64c4ecd9843be92973d5c4926919d4d852573200 | 85aed0bcac5d6aea781dff64029c2d23fcba984b | /superpad/paddoc.cpp | 7f9c5828edf06a3d9c7a6312610df6efdedcfa7e | [] | no_license | youdontknowme17/ura | 3c76bf05eccd38b454b389841f1db49b59217e46 | e31bc9fd9c2312175d250dc4dc1f9c656c7f2004 | refs/heads/master | 2020-03-28T15:49:00.379682 | 2018-09-15T09:57:49 | 2018-09-15T09:57:49 | 148,628,762 | 0 | 2 | null | null | null | null | UHC | C++ | false | false | 5,083 | cpp | // paddoc.cpp : implementation of the CPadDoc class
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic docum... | [
"markcalimosa@gmail.com"
] | markcalimosa@gmail.com |
68795ef8c8f4c26aa4f26d34f53db8ece9dc629b | ed8df80a6be0ee2064679fd80f229b601b66b948 | /model_routine_agent.cpp | 14884ad7f8a5e3d80dd7599e8141fd4a1b2e05ef | [] | no_license | djholt/biocellion-vascular-network | 29e7e0b11a06a70ee1fb159ee646733dcf19b70c | d00b0ff078308351522a1afbf57b78735cc75d45 | refs/heads/master | 2021-01-13T14:59:26.244046 | 2016-12-16T07:35:47 | 2016-12-16T07:35:47 | 76,626,732 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,040 | cpp | /*
Copyright © 2013 Battelle Memorial Institute. All Rights Reserved.
NOTICE: These data were produced by Battelle Memorial Institute (BATTELLE) under Contract No. DE-AC05-76RL01830 with the U.S. Department of Energy (DOE). For a five year period from May 28, 2013, the Government is granted for itself and other... | [
"dj@holt.dj"
] | dj@holt.dj |
db7c4f284a408216cfb6a16b1b38d0de48d93920 | f3bd460d3102c8dabde09d6d751b85cb7f7c4b3f | /desk_checking.cpp | 595f14a83488cb76184520ae6259b01f64e2e53f | [] | no_license | realbadbytes/art_of_assessment | 3aef94e0c26e4af867f684b5f6a32e4218c44fd3 | 1729355b087629176c96f47c9888e9e54a75311d | refs/heads/master | 2021-08-23T00:25:19.809655 | 2017-12-01T22:10:49 | 2017-12-01T22:10:49 | 112,508,525 | 0 | 1 | null | 2017-11-29T23:04:09 | 2017-11-29T17:49:48 | null | UTF-8 | C++ | false | false | 651 | cpp |
/*
desk checking strategy:
track each variable at each line
statement i buf c
for (i=0; 0 - -
...
if(i<length).. 1 buf[1]='B' B
tracing through this example, buffer out-of-bound write occurs
when \n appears more than len bytes into sock buffer
*/
int read_line(int s... | [
"badbytes.io@gmail.com"
] | badbytes.io@gmail.com |
9c321235a9003570710a5fe9759b46e4005eb37c | 19d487f5bcd6cafe43ed6543495ad478735829f0 | /SFML-zombie-arena-11/SFML-zombie-arena-11/code/Player.cpp | d7cb3b0e23bd3e8e6011ac9ec6009bda32fcec7f | [] | no_license | K00201237/2020-SFML | 18f75e76d9f3640d96c0a7c3d71bb456c1ea6632 | c5f67ac3dbf6505b81ef335b805ffdaaf5316ebc | refs/heads/main | 2023-08-17T03:32:44.595414 | 2021-01-18T03:10:42 | 2021-01-18T03:10:42 | 302,042,941 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,838 | cpp | #include "stdafx.h"
#include "player.h"
#include "TextureHolder.h"
Player::Player()
{
m_Speed = START_SPEED;
m_Health = START_HEALTH;
m_MaxHealth = START_HEALTH;
m_Shield = START_SHIELD; // ********************
m_MaxShield = START_SHIELD; // ********************
// Associate a texture with the spri... | [
"71771280+K00201237@users.noreply.github.com"
] | 71771280+K00201237@users.noreply.github.com |
2150b7445e1400566c0bdb5439372152d1bc9188 | 14ec57839c805650d97da8192acb9d5779a7b6dd | /ABC159/b.cpp | 16941e010dc5d3da1c3ef806cf6bf553a9ab7251 | [] | no_license | yamatonao/comp_prog | 69a7a95eb171cc0a0577901f814f6ec72fc7014c | 57d55f867610a5464de45ac8b23dcae2abffe5ba | refs/heads/master | 2023-04-15T12:39:36.849938 | 2021-05-01T04:48:03 | 2021-05-01T04:48:03 | 259,907,854 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 979 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
string s;
int main(void){
int n=0;
bool ans = true;
cin >> s;
n = s.size();
int num = (s.size()-1)/2;
if(num % 2){
num=(num -1) /2;
}else{
num = num/2;
}
for(int i=0; ... | [
"yamatonao.net@gmail.com"
] | yamatonao.net@gmail.com |
3e09db2b9939eb697170d06e7355879b22a55389 | 13f30850677b4b805aeddbad39cd9369d7234929 | / astrocytes --username gavrilov86@gmail.com/CT_tutorial/painting.cpp | 70a95464177ccfd5f4d8830796272aeafe63444f | [] | no_license | hksonngan/astrocytes | 2548c73bbe45ea4db133e465fa8a90d29dc60f64 | e14544d21a077cdbc05356b05148cc408c255e04 | refs/heads/master | 2021-01-10T10:04:14.265392 | 2011-11-09T07:42:06 | 2011-11-09T07:42:06 | 46,898,541 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,000 | cpp |
#include "globals.h"
#include "table.h"
#include "PN_Triangle.h"
#include "tbb/task_scheduler_init.h"
#include "tbb/parallel_for.h"
#include "tbb/blocked_range2d.h"
#include "tbb/tick_count.h"
int painting_rad_nm=300;
float painting_rad=painting_rad_nm*0.001;
std::string painting_svr_fn = "painting_svr_"+s... | [
"gavrilov86@gmail.com"
] | gavrilov86@gmail.com |
450deb1832db2b3b4b2524d52906256a3c65f8a4 | 0bbbc264f4fd435c6cdadfbff5ab8db0da7821a8 | /src/deoptimizer/deoptimize-reason.h | ca1a1749a8417642a1e495bfcd9dca50ccf52cb2 | [
"bzip2-1.0.6",
"BSD-3-Clause",
"SunPro",
"Apache-2.0"
] | permissive | sitedata/v8 | 88de39f9a0f71c0ae297baaf2c9a4c046c9e3aef | 2b4efe9092dd6d2334d49f16b38864bdaa35ade4 | refs/heads/master | 2023-06-19T14:10:44.249004 | 2020-07-23T03:07:47 | 2020-07-23T03:40:24 | 281,853,186 | 0 | 0 | NOASSERTION | 2021-07-24T15:39:22 | 2020-07-23T04:47:49 | null | UTF-8 | C++ | false | false | 5,368 | h | // Copyright 2016 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.
#ifndef V8_DEOPTIMIZER_DEOPTIMIZE_REASON_H_
#define V8_DEOPTIMIZER_DEOPTIMIZE_REASON_H_
#include "src/common/globals.h"
namespace v8 {
namespace inter... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
9ecdb815679fd9d25e4fda4b9e0d7edd832c34d6 | 0eeb4192ae6deb9cf59c2c8f86e9486cfd0e824d | /circularLL/circularll.cpp | 39447729de4470ad762e96fdcd05eff31cc7f100 | [] | no_license | bhavukkalra/CompetitiveCoding | 0e9477383879eb5a87187980d72b434a83053195 | 9366b87cd781a3c623d14fc701ac5464a2270b29 | refs/heads/master | 2022-08-18T07:03:31.552613 | 2020-05-18T17:13:47 | 2020-05-18T17:13:47 | 237,741,717 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,099 | cpp | #include <iostream>
using namespace std;
class Node
{
public:
int value;
Node *next;
};
void push(Node **head_ref, int data)
{
Node *new_node = new Node();
new_node -> value = data;
// new node pointing to first node
new_node -> next = *head_ref;
Node *itr = *head_ref;
if(*h... | [
"bhavukkalra1786@gmail.com"
] | bhavukkalra1786@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.