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 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
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 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
135b3473f8b452f11df2da65ae2052c1d6d4575f | b54829c3408a645bb0a13bccd4cc89df853ea3b3 | /ReactionGameWithArcadianStyleLed.cydsn/Generated_Source/PSoC5/ErikaOS_1_ee_as_internal.inc | 507c65267fd352bb524fee47dac6cc18c8557378 | [] | no_license | aadarshkumar-singh/ReactionGameWithArcadianLeds | e023b437cf2b5735fc578ff981cab3b395e83688 | f4b3e44e8dfa05c9fca23d32691c119ca7279577 | refs/heads/master | 2022-06-06T17:24:39.638079 | 2020-04-26T16:09:55 | 2020-04-26T16:09:55 | 259,063,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,849 | inc | /* ###*B*###
* ERIKA Enterprise - a tiny RTOS for small microcontrollers
*
* Copyright (C) 2002-2012 Evidence Srl
*
* This file is part of ERIKA Enterprise.
*
* ERIKA Enterprise is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public License
* version 2 ... | [
"aadarshxp@gmail.com"
] | aadarshxp@gmail.com |
b9a0089e9ff15372c8809bae2153da632e3fc563 | 7f6d2df4f97ee88d8614881b5fa0e30d51617e61 | /武庆安/Experiment_3/SouceCode/example2_04-局部变量.cpp | 311b7cbb672a69dfd339860f01fdf4f1afa044e8 | [] | no_license | tsingke/Homework_Turing | 79d36b18692ec48b1b65cfb83fc21abf87fd53b0 | aa077a2ca830cdf14f4a0fd55e61822a4f99f01d | refs/heads/master | 2021-10-10T02:03:53.951212 | 2019-01-06T07:44:20 | 2019-01-06T07:44:20 | 148,451,853 | 15 | 25 | null | 2018-10-17T15:20:24 | 2018-09-12T09:01:50 | C++ | UTF-8 | C++ | false | false | 905 | cpp | // example2_04:局部变量示例
#include <stdio.h>
#include <windows.h>
int n = 10; //全局变量
void func(int n)
{
n = 20; //局部变量
printf("func n: %d\n", n);
}
void func1()
{
int n = 20; //局部变量
printf("func1 n: %d\n", n);
}
void func2(int n)
{
printf("func2 n: %d\n", n);
}
void func3()
{
printf("func3 n: %d... | [
"201711010304@stu.sdnu.edu.cn"
] | 201711010304@stu.sdnu.edu.cn |
000384326b414cc12fde586ff73a5ec5e224f532 | 633842301cd36cad562767da691ed5297ccd559f | /Accepted/zerojudge/a034. 二進位制轉換.cpp | 643d1683c28f534d7835d148ab6ef72a0f26795d | [] | no_license | turtle11311/Codes | c5b87864f59802241b6784ccd5cd553fe5533748 | 7711679dffb421323ab2cc389662d106d50ab16c | refs/heads/master | 2020-04-06T05:20:33.810466 | 2014-12-24T12:20:13 | 2014-12-24T12:20:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 292 | cpp | #include <iostream>
#include <string>
using namespace std;
int main () {
long long int n, i;
char ans[60];
while (cin >> n) {
for (i=0;i<60;i++)
ans[i]=' ';
for (i=0;n != 0;n/=2,i++)
ans[i]=n%2+'0';
for (i-=1;i>=0;i--)
cout << ans[i];
cout << endl;
}
}
| [
"turtle11311@hotmail.com"
] | turtle11311@hotmail.com |
9282485cafc454aa7bbdae8f65515af9af9f4d4b | 8ce1e9f1bef1a647f4c986a24df5340ffb17bc4e | /Linked List OO/LinkedListsOOPAssignment/LinkedListsOOPAssignment/Employee.h | a22ad6b25c73ef189d3ed24dee43fb4c1b93435b | [] | no_license | Nikhilvedi/University-Work | 54ac1b22c3dba8bb65f493962b0fbef3bd6cc526 | 118705add1d105e753af5f7814484a3388f6645e | refs/heads/master | 2021-01-10T15:06:22.126914 | 2015-10-17T16:12:04 | 2015-10-17T16:12:04 | 44,443,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 831 | h | #include "stdafx.h"
#include <string>
using namespace std;
#ifndef EMPLOYEE_H
#define EMPLOYEE_H
class Employee
{
protected:
string name;
string startDate;
int empNumber;
int dept;
public:
Employee();
Employee(string, string, int, int);
string getName();
string getStartDate();
int getEmpNo();
int getDept()... | [
"nv94@hotmail.co.uk"
] | nv94@hotmail.co.uk |
9cfd63ec381c30e60c8e82aac8f62958be1fe804 | d43c3fbfd149d2ac0a051a0074585dce345ae967 | /muduo/muduo/base/AsyncLogging.h | 8aaa827df955de6b60c0a78c461f5d93061cb52b | [
"BSD-3-Clause"
] | permissive | wuzhl2018/AnnotatedVersion | 3dad25b843a7ba5dd272dca61e9bde98483dd1af | bfdafa36e18e7212fac01762e628aef28633b9a4 | refs/heads/master | 2020-09-16T22:03:22.695817 | 2019-11-20T05:18:34 | 2019-11-20T05:18:34 | 223,900,026 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,706 | h | #ifndef MUDUO_BASE_ASYNCLOGGING_H
#define MUDUO_BASE_ASYNCLOGGING_H
#include <muduo/base/BlockingQueue.h>
#include <muduo/base/BoundedBlockingQueue.h>
#include <muduo/base/CountDownLatch.h>
#include <muduo/base/Mutex.h>
#include <muduo/base/Thread.h>
#include <muduo/base/LogStream.h>
#include <boost/bind.hpp>
#includ... | [
"805356546@qq.com"
] | 805356546@qq.com |
0dcc6931687b70e8737fbf4bf1b324537ebe98b5 | 563e3598843e0d7883c34d7d7fab130259cc0d60 | /PalindromePermutation.cpp | 89f7e88ea939c4ee42f408046b44d35f0560d3a1 | [] | no_license | rshah918/Cracking-the-Coding-Interview | a315ba17bf590f23ebb343fa231df6c02d49e07f | e8d2fe39975f3dcad44bb931b6baa44ab7b4a9f9 | refs/heads/master | 2023-08-18T12:10:46.766123 | 2021-10-07T22:23:25 | 2021-10-07T22:23:25 | 270,379,968 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 927 | cpp | #include <iostream>
#include <string>
#include <unordered_map>
using namespace std;
bool palindromePermutation(string s){
unordered_map<char, int> char_count;
int num_odd_chars = 0;
for(int i = 0; i < s.length(); i++){
char curr = s[i];
//increment character count in hash table
if(... | [
"rahulshah512@gmail.com"
] | rahulshah512@gmail.com |
52eb4760b11dac8c56eb9d276f17939a29590817 | 92e75166e42ff0715de0834a0a3c7a950f9a710e | /src/my_predictor.h | 5f41bc83429fc99893ef032f47888a72562f5760 | [] | no_license | chainy35/Dynamic-Branch-Prediction-with-Perceptrons | 0a3737dd3b4476187d43927c36869df1e4d49e4a | 31c3801ba4ee1b03955c9d53f6193f2f69759c8d | refs/heads/master | 2021-05-10T11:24:12.746713 | 2018-01-22T06:08:59 | 2018-01-22T06:08:59 | 118,410,976 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,733 | h | // my_predictor.h
// This file contains a sample my_predictor class.
// It is a simple 32,768-entry gshare with a history length of 15.
// Note that this predictor doesn't use the whole 8 kilobytes available
// for the CBP-2 contest; it is just an example.
#include <math.h>
class my_update : public branch_update {
pu... | [
"noreply@github.com"
] | chainy35.noreply@github.com |
c9e31faedac8f4b1781a1c72c7b3ee9a885248c3 | 1111ac58ece117d2cd96bb5cabe07ab41220ad25 | /class.h | f775453fb48ac05fcc2f9ae7ab64973378734389 | [
"MIT"
] | permissive | Sophie-Williams/TAK-Game-playing-bot | f51f2a2c3b3498ecbe5f8f67c0730e4b2315075b | ee30166749669a03f7ecbb64caa8832bfa52ebc0 | refs/heads/master | 2020-05-19T15:39:17.191448 | 2016-11-12T15:45:40 | 2016-11-12T15:45:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | h | #include<bits/stdc++.h>
using namespace std;
class state{
public:
state* parent;
vector< vector< vector< int > > > boardState;
double eval ;
double alpha, beta ;
int depth;
string printM ;
//define a constructor function
//error vecotr
state(int size);
state() ;
bool operator < (const state& st) const
... | [
"singhmanish1997@gmail.com"
] | singhmanish1997@gmail.com |
976290a73958d73cba75c59572bd703df53e2c98 | 0f23651b08fd5a8ce21b9e78e39e61618996073b | /tools/clang/test/Misc/ast-dump-decl.cpp | 0df8a5a2b8fb78765b51f6a8db062befe01e20c6 | [
"NCSA"
] | permissive | arcosuc3m/clang-contracts | 3983773f15872514f7b6ae72d7fea232864d7e3d | 99446829e2cd96116e4dce9496f88cc7df1dbe80 | refs/heads/master | 2021-07-04T03:24:03.156444 | 2018-12-12T11:41:18 | 2018-12-12T12:56:08 | 118,155,058 | 31 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 19,304 | cpp | // RUN: %clang_cc1 -std=c++11 -triple x86_64-linux-gnu -fms-extensions -ast-dump -ast-dump-filter Test %s | FileCheck -strict-whitespace %s
class testEnumDecl {
enum class TestEnumDeclScoped;
enum TestEnumDeclFixed : int;
};
// CHECK: EnumDecl{{.*}} class TestEnumDeclScoped 'int'
// CHECK: EnumDecl{{.*}} TestEnumD... | [
"jalopezg@inf.uc3m.es"
] | jalopezg@inf.uc3m.es |
59ac289351f134ec667d5077222717aaea8e15ad | 225b9a9ce807b669f5da0224b374bbf496d0bc70 | /lg3402.cpp | ec94854b618165b84c6374b974c2163dc6141ae3 | [] | no_license | Kewth/OJStudy | 2ed55f9802d430fc65647d8931c028b974935c03 | 153708467133338a19d5537408750b4732d6a976 | refs/heads/master | 2022-08-15T06:18:48.271942 | 2022-07-25T02:18:20 | 2022-07-25T02:18:20 | 172,679,963 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 786 | cpp | #include <bits/stdc++.h>
inline long long input() { long long res ; scanf("%lld",&res); return res; }
int find(int x,int *fa)
{
if(fa[x] == x) return x;
return find(fa[x] , fa);
}
inline void add(int x,int y,int *fa,int *deep)
{
x = find(x , fa);
y = find(y , fa);
if(deep[x] < deep[y])
fa[x] = y;
else
fa[... | [
"wthdsg@foxmail.com"
] | wthdsg@foxmail.com |
1e86a5fc01abe16157d2bf3c0f80fda6145a6255 | e61a0ebe93280719d9bb34cac52d772f0d814e5f | /hdoj1207.cpp | 3c6f23988b6b6fef0fddea83639ba9c787a9e0eb | [] | no_license | zhouwangyiteng/ACM_code | ba5df2215500a1482cf21362160ddbf71be0196d | ca3e888bd4908287dd822471333a38c24b0a05db | refs/heads/master | 2020-04-12T06:35:10.160246 | 2017-04-22T07:44:09 | 2017-04-22T07:44:09 | 61,373,600 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,049 | cpp | /*************************************************************************
> File Name: hdoj1207.cpp
> Author:
> Mail:
> Blog:
> Created Time: 2016年07月30日 星期六 19时50分41秒
************************************************************************/
#include <iostream>
#include <cstdio>
#include <vector>
#include <... | [
"zhouwang122@qq.com"
] | zhouwang122@qq.com |
16fba564cabd85a3f50fedaafec5b7e5d85d48f1 | 22153e138bb70e4ec27f121882971bdd28df3444 | /src/HuffyBool.cpp | 6b6a62d9fa927c0be9854ef0dd27b5c290f51c17 | [] | no_license | AndyKelly/Huffy | f9486fa097276ee253711743cbe5c19002d0eb4d | 0c67f012fe69edb03cb0377ec6666b7174ca21ac | refs/heads/master | 2021-01-01T16:55:19.200574 | 2013-01-14T08:07:01 | 2013-01-14T08:07:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,725 | cpp | /*
* HuffyBool.cpp
*
* Author: Andy Kelly
*/
#include "HuffyBool.h"
#include "HuffyConstants.h"
#include "HuffyManager.h"
using namespace std;
HuffyBool::HuffyBool(void)
{
m_Value = 0;
}
HuffyBool::HuffyBool(bool Value)
{
m_Value = Value;
}
HuffyBool::HuffyBool(bool Value, string UniqueID)
{
m_Value = ... | [
"andykelly@outlook.com"
] | andykelly@outlook.com |
58fbb260bec723b877a9cdf354dfeae517296cad | 31ff2096bcc62be7fcf929ad098c83367d8170d0 | /src/net.cpp | fb92ed4a7449682340b3e71914c9092bf38b3974 | [
"MIT"
] | permissive | puredev321/Decentronium | be59c538bea4d4b276789747489f3d27099b7120 | b0a4faff7f4a979f9a86ba8f7b93693bc8c3b39a | refs/heads/master | 2020-04-02T22:10:00.961056 | 2018-10-26T11:26:49 | 2018-10-26T11:26:49 | 154,823,724 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 66,352 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-li... | [
"puredev321@gmail.com"
] | puredev321@gmail.com |
7002cdc385ab345c27679e593dfb72df3e69d413 | a63e739155d5b07bb9252501b64bf0d5de275087 | /Ejercicio 4/src/common/Resultado.cpp | 7329329f8038be5b00c8fdebf9220128a205a73d | [] | no_license | dario-ramos/testers-distribuidos7574 | 677b79588aadeb547d85f5f31f6c3912828cc8e4 | 5a8e992960f069a80491d49d270e52c4a8b95db6 | refs/heads/master | 2016-09-05T21:52:37.730168 | 2015-03-09T16:59:22 | 2015-03-09T16:59:22 | 33,097,578 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 178 | cpp | /*
* File: Resultado.cpp
* Author: knoppix
*
* Created on October 4, 2014, 10:28 PM
*/
#include "Resultado.h"
Resultado::Resultado() {
}
Resultado::~Resultado() {
}
| [
"dario.fenix@gmail.com@18dcfaaf-94c9-9b71-9433-3f00c941b258"
] | dario.fenix@gmail.com@18dcfaaf-94c9-9b71-9433-3f00c941b258 |
cb318f5136d99c6a2d67e0a080b0a7529f8714a0 | b904263df73ce56b3c6f7e05b2bafb5abf46f21a | /gdipp_demo_render/commandline.cpp | 4dc7daba3681d44d27bd540d8db4288742e1993e | [
"MIT"
] | permissive | dbautsch/gdipp-conf-editor | cc1c9fbf8dfda81a80da927b4044d0c7ce340547 | 817acdc9464db172782f465a44b27bfa917ef86f | refs/heads/master | 2021-07-02T14:56:02.149213 | 2020-12-21T18:26:14 | 2020-12-21T18:26:14 | 208,060,372 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,183 | cpp | /*
Copyright (c) 2019 Dawid Bautsch
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, merge, pu... | [
"dawid@bautsch.pl"
] | dawid@bautsch.pl |
af588588282fb1ecdd9a6712a6fddb4e09f06a95 | 41a08c02f23996fb2d7aeb78764443a63eed15eb | /greeting_10_24.cc | 0bc1a58321df6799de73730a8fece1d150d74b06 | [] | no_license | kmad1729/acpp | b28407ab007d18126601c03a05e4386bc1ed470a | 7a933fbfa714c4459cff53d3fe364759118beb12 | refs/heads/master | 2020-04-29T02:18:11.154932 | 2014-01-05T18:45:27 | 2014-01-05T18:45:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 918 | cc | #include<iostream>
#include<string>
using std::cout; using std::cin;
using std::string; using std::endl;
int main()
{
cout << "Please enter your first name: ";
string name;
cin >> name;
const string greeting = "Hi, " + name + "! How are you";
const int pad = 5;
const int rows = 2 * pad + 3;
strin... | [
"kashyap.mad@gmail.com"
] | kashyap.mad@gmail.com |
d1ce092da27c2bfc9c353926f51085895022f3d9 | 95dcf1b68eb966fd540767f9315c0bf55261ef75 | /build/pc/Boost_1_50_0/output/include/boost-1_50/boost/mpl/multiset/aux_/item.hpp | 839c338e18241851ab2c45579dcdb96031efef79 | [
"BSL-1.0"
] | permissive | quinsmpang/foundations.github.com | 9860f88d1227ae4efd0772b3adcf9d724075e4d1 | 7dcef9ae54b7e0026fd0b27b09626571c65e3435 | refs/heads/master | 2021-01-18T01:57:54.298696 | 2012-10-14T14:44:38 | 2012-10-14T14:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,661 | hpp |
#ifndef BOOST_MPL_MULTISET_AUX_ITEM_HPP_INCLUDED
#define BOOST_MPL_MULTISET_AUX_ITEM_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2003-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// See http://ww... | [
"wisbyme@yahoo.com"
] | wisbyme@yahoo.com |
bc9d8bba86d16f2e545ac32ae3f79fe75999a993 | 85fcd407df2eb50ea6e015580986f950882f9fd4 | /basics/Arrays/sortInLinearTime.cpp | 0cf4cc6133c6ecf1846f1152302256f9f8e07e82 | [] | no_license | naveen700/CodingPractice | ff26c3901b8721cb0c6de32f8df246b999893471 | d4f7c756974a5eee16c79e8d98f86b546260aa6d | refs/heads/master | 2021-01-16T02:19:27.387955 | 2020-04-26T17:41:08 | 2020-04-26T17:41:08 | 242,941,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 708 | cpp | #include <iostream>
using namespace std;
void sortInLinearTime(int [],int);
int main(){
int len;
cin>>len;
int arr[len];
for(int i=0; i<len;i++){
cin>>arr[i];
}
sortInLinearTime(arr,len);
}
void sortInLinearTime(int arr[] , int len){
int a=0, b=0 ,c=0;
// to count no of z... | [
"naveenrana921@gmail.com"
] | naveenrana921@gmail.com |
d26dd617bf6912fea72dde546fbc6ceb92c4a240 | 2ca167503b276a48f232c9c179ec43f2214194e9 | /InvokeTarget1/src/main.cpp | d64df089e13d910663e0e025199451796302ce87 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | ProLove365/Cascades-Community-Samples | 6f3f81bfdc61ec57b4d0218d2c1ed5b2f59ee53c | 4d723d37e5bf61df13a8fa7740acbdd1e422d230 | refs/heads/master | 2020-12-25T12:40:02.333653 | 2012-10-24T09:42:53 | 2012-10-24T09:42:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,467 | cpp | /* Copyright (c) 2012 Research In Motion Limited.
*
* 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 ... | [
"shaque@rim.com"
] | shaque@rim.com |
53c1437ebeffabefd1dbb751de8387ba09f7ad1e | b9197c03b0abf40b71d60e707a05588d99511a51 | /SOS.ino | 742b155a646502d9b6de4c422781b71d4462e38c | [] | no_license | PirateGuy97/Arduino-SOS | d7744ced37c40792ce3e1f2fbf69a39969f7a52f | c3e71bd121a392f353213f17812c7ddb4c7e62b7 | refs/heads/master | 2020-06-20T00:05:44.643332 | 2019-07-15T04:09:10 | 2019-07-15T04:09:10 | 196,921,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,074 | ino | void setup() {
// put your setup code here, to run once:
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
// "S"
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
digitalWrite(LED_BUILTIN, HIGH);
delay(500);
digit... | [
"noreply@github.com"
] | PirateGuy97.noreply@github.com |
02b5584684acbb23a3b18f28881499a34f68303a | 1dae79fb96f0dbbd03104eac106285e1aef88197 | /TI/Lab_2/UnitIDEA.h | a261e0fc89b5b2629e1f36f9345591e9effe2512 | [
"Apache-2.0"
] | permissive | ilyacoding/bsuir | 781e8f126d1f7d2db402b9d8083d1f4bcdcc6f4e | c1a09b63d5d66a3dc0f4545589608a18d1b5d9c9 | refs/heads/master | 2021-05-15T04:23:26.430221 | 2019-05-29T04:06:12 | 2019-05-29T04:06:12 | 75,403,020 | 0 | 0 | Apache-2.0 | 2021-04-21T19:34:52 | 2016-12-02T14:35:01 | Objective-C | UTF-8 | C++ | false | false | 1,903 | h | //---------------------------------------------------------------------------
#ifndef UnitIDEAH
#define UnitIDEAH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.Wi... | [
"ilyacoding@yandex.com"
] | ilyacoding@yandex.com |
e4592f4e8d5aae51a2be0ce2fa1da93e289dbf24 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/AggregateRedundancyComponent/UNIX_AggregateRedundancyComponent_LINUX.hxx | 5d385a4adc902a9e9a28dbb4cd8fe37a866e560c | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,841 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
55cac0b1df59f2c448c66ef59d722c32cd545e58 | 2a6a078d0073cfc78429f1f96370bac32bb5bd38 | /src/node.h | effd6b13ce3c3bb313049a9834ebfc19053b9d18 | [] | no_license | dieu-detruit/onnx2c | 0466386ad96ab4eab6c1ecd231e83dee2ebb9acc | 97e8d3913253e349b103c4dbdff30552d4137be0 | refs/heads/master | 2023-04-06T20:59:09.383733 | 2021-03-28T14:03:45 | 2021-03-31T19:39:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,089 | h | #pragma once
#include <string>
#include "error.h"
#include "onnx.pb.h"
#include "util.h"
namespace toC {
class Tensor;
/* The ONNX node, or computation kernel. *
* Node is a virtual parent class for each of the
* ONNX node "types" or "operands" (e.g. Add, Relu, ...)
* Each individual node in the graph is then an ... | [
"kraiskil@iki.fi"
] | kraiskil@iki.fi |
33bf8fa0e925509c71891a6eeb87339bcf66a4fc | 839aa2696f888cbe966f94614e11d8962cc27c74 | /utils/cpp/point_score.cpp | a535b6d27bebc000b921c32a0563220908743913 | [] | no_license | jiehanzheng/rpi_intercom | dfb254ecd42b12252c099ad036691982f1073931 | 5ec9109504f78afc8b30c26cc83d518a91967dc5 | refs/heads/master | 2016-09-08T01:29:46.455086 | 2013-02-22T06:48:06 | 2013-02-22T06:48:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 468 | cpp | #include <math.h>
score_info point_score(double x1, double y1, double x2, double y2) {
double dx = std::abs(x1-x2);
double y_ratio = y1/y2;
double y_margin = pow(std::max(y1,y2),2.2)/1000000;
double x_comp = pow((0.015*dx),4);
double y_comp = pow(std::max((double)0,abs(y_ratio-1)-y_margin),(double)5);
dou... | [
"zheng@jiehan.org"
] | zheng@jiehan.org |
cb1164868c280c40ce464048f09bf6512ff8cc4f | f0c9b902901b2e70c004e24e07f6a30defa9f84a | /src/World/World.cpp | 5fbfc72ecbbc1b0e65be701737d399b6e4bf1c1e | [] | no_license | lorenzofman/ComputerGraphicsTC | 4f45a19356bec91da523e204e0436f8bf8af568e | a79ad136c3b26db212869b02561c18437ab11b3b | refs/heads/master | 2022-06-02T14:55:18.850485 | 2020-05-05T16:52:22 | 2020-05-05T16:52:22 | 257,919,061 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | cpp | #include "World.h"
World::World()
{
EventSystem::UpdateCallback.Register([this] {this->OnUpdate(); });
EventSystem::KeyDownCallback.Register([this] (int key) {this->OnKeyDown(key); });
bezier = new BezierCurve();
}
void World::OnUpdate()
{
Canvas2D::ClearScreen(Colors::Background);
bezier->Render();
DisplayFrame... | [
"lorenzofman@gmail.com"
] | lorenzofman@gmail.com |
eb1955d5768754226c535e1f1fe360f376e88e7e | 4051dc0d87d36c889aefb2864ebe32cd21e9d949 | /practice/Level_order_non_recursive.cpp | 19bbb674602a60cb3aba6abcb765d893905ac265 | [] | no_license | adityax10/ProgrammingCodes | e239971db7f3c4de9f2b060434a073932925ba4d | 8c9bb45e1a2a82f76b66f375607c65037343dcd9 | refs/heads/master | 2021-01-22T22:53:01.382230 | 2014-11-07T10:35:00 | 2014-11-07T10:35:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 557 | cpp | #include<bits/stdc++.h>
using namespace std;
class node
{
public:
int data;
node *l,*r;
node(int data)
{
this->data = data;
l=r=0;
}
};
void levelorder(node *t)
{
queue<node*> v;
v.push(t);
while(!v.empty())
{
t = v.front();
v.pop();
cout<<t->data<<" ";
if(t->l)
v.push(t->l);
if(t->r)... | [
"androidaditya@gmail.com"
] | androidaditya@gmail.com |
f2e39736ddeea4453e1404016a9c9cb0be23245c | a78390c58814a59998f330adab061c7f7678725e | /sources/srm/src/include/BaseSRF.h | 3a832bfd854636bfc0b240eaa58f27142c155e1c | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | Geo4Win/sedris-dynamic | d632c3c496bdd111b8cb27d69de359cd7cc7c420 | cfb3b2f1605221bb1cfd86c8315ff0ca740767b8 | refs/heads/master | 2021-07-06T16:47:05.668696 | 2017-10-02T04:55:03 | 2017-10-02T04:55:03 | 105,417,233 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 61,355 | h | /** @file BaseSRF.h
@author Warren Macchi, David Shen
@brief Declaration of SRF base classes and includes of concrete SRF classes.
*/
// SRM SDK Release 4.1.4 - July 1, 2011
// - SRM spec. 4.1
/*
* NOTICE
*
* This software is provided openly and freely for use in representing and
* in... | [
"sysbender@gmail.com"
] | sysbender@gmail.com |
03e3044cae601707e8a4950b6517b30fbd989931 | 35fbe1678a2b52fed50c754e5e2fbe2f39ef44d6 | /windows/runner/main.cpp | 07c35159228a2d7b11a679857dddec9603250d47 | [] | no_license | deorwine/desktop-applications-with-flutter | 2ae1d5f006800a01cd6b0385fd68ff0c51741498 | ccc81e797b5ef1fb521959bc691d9e624639ca60 | refs/heads/master | 2023-06-20T11:44:14.246979 | 2021-07-23T06:58:22 | 2021-07-23T06:58:22 | 388,004,891 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,257 | 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... | [
"paras.laxkar@deorwine.com"
] | paras.laxkar@deorwine.com |
dc9ec1a25d7ab88f46d6e38fb016c6bbdfad80a8 | f7458f81055c5458ae619b8e5469e3e018f05b1f | /IO/SegY/vtkSegY3DReader.h | 06534530974e3bafbbc9996ef0a845280bb51710 | [
"BSD-3-Clause"
] | permissive | CDAT/VTK | f4e2d5920533eee2009044cff99d722290d14870 | 840dcb68621a8aeef2b49be4a3ba64c9f5061987 | refs/heads/uvcdat-master | 2022-04-07T07:13:44.287885 | 2017-08-18T16:25:07 | 2017-08-18T16:25:07 | 13,934,856 | 0 | 0 | NOASSERTION | 2020-02-28T07:53:21 | 2013-10-28T18:37:31 | C++ | UTF-8 | C++ | false | false | 1,504 | h | /*=========================================================================
Program: Visualization Toolkit
Module: vtkSegY3DReader.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is... | [
"sankhesh.jhaveri@kitware.com"
] | sankhesh.jhaveri@kitware.com |
72b3e573176a4672dcad4570563a226c76ff0d60 | 64c64f19d6028d3948263a0acd1e7e86f5bf38b1 | /OJ/446.cpp | 78fd05df8b6f3088c8c152140365157fb6f0e27f | [] | no_license | xiejun5/HaiZei | f765f2462b63fe87efe754096c80c5f2ec5ea3df | 9f36757cadeb2f71434604eb16145dd5ef60e736 | refs/heads/master | 2020-09-22T08:16:44.318888 | 2020-08-11T15:25:10 | 2020-08-11T15:25:10 | 225,117,929 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,013 | cpp | /*************************************************************************
> File Name: 446.cpp
> Author:
> Mail:
> Created Time: 2020年01月08日 星期三 10时11分03秒
************************************************************************/
#include<iostream>
#include <cstring>
using namespace std;
#define N 100
int nu... | [
"3406505842@qq.com"
] | 3406505842@qq.com |
dd59b9acea9bece9435b803d9b36c2b8f4e17a96 | af665e07d1c18a8a15b39a980b01b2a55a33bb78 | /kaldi/src/nnet3/nnet-descriptor.h | e2d2c41772d4ddb605875ba7faea7361c6cae716 | [
"Apache-2.0",
"LicenseRef-scancode-public-domain"
] | permissive | lyapple2008/SpeakerVerification_based_on_Kaldi | cd52721fcf9b6d05326df5a7fcabd0bf66db7f08 | 838b60e8a5be31909f7d17941999ad2fa6f32b4a | refs/heads/master | 2021-01-23T06:14:35.046951 | 2017-06-01T09:33:10 | 2017-06-01T09:33:10 | 93,015,037 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 26,845 | h | // nnet3/nnet-descriptor.h
// Copyright 2012-2015 Johns Hopkins University (author: Daniel Povey)
// See ../../COPYING for clarification regarding multiple authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may ob... | [
"ly_apple_2008@163.com"
] | ly_apple_2008@163.com |
56297ae7e695111815692272683e8533b9c74c05 | 4416d4c599f175b68f54e0ee2aca97b18639567f | /DXBase/DXBase/sources/Field/MoveFloorRightLeft.h | 0a4f557d028917ddbb6083d644e4831b356e2563 | [] | no_license | kentatakiguchi/GameCompetition2016_2 | 292fa9ab574e581406ff146cc98b15efc0d66446 | df1eb6bf29aba263f46b850d268f49ef417a134b | refs/heads/master | 2021-01-11T18:21:34.377644 | 2017-03-03T08:25:39 | 2017-03-03T08:25:39 | 69,625,978 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,025 | h | #pragma once
#ifndef MOVE_FLOOR_RIGHT_LEFT_H_
#define MOVE_FLOOR_RIGHT_LEFT_H_
#include"../Actor/Base/Actor.h"
#include"../Define.h"
#include"MapChip.h"
class MoveFloorRightLeft :public MapChip {
public:
//空のMapChipを生成
MoveFloorRightLeft() {}
//マップチップの生成
MoveFloorRightLeft(IWorld* world, Vector2& position);
Mov... | [
"microbug7@gmail.com"
] | microbug7@gmail.com |
dfe0bc8b82ef0d72a0797ecb955018c84d785065 | f76e43b84e0b624de8aed0a4b9f9bb0a9be22b92 | /src/dag-merger/BufferMaker.cpp | e999aabd23e5eab8f0ac68b8ebfa6bd91b57559a | [] | no_license | hansongfang/idb | 8c2603a3b37d55e0f17d9f815c56cfa27b416941 | 5c160553a83548df30fad5bc125cc4f27b01473f | refs/heads/master | 2021-09-13T04:52:29.246968 | 2018-04-25T05:33:26 | 2018-04-25T05:33:26 | 125,979,190 | 8 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,050 | cpp | #include "BufferMaker.h"
#include "dag-lib/Log.h"
#include "dag-lib/ViewPoint.h"
#include "dag-lib/ViewFacet.h"
#include <time.h>
#include <random>
#include <boost/filesystem.hpp>
#include <boost/serialization/serialization.hpp>
#include<boost/serialization/unordered_map.hpp>
#include<boost/serialization/set.hpp>
#incl... | [
"shanaf@ust.hk"
] | shanaf@ust.hk |
bf2a301bc1493c0c56cf7538f3051af1edbad9bf | 6b40e9dccf2edc767c44df3acd9b626fcd586b4d | /NT/multimedia/directx/dinput/diconfig/idftest.h | d557f9b8a05c0eea1966d582b5d5e2a530777260 | [] | no_license | jjzhang166/WinNT5_src_20201004 | 712894fcf94fb82c49e5cd09d719da00740e0436 | b2db264153b80fbb91ef5fc9f57b387e223dbfc2 | refs/heads/Win2K3 | 2023-08-12T01:31:59.670176 | 2021-10-14T15:14:37 | 2021-10-14T15:14:37 | 586,134,273 | 1 | 0 | null | 2023-01-07T03:47:45 | 2023-01-07T03:47:44 | null | UTF-8 | C++ | false | false | 943 | h | #ifndef __IDFTEST_H__
#define __IDFTEST_H__
typedef enum _TUI_CONFIGTYPE {
TUI_CONFIGTYPE_VIEW,
TUI_CONFIGTYPE_EDIT,
} TUI_CONFIGTYPE;
typedef enum _TUI_VIA {
TUI_VIA_DI,
TUI_VIA_CCI,
} TUI_VIA;
typedef enum _TUI_DISPLAY {
TUI_DISPLAY_GDI,
TUI_DISPLAY_DDRAW,
TUI_DISPLAY_D3D,
} TUI_DISPLAY;
... | [
"seta7D5@protonmail.com"
] | seta7D5@protonmail.com |
3490709c9d10c5f3a47928787cb12434bb27185e | e20b7293bba88babbd9b18ac731a2215cfac2c51 | /src/qt/test/uritests.cpp | 797bddb411771864f0d91c9a71c10f3a1b233258 | [
"MIT"
] | permissive | thachpv91/hanhcoin-clone | af57bcc042e3584fdaad2b585f32daf83153910d | d7bd7f4b88066d4a4ca545857db59ba673103af5 | refs/heads/master | 2020-06-23T14:27:56.971235 | 2016-11-24T06:59:38 | 2016-11-24T06:59:38 | 74,646,122 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,853 | cpp | #include "uritests.h"
#include "../guiutil.h"
#include "../walletmodel.h"
#include <QUrl>
void URITests::uriTests()
{
SendCoinsRecipient rv;
QUrl uri;
uri.setUrl(QString("hanhcoin:LQDPC5rbjDB72fGFVHu4enYhxGAZuRiFh9?req-dontexist="));
QVERIFY(!GUIUtil::parseBitcoinURI(uri, &rv));
uri.setUrl(QStrin... | [
"thachphanvan@gmail.com"
] | thachphanvan@gmail.com |
900979ef0cd13453fcfc9d446a6dc5ccd5857ad0 | 73f70fa0176d4b40fe88f146fa12de5cf18b9c5f | /designPatterns/singleton/multiton.cpp | d71cd6fe2ecfe4b52754d88cd22e85ca0071d90d | [] | no_license | MichalDUnda/Cpp | 93faf69e46b5f9155825addc447decdd0041b3bc | 77bfabe04ffd47a514b98adf66b2d943cd2d6a40 | refs/heads/master | 2023-07-13T23:08:50.327335 | 2023-07-03T08:11:15 | 2023-07-03T08:11:15 | 384,334,021 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,255 | cpp | #include <map>
#include <memory>
#include <iostream>
using namespace std;
//helper enum class for instances of multitone
enum class Importance
{
primary,
secondary,
tertiary
};
template <typename T, typename Key = std::string>
class Multiton
{
public:
static shared_ptr<T> get(const Key& key)
{
... | [
"michal.dundo@gmail.com"
] | michal.dundo@gmail.com |
98bf97e3e889e9da3b0bd53fdddd837f18f57695 | 5ae01ab82fcdedbdd70707b825313c40fb373fa3 | /src/evaluators/Charon_ThermodiffCoeff_Default_impl.hpp | 617a9633bd95bb0b77c5b7f3fd840f93ae94f5d3 | [] | no_license | worthenmanufacturing/tcad-charon | efc19f770252656ecf0850e7bc4e78fa4d62cf9e | 37f103306952a08d0e769767fe9391716246a83d | refs/heads/main | 2023-08-23T02:39:38.472864 | 2021-10-29T20:15:15 | 2021-10-29T20:15:15 | 488,068,897 | 0 | 0 | null | 2022-05-03T03:44:45 | 2022-05-03T03:44:45 | null | UTF-8 | C++ | false | false | 4,873 | hpp |
#ifndef CHARON_THERMODIFFCOEFF_DEFAULT_IMPL_HPP
#define CHARON_THERMODIFFCOEFF_DEFAULT_IMPL_HPP
#include <cmath>
#include "Panzer_Workset.hpp"
#include "Panzer_Workset_Utilities.hpp"
#include "Panzer_IntegrationRule.hpp"
#include "Panzer_BasisIRLayout.hpp"
#include "Charon_Names.hpp"
#include "Charon_Physical_Const... | [
"juan@tcad.com"
] | juan@tcad.com |
803cb938a6e7bc3ca561cda88d7a10aa5d11e631 | 90af79681ba010c6a2a0f4da3f04c175c5805180 | /C++_Basic/005继承重载等/三目运算符.cpp | 81372082cad0c9025f191e6833e523890ce0a07a | [] | no_license | minxin126/C_Basic | a184c2e6902397dfff99e1406b912caa3a894a20 | 2225a66bd3826c81658a86f3cbee4bb70a3014c6 | refs/heads/master | 2021-07-14T20:23:14.691028 | 2020-06-26T14:10:13 | 2020-06-26T14:10:13 | 177,624,168 | 1 | 2 | null | 2019-03-29T16:49:51 | 2019-03-25T16:28:49 | C++ | GB18030 | C++ | false | false | 294 | cpp | #include<iostream>
using namespace std;
int main()
{
int a = 10;
int b = 20;
(a < b ? a : b)=30; //C++中三目运算符可以作为左值,返回的是变量本身。
cout << "a=" << a << endl; //左值是有内存空间的,寄存器没有内存空间。
cout << "b=" << b << endl;
} | [
"359676107@qq.com"
] | 359676107@qq.com |
0495eeb126da1679a24b306efe5f4323feecf691 | 711e5c8b643dd2a93fbcbada982d7ad489fb0169 | /XPSP1/NT/inetsrv/iis/iisrearc/iisplus/ulatq/ipm_io_c.cxx | ea88b141030c06bf486a82d7bca0ea606b878895 | [] | no_license | aurantst/windows-XP-SP1 | 629a7763c082fd04d3b881e0d32a1cfbd523b5ce | d521b6360fcff4294ae6c5651c539f1b9a6cbb49 | refs/heads/master | 2023-03-21T01:08:39.870106 | 2020-09-28T08:10:11 | 2020-09-28T08:10:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,057 | cxx | /*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
ipm_io_c.hxx
Abstract:
This module contains classes for doing async io in the
worker process.
Author:
Michael Courage (MCourage) 22-Feb-1999
Revision History:
--*/
#include "precomp.hxx"
#include "ipm.hxx" ... | [
"112426112@qq.com"
] | 112426112@qq.com |
3b899af5d815f9b22371cc1977a7f604e8bc4d85 | 21f5356e9fd0b3ab9ee7a5c54e30fd94bb660ee4 | /com/win32comext/adsi/src/PyADSIUtil.cpp | 069877b6e2c4aace1e8b10f3b7a9c7cbd9a4ffca | [] | no_license | chevah/pywin32 | 90850232a557ecf054bc316e324aaf60188f2cca | d4ff0b440147ab65f1945991e81163fb1cf1ceaf | refs/heads/master | 2020-03-29T09:46:04.465546 | 2014-10-24T09:11:17 | 2014-10-24T09:11:17 | 25,680,336 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 21,345 | cpp | // @doc
#include "Python.h"
#include "pyerrors.h" // for PyErr_Warn in 2.5...
#include "Windows.h"
#include "PyWinTypes.h"
#include "PythonCOM.h"
#include "PyADSIUtil.h"
#include "structmember.h"
#include "wchar.h"
BOOL GetADSIErrorString( HRESULT hr, WCHAR *buf, int nchars );
PyObject *OleSetADSIError(HR... | [
"adi.roiban@chevah.com"
] | adi.roiban@chevah.com |
c5d382b88950e00ecb382799cb72d9bdaad953aa | 5fe2f231d31d86c2a18ea88303e08b95af94d19b | /line_follower.cpp | 97b2b2371faa0e511c2bfd1d4c79ab031bf1b968 | [] | no_license | abhishyantkhare/hibike | db608e33b8b98bec48c94e699e674091c2382c51 | c5aec317aa2393e8439758392cf12625fad7ca8b | refs/heads/master | 2021-01-16T01:07:12.057563 | 2015-08-27T07:50:01 | 2015-08-27T07:50:01 | 42,791,486 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,156 | cpp | #include "hibike_message.h"
#define IN_PIN 1
#define CONTROLLER_ID 0 // arbitrarily chosen for now
uint32_t data;
uint32_t subscriptionDelay;
HibikeMessage* m;
void setup() {
Serial.begin(115200);
pinMode(IN_PIN, INPUT);
}
void loop() {
data = digitalRead(IN_PIN);
// uncomment the line below for fun data... | [
"vincentdonato@pioneers.berkeley.edu"
] | vincentdonato@pioneers.berkeley.edu |
ff4c63f35fb5971280736ca30ce0334040d407db | ac9b37f9523f62c67c819fae44ec5a33e33f23e4 | /collatz_conjecture/collatz_OpenMP_MPI_CUDA.cpp | d0961deb8dde7807b851db3f55e060d0231fd54b | [] | no_license | M-Hernandez/Arcane-repo | 6fee76d11b634321a40b345875c1ffe90361fe12 | bfc0d678fdeccb1cb044882fcbd8a4e87e7b4dbb | refs/heads/master | 2021-09-23T11:14:29.370733 | 2021-09-14T02:52:44 | 2021-09-14T02:52:44 | 208,671,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,689 | cpp | /*
Collatz code for CS 4380 / CS 5351
Copyright (c) 2020 Texas State University. All rights reserved.
Redistribution in source or binary form, with or without modification,
is *not* permitted. Use in source or binary form, with or without
modification, is only permitted for academic use in CS 4380 or CS 5351
at Texas... | [
"miguelhernandez@Miguels-MacBook-Pro.local"
] | miguelhernandez@Miguels-MacBook-Pro.local |
2b403221cd7fa81d34e98de06844f32e04eb1292 | 0c80aec0be5a600426006096a5c510c90b3ca949 | /HackerRank/Practice/Sorting/Correctness_and_the_Loop_Invariant.cpp | 1d00cbd3c0329d062bdd1df5acb329fd8ced5c30 | [] | no_license | skywithlight/Algorithms | 7b8fd78874afffc8ae7c2775b53d2402cc165e65 | 06a13fbb73ea1404a7d0eaab56765ec2423f9e07 | refs/heads/master | 2020-03-23T21:20:04.814645 | 2018-10-16T03:59:42 | 2018-10-16T03:59:42 | 142,098,756 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 658 | cpp | #include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
void insertionSort(int N, int arr[]) {
int i,j;
int value;
for(i = 1; i < N; i++)
{
value = arr[i];
j = i - 1;
while(j >= 0 && value < arr[j])
{
arr[j+1] = arr[j]... | [
"noreply@github.com"
] | skywithlight.noreply@github.com |
dc294122141a13c2a1d104495d46351e6fd64ce4 | 11ac20402a3bde71126f8c6d8734174fbcc409af | /note/test_code/stm/phch_recv.cc | 7b66d3babe85148f98307b7db420de3fcd587789 | [] | no_license | learning-lte/read-srslte | aa0bb1a0e711b9f6ba2eae65d78e691ea7293889 | cfafa1df08a312bf467cb5c72bdc906849c07893 | refs/heads/master | 2021-10-11T22:57:28.892751 | 2019-01-30T11:14:05 | 2019-01-30T11:14:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 528 | cc | #include "phch_recv.h"
#include <stdio.h>
sync_state phy_state;
void * run_thread(void){
bool running = true;
while(running){
switch(phy_state.run_state()){
case sync_state::CELL_SEARCH:
printf("I'm in cell search\n");
phy_state.state_exit();
break;
case sync_state::SFN_SYNC:
printf("I'm i... | [
"651558476@qq.com"
] | 651558476@qq.com |
0cd1228640252d81f06a21c006aa52d318fbb1cd | 95c241df67572e94798a216a6b75e2bc1bb17319 | /Source.cpp | ee021c97af3ad92830973382c3e7e9e2af661a2b | [] | no_license | xhoic/GameY | 8bc0d96ff13643e304d81daea20f7d45d76202d4 | 85065e407d5e861a903989fb8c0c5292f823456f | refs/heads/main | 2023-02-17T21:04:09.183544 | 2021-01-18T02:36:45 | 2021-01-18T02:36:45 | 330,535,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,640 | cpp | //Xhoi Caveli
#include <iostream>
#include <map>
#include <set>
int main()
{
int diceNum;
std::map<int, int> diceRoll;
std::set<int> roll;
std::cout << "Enter 5 numbers in range 1 to 6." << std::endl;
for (int i = 1; i <= 5; i++)
{
std::cout << i << ". ";
std::cin >> diceNum;
while (diceNum < 1 or diceNu... | [
"caveli.xhoi@gmail.com"
] | caveli.xhoi@gmail.com |
566e77f8dd6a0cc6aa2ce2669134e1597586548c | fbb6b85ea717ddbbaa149a233213f59369c00780 | /src/governance-vote.h | dafbc6e6402f6851b04def7af1c30e45149b7c2d | [
"MIT"
] | permissive | agenanextproject/Agena | bd5368c554a0b0051f8ce98fd39a962e71cb6ec9 | 562aed54370e2d64921006f0f2e1ee5154c650d9 | refs/heads/master | 2020-03-21T03:45:36.170961 | 2018-03-15T18:18:10 | 2018-03-15T18:18:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,797 | h | // Copyright (c) 2014-2017 The Agena Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GOVERNANCE_VOTE_H
#define GOVERNANCE_VOTE_H
#include "key.h"
#include "primitives/transaction.h"
#include <boost/... | [
"agentaproject@gmail.com"
] | agentaproject@gmail.com |
16a8823e1d2377f821d4075a7dc7aad3a4432ada | 0c46b2988021dacf063778be69c12cf9466ff379 | /INF/PrgT/Cpp/03-inheritance-and-polymorphism/diamond_problem/Boat.h | 0b8690e4acee4a5692111981440ce7cf02a0001b | [] | no_license | AL5624/TH-Rosenheim-Backup | 2db235cf2174b33f25758a36e83c3aa9150f72ee | fa01cb7459ab55cb25af79244912d8811a62f83f | refs/heads/master | 2023-01-21T06:57:58.155166 | 2023-01-19T08:36:57 | 2023-01-19T08:36:57 | 219,547,187 | 0 | 0 | null | 2022-05-25T23:29:08 | 2019-11-04T16:33:34 | C# | UTF-8 | C++ | false | false | 327 | h | #ifndef INC_03_INHERITANCE_AND_POLYMORPHISM_BOAT_H
#define INC_03_INHERITANCE_AND_POLYMORPHISM_BOAT_H
#include "Vehicle.h"
// TODO: Define the Boat class
class Boat : Vehicle {
public:
int maxKnots;
Boat(int serial, int yearOfManufacture, int maxKnots);
~Boat();
};
#endif //INC_03_INHERITANCE_AND_POLYMORPHISM_... | [
"anton.bertram@stud.fh-rosenheim.de"
] | anton.bertram@stud.fh-rosenheim.de |
1c4d1474149a1281a811d815381d3aee57ecf79b | 0d87d119aa8aa2cc4d486f49b553116b9650da50 | /autom4te.cache/src/arith_uint256.h | 54fc1e46287e47d4cb8a5f490b4512ac550cfe82 | [
"MIT"
] | permissive | KingricharVD/Nests | af330cad884745cc68feb460d8b5547d3182e169 | 7b2ff6d27ccf19c94028973b7da20bdadef134a7 | refs/heads/main | 2023-07-07T12:21:09.232244 | 2021-08-05T01:25:23 | 2021-08-05T01:25:23 | 386,196,221 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,097 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2020-2021 The NestEgg Core Developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_ARITH_UINT256_H... | [
"northerncommunity1@gmail.com"
] | northerncommunity1@gmail.com |
80862b2e4e75a0d761b2793bc2c2b29d42e0447c | 0441585e00e2d1ceddc2e4575e6c195075d6d3ca | /PersonItem.hpp | 0b8ac2bf298527dee103ac1174e14d1d66058e67 | [] | no_license | rherardi/ldif2pst | 9efc00f0ac4816934e5328030a0447b219b9342f | 766959056d448793240dcd0d199d47c122a37e28 | refs/heads/master | 2020-05-20T07:49:05.914074 | 2015-05-12T07:46:18 | 2015-05-12T07:46:18 | 35,469,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,492 | hpp | // MessageItem.hpp: interface for the CPersonItem class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PERSONITEM_HPP__EC66FE86_817C_4257_84C8_5D4905E2CCBE__INCLUDED_)
#define AFX_PERSONITEM_HPP__EC66FE86_817C_4257_84C8_5D4905E2CCBE__INCLUDED_
#if _MSC_VER > 1000
#pragma o... | [
"rherardi@alumni.stanford.edu"
] | rherardi@alumni.stanford.edu |
1163d17edf30ae9a6d2509eab403396a1ddbf453 | 7e21c4f4793e886910a6b4135116bf3c744405aa | /Special positions in binary matrix.cpp | e30a35838a78fd488a3f6824f840cd737bb09915 | [] | no_license | vriddhi1203/LeetCode-Solutions | 944da388ff49ca1aff47233520d891bfefd64a19 | 59937b80b762275f2d90ebb246dbe5d231505c5b | refs/heads/main | 2023-02-19T00:14:52.911229 | 2021-01-09T18:59:14 | 2021-01-09T18:59:14 | 327,352,322 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 842 | cpp | class Solution {
public:
int numSpecial(vector<vector<int>>& mat) {
int ans=0;
for(int i=0;i<mat.size();i++){
for(int j=0;j<mat[i].size();j++){
if(mat[i][j]==1){
bool c=true;
for(int k=0;k<mat.size();k++){
... | [
"noreply@github.com"
] | vriddhi1203.noreply@github.com |
5596d53e7e53f5dce98fd0bf7d55396f29f59902 | 091afb7001e86146209397ea362da70ffd63a916 | /inst/include/nt2/constant/constants/maxexponent.hpp | 4d628719ac4d9bb420da3445baefd976802cd47a | [] | no_license | RcppCore/RcppNT2 | f156b58c08863243f259d1e609c9a7a8cf669990 | cd7e548daa2d679b6ccebe19744b9a36f1e9139c | refs/heads/master | 2021-01-10T16:15:16.861239 | 2016-02-02T22:18:25 | 2016-02-02T22:18:25 | 50,460,545 | 15 | 1 | null | 2019-11-15T22:08:50 | 2016-01-26T21:29:34 | C++ | UTF-8 | C++ | false | false | 1,185 | hpp | //==============================================================================
// Copyright 2003 - 2011 LASMEA UMR 6602 CNRS/Univ. Clermont II
// Copyright 2009 - 2011 LRI UMR 8623 CNRS/Univ Paris Sud XI
//
// Distributed under the Boost Software License, Version 1.0.
// ... | [
"kevinushey@gmail.com"
] | kevinushey@gmail.com |
ef9778e241885be5272027583fcfac02028b7ccc | 1f465d0e9082b92115d1d65f4f27ee03850b05f9 | /ReadFile/Store.h | 8fc97c0b336cf27f053307d623eea7a09949bc04 | [] | no_license | kjblkblt/ReadFile | 25c8a7b2225f6627d6fd0c5dbb9dc3960a0f60fa | c75309d1dd0b89177ae930cfe5e0ad6e42c5a27e | refs/heads/master | 2021-01-25T00:22:22.862937 | 2015-05-07T17:05:31 | 2015-05-07T17:05:31 | 34,702,589 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 8,823 | h | #include <string>
#ifndef STORE_H_
#define STORE_H_
using namespace std;
class Store
{
public:
static bool RevenueComparator(const Store& c1, const Store& c2);
static bool NPSComparator(const Store& c1, const Store& c2);
static bool StoreComparator(const Store& c1, const Store& c2);
Store();
~Store();
int stor... | [
"kim.x.johnson@gmail.com"
] | kim.x.johnson@gmail.com |
e64a8543bc18e5018c4b735992b8ed19c9594fe6 | 27dbda0197096619145e80144f9a7bdc33099b08 | /Core/Assembler.h | 191bdee81301e110f4800c78b90f608c4be77643 | [] | no_license | unknownbrackets/armips | f58941bc2307e8b72a150a00d0ab7b3749783bcb | f53a0949d11a29bda810811fc8b7647ecb630c78 | refs/heads/master | 2022-11-05T18:03:52.751621 | 2014-11-23T20:04:24 | 2014-11-23T20:04:24 | 27,045,572 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | h | #pragma once
#include "../Util/CommonClasses.h"
#include "../Util/FileClasses.h"
#include "../Util/Util.h"
#include "FileManager.h"
enum class ArmipsMode { File, Memory };
struct LabelDefinition
{
std::wstring name;
int value;
};
struct ArmipsArguments
{
// common
ArmipsMode mode;
int symFileVersion;
bool erro... | [
"sorgts@googlemail.com"
] | sorgts@googlemail.com |
bc60de19394bbef643f40ec3f01b587950df6859 | 059be4fd38c56117816d2541731e031325cab43b | /meshlib/algorithm/FindLoop.cpp | e3572b3b60ee58bedd983840c34702f809a6797c | [
"MIT"
] | permissive | seanchas116/meshlib | aeacfc03820b8352a52f7ec3cc044d65628adfa4 | f2b48717667adaff9d70f0e927d1bdd44633beed | refs/heads/master | 2020-11-24T06:37:06.947687 | 2019-12-14T16:08:15 | 2019-12-14T16:08:15 | 228,012,025 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,771 | cpp | #include "FindLoop.hpp"
#include <range/v3/algorithm/find.hpp>
namespace meshlib {
std::vector<EdgeHandle> findLoop(const Mesh &mesh, EdgeHandle edge) {
std::vector<EdgeHandle> edges;
auto vertex = mesh.vertices(edge)[0];
edges.push_back(edge);
if (ranges::distance(mesh.faces(edge)) != 2) {
... | [
"iofg2100@gmail.com"
] | iofg2100@gmail.com |
5a9bdff4d70f193e5af9afd8974494c7bdca6536 | 874fd3e28319bf6042b72c580aad3018d2fa35fb | /src/binaryServer/logging/ClientSdkLoggerFactory.cpp | df8e22180be19037c7ef70935e52ba6b7fc8779b | [
"Apache-2.0"
] | permissive | menucha-de/OPC-UA.Server | 43e50962afe631765693575bf80f5c6a6467f004 | ebfafb0f9a1943fc1f2d44f20a0497a59e5bfd97 | refs/heads/main | 2023-03-24T16:29:13.864707 | 2021-03-19T14:28:36 | 2021-03-19T14:28:36 | 349,453,071 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,123 | cpp | #include "ClientSdkLoggerFactory.h"
#include "ClientSdkLogger.h"
#include <common/Mutex.h>
#include <common/MutexLock.h>
#include <stdio.h> // fprintf
#include <map>
using namespace CommonNamespace;
class ClientSdkLoggerFactoryPrivate {
friend class ClientSdkLoggerFactory;
private:
std::map<const char*, Logge... | [
"info@menucha.de"
] | info@menucha.de |
37439e54d41ddbea6a3a5b025fe73197ba67938c | eb0b9c66976c0aa0b1a5506c0d500161a47294f7 | /WalkThrough/Queue.h | 8ef7e12e4650e6ce52adf73cc3b3e8272808b112 | [] | no_license | codeprecise/a-gentle-introduction-to-cpp | 46eb99ac46e0b39c7962e685abfdd8e50b623d61 | db933dee8fc06249437172a2b943a2b80f6e6de0 | refs/heads/master | 2020-06-02T17:51:40.529676 | 2019-06-11T05:09:10 | 2019-06-11T05:09:10 | 191,044,620 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | h | #pragma once
#include "Mutex.h"
typedef void* ElementPtr;
class Queue
{
public:
Queue(int maxElementCount, int elementSize);
~Queue();
int GetSize();
bool Enqueue(ElementPtr element);
bool Dequeue(ElementPtr element);
private:
void IncrementIndex(int* index);
... | [
"davids@codeprecise.com"
] | davids@codeprecise.com |
e584b825b28a6150ba63281630eb0edd4e54e0c1 | ecb2798c0529d23ed7e32f28578b23affd180ce1 | /Assignment 3/src/Demos/SierpinskiBungeeJumpGUI.cpp | c61d366135a02bbac6e9a7c9752b020b8a3e01f3 | [] | no_license | zjulsh/cs106b_2019 | 259305efbfce685ab91d5b771653a011b3aac478 | 9cd4a107fc24edfda18dc67372ce370b957d0404 | refs/heads/master | 2021-04-10T19:26:49.398285 | 2020-03-21T11:15:13 | 2020-03-21T11:15:13 | 248,958,721 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,445 | cpp | #include "ProblemHandler.h"
#include "Sierpinski.h"
#include "GUIUtils.h"
#include "GVector.h"
#include "gtimer.h"
#include <algorithm>
using namespace std;
namespace {
const string kBackgroundColor = "#FFFFFF";
const string kBorderColor = "#4C516D"; // Independence
/* Timing parameters. */
const ... | [
"865835320@qq.com"
] | 865835320@qq.com |
485d67885c492eead74c16cc842bf57297cff38b | 694d42f8e426ee1e7849688d9a332d9fafa99960 | /SnowmanSTG/Memento.h | c366a2db78d8208f293ab237de62fa5ee8bb4132 | [] | no_license | hazama-yuinyan/SnowmanSTG | 23fcfbdc99f03bfd98c920c6e6af1bd7f8cb8848 | 0d59fc481701d99e64fdf13327c54239a7cf4a84 | refs/heads/master | 2016-09-05T13:23:08.161705 | 2011-06-25T18:08:29 | 2011-06-25T18:08:29 | 1,854,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 255 | h | #pragma once
#include "stdafx.h"
class MementoKey
{
friend class InputDeviceKeyBoard;
private:
MementoKey(void);
boost::array<char, 256> key_state;
void SetData(char In[]);
boost::array<char, 256> &GetData(void);
public:
~MementoKey(void){};
};
| [
"Ryouta@.(none)"
] | Ryouta@.(none) |
1d88fb9b79d7ac1b965e3969ba0457f15e975f47 | 711e5c8b643dd2a93fbcbada982d7ad489fb0169 | /XPSP1/NT/admin/activec/designer/vb98ctls/mssnapr/mssnapr/ppgwrap.cpp | ab676430d1bbf99deec8fb943fc7749fe3bae6d2 | [] | no_license | aurantst/windows-XP-SP1 | 629a7763c082fd04d3b881e0d32a1cfbd523b5ce | d521b6360fcff4294ae6c5651c539f1b9a6cbb49 | refs/heads/master | 2023-03-21T01:08:39.870106 | 2020-09-28T08:10:11 | 2020-09-28T08:10:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 50,359 | cpp | //=--------------------------------------------------------------------------=
// ppgwrap.cpp
//=--------------------------------------------------------------------------=
// Copyright (c) 1999, Microsoft Corp.
// All Rights Reserved
// Information Contained Herein Is Proprietary and Confidential.... | [
"112426112@qq.com"
] | 112426112@qq.com |
6411c0a5dc9202061a2b7a1a7d246eb39933c93a | 38702e29534e03742dedd1cc752990113059509c | /FrontEnd/front/windows/front/MainPage.h | 2756305093e34c45c91c8735e4d932576a1a3d5e | [] | no_license | kandabior/Queries | 6b9a2cb0aa20cea4dfcbd40b828b19dab2399f7c | 6e94dab1e3141dedf613cee503289a873c0dccc1 | refs/heads/master | 2023-03-19T10:44:31.557522 | 2021-03-02T15:48:48 | 2021-03-02T15:48:48 | 337,340,539 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 334 | h | #pragma once
#include "MainPage.g.h"
#include <winrt/Microsoft.ReactNative.h>
namespace winrt::front::implementation
{
struct MainPage : MainPageT<MainPage>
{
MainPage();
};
}
namespace winrt::front::factory_implementation
{
struct MainPage : MainPageT<MainPage, implementation::MainPage>
... | [
"MJFC37@motorolasolutions.com"
] | MJFC37@motorolasolutions.com |
0eecb3e8d75575e170659a44fe2232b3a78f9d05 | 57f624cd3cc3647fc0b8975bbdea821b3b6cba08 | /adaboost/templates/instantiated_templates_naive_decision_stump.hpp | 75c0308e29ee1c0cb394ead5135e4f0196bcfaae | [] | no_license | 2537369758/adaboost | 7b73c059f506b4a69ebe1118231d68d021d1ec1f | bbd7f2676cbe53f72324c862ddfcab27d0718259 | refs/heads/master | 2023-04-01T20:33:01.136821 | 2020-12-05T11:25:26 | 2020-12-05T11:25:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 779 | hpp | #ifndef ADABOOST_TEMPLATES_INSTANTIATED_TEMPLATES_NAIVE_DECISION_STUMP_HPP
#define ADABOOST_TEMPLATES_INSTANTIATED_TEMPLATES_NAIVE_DECISION_STUMP_HPP
template class BinaryNaiveDecisionStump<bool>;
template class BinaryNaiveDecisionStump<short>;
template class BinaryNaiveDecisionStump<unsigned short>;
template class Bi... | [
"noreply@github.com"
] | 2537369758.noreply@github.com |
ff1bc68ac1c1bcb6f6909fee8a169c5298998a4c | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /chrome/browser/k_anonymity_service/k_anonymity_trust_token_getter.cc | 488cfc357870df6582cba5bdc9fdb1883376ecd4 | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 19,155 | cc | // Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/k_anonymity_service/k_anonymity_trust_token_getter.h"
#include "base/json/json_writer.h"
#include "base/json/values_util.h"
#include "base/strings/str... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
9d630978e4625bf2d710321d51cd4a17fd676938 | 31651f58f0fc7ab6cd5174eb406463531c563926 | /datasets/ptb/simple-examples/rnnlm-0.2b/rnnlm.cpp | 018f3ce196f38598f354af6df58b16b516e6f97c | [
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | CavHack/pipeline | 76ee26f016a9503b4ea62bb631930d7c452a1cfd | b397e283d22843d9e05e2f5625affacf9bede741 | refs/heads/master | 2021-07-03T20:00:39.734917 | 2016-09-24T01:59:59 | 2016-09-24T01:59:59 | 69,131,791 | 1 | 0 | Apache-2.0 | 2021-06-04T02:48:48 | 2016-09-24T22:54:23 | Jupyter Notebook | UTF-8 | C++ | false | false | 14,551 | cpp | ///////////////////////////////////////////////////////////////////////
//
// Recurrent neural network based statistical language modeling toolkit
// Version 0.2b
// (c) 2010 Tomas Mikolov (tmikolov@gmail.com)
//
///////////////////////////////////////////////////////////////////////
#include <stdio.h>
#include <stdl... | [
"chris@fregly.com"
] | chris@fregly.com |
6d593282f13b69af8e64f415bd10d754ec71d582 | 971574c9d61071b8de016ca98b8579885143af82 | /src/hypotheses/hypothesis_with_points.cpp | f124aa4ecf58da26fcd72fa8eb0874b24631aa49 | [
"BSD-3-Clause"
] | permissive | AIS-Bonn/multi_hypothesis_tracking | 6066982e998a69db849ee71f83ba35d2347629da | e9854feee98001a1ea5190fcab4930d1880574f4 | refs/heads/master | 2023-07-01T01:27:36.727692 | 2021-07-27T15:05:43 | 2021-07-27T15:05:43 | 389,998,243 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,719 | cpp | /** @file
*
* Implementation of a hypothesis extended with point measurements on detected objects.
*
* @author Jan Razlaw
*/
#include "multi_hypothesis_tracking/hypotheses/hypothesis_with_points.h"
namespace MultiHypothesisTracker
{
HypothesisWithPoints::HypothesisWithPoints(const Detection& detection,
... | [
"s6jarazl@uni-bonn.de"
] | s6jarazl@uni-bonn.de |
f3033af10cbf5ec1bb20718be6f63168eced9cb8 | f05155d1c9c41fcc6e31686505f856fd2fbc06de | /2019/octobor 2019/atl bangla 18 part 2.cpp | d820369f2af9ec4c15cb8e41c62c0d55975b267b | [] | no_license | T-tasir/Competetive-Programming | 22308db58c827a8dfa9d2f879f7a1c135f3ab96a | b56ab712fd2147a69b90b7300e281b9b6ed85852 | refs/heads/main | 2023-08-18T07:35:22.656508 | 2021-10-14T13:20:33 | 2021-10-14T13:20:33 | 368,572,215 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | cpp | //#include<bits/stdc++.h>
#include<iostream>
#include<set>
#include<map>
#include<iterator>
using namespace std;
int main()
{
multiset<int>s;
multiset<int>::iterator it;
s.insert(100);
s.insert(100);
s.insert(100);
s.insert(1);
for(it=s.begin();it!=s.end();it++){
cout<< *it <<endl;
... | [
"allmoontasir256@gmail.com"
] | allmoontasir256@gmail.com |
d77d40327ab44d7a33742b5ff6f8a1e2e7cb3b16 | f6ef1f50a476c3ed58b4f268feb6fb438996f06a | /有OJ/刷题指南(包含leetcode, POJ, PAT等)/POJ-1/problems/3020.cpp | f1d0d18308fe77a0b88bb5ce26d65a93be763c57 | [] | no_license | February13/OJ_Guide | f9d6c72fc2863f5b6f3ad80b0d6c68b51f9a07db | a190942fae29a0dbee306adc81ee245be7fda44a | refs/heads/master | 2020-04-25T09:01:48.458939 | 2018-01-18T08:31:30 | 2018-01-18T08:31:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,454 | cpp | #include<iostream>
#define MN 401
bool GE[MN][MN],check[MN];
int h,w,q,point[MN][2],map[40][10];
int match[MN],min,x,y;
bool DFS(int p);
void construct();
int main()
{
int i,j,k,n,s;
scanf("%d",&n);
for (i=0;i<n;i++)
{
q=1;
scanf("%d%d",&h,&w);
for (j=0;j<h;j++)
{
getchar();
for (k=0;k<w;k++)
{
... | [
"zhaoqijie@pku.edu.cn"
] | zhaoqijie@pku.edu.cn |
2fabb0fe19a9f48de6d164d1cda43172e1a503ea | f6f55778056b4c008bfd5897a028faf20c6927a7 | /src/qt/privacydialog.cpp | fd55a10cb40370b228b94c4b624e4db71f78be74 | [
"MIT"
] | permissive | bright-project/brightcoin | f3b3c140a669be11dfc54d797397a46c70c14cab | b42683d82a65b96861383d8b3e4c7d22b92acc70 | refs/heads/master | 2020-03-29T20:06:59.302242 | 2018-09-25T16:33:53 | 2018-09-25T16:33:53 | 150,296,212 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,569 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "privacydialog.h"
#include "ui_privacydialog.h"
#include "addressbookpage.h"
#include "addresstablemodel.h"
#include... | [
"admin@brightcoin.cc"
] | admin@brightcoin.cc |
913c1f1457f5c78be61214878d65c5d729111bfe | b056b8adad52ca1ceb994a811be4da8498c8cdde | /tests/cpp/include/test_legacy_op.h | 30bdf07b8b51f5cb4a7283769b42e44eb358bdf8 | [
"Apache-2.0",
"BSD-2-Clause",
"MIT",
"BSD-2-Clause-Views",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | SidHard/mxnet | 1a5cc8e958f5cb454ce5bf75f56b66ec8cb7a032 | f95832d73cf3f1413ce1c77fbef0f295a7fbc57f | refs/heads/master | 2022-11-09T00:22:36.043583 | 2017-12-21T05:10:40 | 2017-12-21T05:10:40 | 114,964,884 | 1 | 1 | Apache-2.0 | 2022-10-22T09:57:52 | 2017-12-21T05:06:17 | C++ | UTF-8 | C++ | false | false | 20,560 | h | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | [
"wangxb-1986@163.com"
] | wangxb-1986@163.com |
4a833c031131726463a1a5a5d4c5856d3def3ddd | 95025210b9131d8bbddfe2f4b85e0cf683596c1f | /Src/GeneralInput/DeckBMOptionDlg.cpp | 650be7aeda809367227c11f01e7cd92225f31cd8 | [] | no_license | SamuelBacaner1112/APlate | ece78b86f4cda173c7e1c3d3776d3aaf0ef1d341 | 0d89bd5beadc811d9d33c75f3110903f8b4f256e | refs/heads/master | 2023-01-24T07:50:59.851986 | 2020-12-09T00:19:05 | 2020-12-09T00:19:05 | 319,794,441 | 0 | 2 | null | null | null | null | UHC | C++ | false | false | 120,856 | cpp | // DeckBMOptionDlg.cpp : implementation file
//
#include "stdafx.h"
#include "GeneralInput.h"
#include "../APlateCalc/APlateCalc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDeckBMO... | [
"75705234+SamuelBacaner1112@users.noreply.github.com"
] | 75705234+SamuelBacaner1112@users.noreply.github.com |
df549bd23ed9cb01fe14515520c3e6bae78bf49c | f3a879985834f8528baf132eee8b8e0c4813b683 | /src/RequestHandlerFactory.cpp | 20df298937851a945600afcc8dda191bdb119aee | [
"Apache-2.0"
] | permissive | feniksa/tinyhttpd | c92a60971241ff810317d12401ed0110c3eaf4e6 | ba90ddf8dd36eac2ac3f755c01f4e5458d5d533e | refs/heads/master | 2021-04-29T00:00:39.479299 | 2020-03-27T13:23:15 | 2020-03-27T13:23:15 | 77,691,647 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,872 | cpp | #include "RequestHandlerFactory.h"
#include <Poco/Net/HTTPRequestHandler.h>
#include <Poco/Net/HTTPServerRequest.h>
#include <Poco/Util/Application.h>
#include <Poco/URI.h>
#include "api/DirectoryHandler.h"
#include "HandleStaticFile.h"
#include "cpsp/DirectoryHandler.h"
#include "HandleNotFound.h"
#include <boost/... | [
"msditanov@200volts.com"
] | msditanov@200volts.com |
82627bb8ed682a284db14df4a533e5813953b1a6 | 1ee1f217f14aec3fe1bfe5fab6b9f11f78e2e937 | /CHEDAN_Universe/database.h | 0add48669a5171589ca1634bdd5f9d3fd855550c | [
"Apache-2.0"
] | permissive | Kwongrf/CHEDAN_Universe_v2 | 31ac72dc6c53a2540ed86d73ff50b411e4de035c | 6d001ce08def738c4a145b4c4752e6b63298ed76 | refs/heads/master | 2022-07-08T02:54:00.872522 | 2020-05-12T04:55:57 | 2020-05-12T04:55:57 | 104,554,806 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,722 | h | <<<<<<< HEAD
#ifndef DATABASE_H
#define DATABASE_H
#include "user.h"
#include "question.h"
#include "answer.h"
#include "notification.h"
#include <QTextCodec>
#include <QSqlDatabase>
#include <QSqlQuery>
#include <QTime>
#include <QSqlError>
#include <QtDebug>
#include <QSqlDriver>
#include <QSqlRecord>
class Database
... | [
"kuangruifeng@bupt.edu.cn"
] | kuangruifeng@bupt.edu.cn |
55755e777ebe321b8afbd55dde35274993acb0de | ea49dd7d31d2e0b65ce6aadf1274f3bb70abfaf9 | /problems/0141_Linked_List_Cycle/0141_Linked_List_Cycle.cpp | 152aef7cc268e5e7f9000b9f30d0f01115ba5d27 | [] | no_license | yychuyu/LeetCode | 907a3d7d67ada9714e86103ac96422381e75d683 | 48384483a55e120caf5d8d353e9aa287fce3cf4a | refs/heads/master | 2020-03-30T15:02:12.492378 | 2019-06-19T01:52:45 | 2019-06-19T01:52:45 | 151,345,944 | 134 | 331 | null | 2019-08-01T02:56:10 | 2018-10-03T01:26:28 | C++ | UTF-8 | C++ | false | false | 509 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool hasCycle(ListNode *head) {
ListNode* slow=head;
ListNode* fast=head;
while(fast && fast->next && fast->... | [
"noreply@github.com"
] | yychuyu.noreply@github.com |
d39faf6cdac13ccaf766daf5ff1b7d62d7b73202 | 099c2076771c1fd5bba80e5f1465410dfa70375a | /PE050_Consecutive_prime_sum/pe050.cpp | af8dfcf5e878fb87b09f3674d5c8726cc05fbb73 | [] | no_license | Jul-Le/project-euler | 73595411effa3c150c9bae04ae8f155b4c69aae6 | 17fc9e0ad252931ba0dbaeb033a139727eb99e45 | refs/heads/master | 2021-10-07T23:45:29.106429 | 2018-12-05T18:24:00 | 2018-12-05T18:24:00 | 159,533,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,604 | cpp | #include <iostream>
#include "isprime.h"
int main()
{
// The final answer
int answer = 0;
// Temp answer
int num = 0;
// Number of consecutive primes
int consecutivePrimes = 0;
// ^^Temp
int temp = 0;
// Count how many consecutive primes
int counter = 0;
// How many to find ... | [
"unconfigured@null.spigotmc.org"
] | unconfigured@null.spigotmc.org |
369ff84ed0fe739311a8ea2971775372331315b3 | 5fd1de174f907a7625e798df35c8d07a7fce3f2b | /tests/formatstest.cpp | 25172101a671292b61d0504c3cc53a134b749381 | [
"BSD-3-Clause"
] | permissive | jeremyrearle/XtalOpt | 1172b1e2c6eff2d5b58eb03d46619d0c61706729 | a87aed2cf55db97d072db5f5a9fc03344c9ed46d | refs/heads/master | 2021-07-07T02:10:40.315890 | 2017-09-21T14:02:16 | 2017-09-21T14:04:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,010 | cpp | /**********************************************************************
Formats test - test our file format readers and writers
Copyright (C) 2017 Patrick Avery
This source code is released under the New BSD License, (the "License").
Unless required by applicable law or agreed to in writing, software
distr... | [
"psavery@buffalo.edu"
] | psavery@buffalo.edu |
fbeb76d32c37017fe31321e4545cdb0df18c90f9 | 99f4b183c575d0a476a99a6a851bc7ba5660bdb0 | /755529/20200912.cpp | e3bbce2caec9b5a1cc794af0be22ad169aad2d74 | [] | no_license | XWJWPIY/20200910-homework-basic | 041ec01e0774266a2299bce424ccabd7c9c6e765 | 9541056bcd43ba0fb15b9b3b7b2c61f3430c1a32 | refs/heads/master | 2022-12-10T19:01:40.156838 | 2020-09-12T08:58:14 | 2020-09-12T08:58:14 | 294,898,988 | 0 | 0 | null | 2020-09-12T08:04:12 | 2020-09-12T08:04:11 | null | UTF-8 | C++ | false | false | 178 | cpp | #include <iostream>
using namespace std;
int main() {
string str;
std::cout << "請輸入你的名字:";
std::cin >> str;
std::cout << "你的名字是" + str;
} | [
"piy.angrybirds.minecraft@gmail.com"
] | piy.angrybirds.minecraft@gmail.com |
6495bab4408baf0e3f71f8ddfe1c626d27ceac87 | b80b82c336e2d59b0573f4515a26d4684aff9f1a | /projekt/Options.h | 07f7dd7cda864fc9d0be73211754d9d631f2e9cc | [] | no_license | ancf/sfml-2d-game | 3127a3412915ca5af7194ee747584b82bf76c441 | b408d59d20d38610342b7fb3b44fff691d713611 | refs/heads/master | 2023-05-02T10:12:25.204459 | 2021-05-26T11:04:07 | 2021-05-26T11:04:07 | 371,001,376 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | h | #pragma once
#include "SFML/Graphics.hpp"
class Options
{
public:
Options(float width, float height);
~Options();
enum DifficultyLevel { Easy, Medium, Hard };
int SelectedVolume;
std::string SelectedName;
// void draw(sf::RenderWindow &menu_window);
// void draw_test(sf::RenderWindow &menu_window);
// void ... | [
"krystian1998k@gmail.com"
] | krystian1998k@gmail.com |
95a8c077432fb9699d7a8b142d5af3ed6f6b0578 | a0bdedcc814dfcbf6f1742c398b64a31619af4df | /ideccmbd/CrdIdecNav/PnlIdecNavPre_blks.cpp | a7856813874a260a40b4296d61833d58366e4101 | [
"BSD-2-Clause"
] | permissive | mpsitech/idec_public | ec7231939b8987fd66482d99276609e16d4ad3f7 | a74cf1c7095e08ee61b237fddc1642f83dbb852d | refs/heads/master | 2021-05-13T20:43:55.046131 | 2018-06-09T16:11:30 | 2018-06-09T16:11:30 | 116,916,593 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,558 | cpp | /**
* \file PnlIdecNavPre_blks.cpp
* job handler for job PnlIdecNavPre (implementation of blocks)
* \author Alexander Wirthmueller
* \date created: 30 Dec 2017
* \date modified: 30 Dec 2017
*/
/******************************************************************************
class PnlIdecNavPre::VecVDo
****... | [
"mpsitech@ungenio.local"
] | mpsitech@ungenio.local |
0893d92971311ed0274713d310284408f4295504 | 82770c7bc5e2f27a48b8c370b0bab2ee41f24d86 | /graph-tool/src/graph/search/graph_search_bind.cc | 97d3a28910c3ce68f5104858e8d71101593aa8fc | [
"Apache-2.0",
"GPL-3.0-only",
"LicenseRef-scancode-philippe-de-muyter",
"GPL-3.0-or-later"
] | permissive | johankaito/fufuka | 77ddb841f27f6ce8036d7b38cb51dc62e85b2679 | 32a96ecf98ce305c2206c38443e58fdec88c788d | refs/heads/master | 2022-07-20T00:51:55.922063 | 2015-08-21T20:56:48 | 2015-08-21T20:56:48 | 39,845,849 | 2 | 0 | Apache-2.0 | 2022-06-29T23:30:11 | 2015-07-28T16:39:54 | Python | UTF-8 | C++ | false | false | 1,166 | cc | // graph-tool -- a general graph modification and manipulation thingy
//
// Copyright (C) 2006-2015 Tiago de Paula Peixoto <tiago@skewed.de>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation;... | [
"john.g.keto@gmail.com"
] | john.g.keto@gmail.com |
f2bf1d6e67e0119a78c795e6830b798cd77d0f5d | d669ad659f7f91a3f00ee677c5d5866433adaf41 | /do_best_holdem_hands.cpp | 3c55d90256e77f198ee630c46fc07ac29d337f4b | [] | no_license | neostreet/poker_odds_calculators | 8db5921dd0dbd025c895d8f8b9c714ab2c527cd9 | 5c6a3b68802e99a25800e4a7a077ac13c2e8aaab | refs/heads/master | 2022-10-24T16:34:17.450169 | 2022-09-29T20:42:20 | 2022-09-29T20:42:20 | 1,309,216 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,774 | cpp | #include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
#define MAIN_MODULE
#include "poker_hand.h"
static char usage[] =
"usage: best_holdem_hand (-unevaluate) (-verbose) (-plain) (-no_stream)";
static char couldnt_open[] = "couldn't open %s\n";
static char parse_error[] = "couldn't parse lin... | [
"lloyd.aidan@gmail.com"
] | lloyd.aidan@gmail.com |
1fdb9ab0ea94f1ca190e892f14e6b91ca859aa07 | e8ff6a43129804f611e32f8129bc849e6d5e9255 | /All Nodes Distance K in Binary Tree.cpp | e04e3047adcb20db6727a879394fb0b5714a90d1 | [] | no_license | hirasaha-backcountry/Codes | 00879dec6e9ed73a69b853b8cdfc2fa44f8c9b22 | c6982dc70c78aeae9aff378ade0ee5dabde55c0d | refs/heads/master | 2023-08-01T08:12:48.415214 | 2021-09-13T20:07:07 | 2021-09-13T20:07:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,184 | cpp | /*
Problem Description : (LC 863)
------------------------------------------------
We are given a binary tree (with root node root), a target node, and an integer value K.
Return a list of the values of all nodes that have a distance K from the target node. The answer can be returned in any order.
Example 1:
In... | [
"noreply@github.com"
] | hirasaha-backcountry.noreply@github.com |
60b04fe2ec36ad5f0fe2c1463dadc9fd8fdb9f9c | 96825cf87690c768a60b0fbc7138a43ca22edaa9 | /Source/BlueprintRetarget/Public/BlueprintRetarget.h | 6e963f4623464174b676580c9c90aa0a9e23a74d | [
"Apache-2.0"
] | permissive | Hengle/BlueprintRetarget | 1ff639ff1866af73676af04f4f9e348f88f315e6 | a7e3cb959dd4a8902d29d3a6947dfbb21b575524 | refs/heads/master | 2022-11-09T01:57:07.599744 | 2020-06-20T07:42:48 | 2020-06-20T07:42:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 429 | h | // Copyright 2015-2020 Piperift. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleManager.h"
DECLARE_LOG_CATEGORY_EXTERN(LogBlueprintReparent, All, All);
class FToolBarBuilder;
class FMenuBuilder;
class FBlueprintRetargetModule : public IModuleInterface
{
public:
/** IModuleInt... | [
"muit@piperift.com"
] | muit@piperift.com |
4efd3c8c0e8ff0f2749316a0e8d8990a4c5d4ff0 | 7b48fcad9a50b8fe2315e20efc7bc2ddefdafea3 | /longest_palindromic_substring/lsp_extend.cpp | e32abb78b25450de4064fb75e28a78f3d18ac725 | [] | no_license | TheWaySoFar/LeetCode_Solution | c96ea26f30c310ae4cc917d21d69809a98eb7b28 | 1ae152d9e261a3587100ccfcadc5097dc1d1ea08 | refs/heads/master | 2020-03-10T00:57:45.025959 | 2018-08-01T14:04:22 | 2018-08-01T14:04:22 | 129,096,499 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 852 | cpp | #include<iostream>
#include<string>
using namespace std;
class Solution {
public:
string longestPalindrome(string s) {
int len = s.size();
int ans = 1, ansl = 0;
for(int i=0; i<len; i++){
extend(i, i, s, ans, ansl);
extend(i, i+1, s, ans, ansl);
}
/... | [
"103664210@qq.com"
] | 103664210@qq.com |
9f6fdb582f429d3eb9c06b3638fdc09a9fad06fd | a3947da58918e8508178e75c05d38ea1bef6d5ae | /DataHeaders/mission.h | 8fc3aae804caa90826513cc00339d228a43c2fab | [] | no_license | oygx210/cute42 | a4f59a716cd8d7f647823458d99210849a4aade5 | 6150275f082d01dde3fe12630d669fd7f14998c2 | refs/heads/main | 2023-03-17T22:14:33.807296 | 2021-03-04T09:07:08 | 2021-03-04T09:07:08 | 384,966,099 | 0 | 1 | null | 2021-07-11T14:16:52 | 2021-07-11T14:16:52 | null | UTF-8 | C++ | false | false | 3,550 | h | #ifndef MISSION_H
#define MISSION_H
#include <QString>
#include <QVector>
#include <QVariant>
#include <QDataStream>
#include <QDebug>
#include "qt42baseclass.h"
#include "qt42_headers.h"
class SpacecraftHeader;
class OrbitHeader;
class MissionHolder;
class Spacecraft;
class Orbit;
class Mission : public Qt42Base... | [
"ytsoroy@gmail.com"
] | ytsoroy@gmail.com |
5739ae036b5019955b259653a89a32c8411223a3 | 5fe209e8fb8891f0fa0981be60b724961a8ebf41 | /day6.cpp | 07636bbb323ec4cca3416226991ce5febc2449af | [] | no_license | Jluxcs/CPP_learning | b7d87fe1e1c98ea5f3f203d8db8c706a82d208bb | 9ec057ca6fc5000e3b126bcd49e269043dfcab17 | refs/heads/master | 2020-06-17T02:23:47.588776 | 2019-07-08T08:20:59 | 2019-07-08T08:20:59 | 195,767,170 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | //c++传递指针给函数
#include <iostream>
#include <ctime>
using namespace std;
void gerSeconds(unsigned long *par);
int main(){
unsigned long sec;
gerSeconds(&sec);
cout<<"当前的秒数:"<<sec<<endl;
}
void gerSeconds(unsigned long *par){
*par = time(NULL);
return;
} | [
"852306873@qq.com"
] | 852306873@qq.com |
3d395af9d17064c76e703b2b7c46530b25cb4749 | ec93acb118d5db08c2ac97b667648db2161d2f6d | /android/cpp/src/objects/asmediacontainer.cpp | b778eb8137a5abf8813ce5df895a1fbadc4c9176 | [] | no_license | ActivLearning/flipchartparser | cb315e698fbd3c3869b978a099c2dbbae93536e2 | dfbe159f4680a0396d3761490376884878cef6e3 | refs/heads/master | 2022-12-07T12:18:28.258572 | 2020-09-04T03:42:48 | 2020-09-04T03:42:48 | 290,667,276 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,463 | cpp |
#include <QMutexLocker>
#include <QObject>
#include <QObjectList>
#include "asmediacontainer.h"
#include "../resources/asimageres.h"
#include "../resources/asmediafileres.h"
#include "../asfactory.h"
#include "../resources/asresourcemanager.h"
#include "../util/asutil.h"
#include "asflipchart.h"
#include "../uti... | [
"zhangyi.sina@gmail.com"
] | zhangyi.sina@gmail.com |
ab86e3926a4ddb7825b3674fc79a98e3bb9d7e29 | 8b5db3bc9f2afe52fce03a843e79454319f3c950 | /hardware/invensense/65xx/libsensors_iio/SensorBase.cpp | c01d394dc76648d808f4232ee58a6008cc28bbf7 | [
"Apache-2.0"
] | permissive | 10114395/android-5.0.0_r5 | 619a6ea78ebcbb6d2c44a31ed0c3f9d5b64455b2 | d023f08717af9bb61c2a273a040d3986a87422e1 | refs/heads/master | 2021-01-21T19:57:16.122808 | 2015-04-02T04:39:50 | 2015-04-02T04:39:50 | 33,306,407 | 2 | 2 | null | 2020-03-09T00:07:10 | 2015-04-02T11:58:28 | C | UTF-8 | C++ | false | false | 5,020 | cpp | /*
* Copyright (C) 2012 Invensense, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | [
"xdtianyu@gmail.com"
] | xdtianyu@gmail.com |
3a44f2cdf257768de2add16bff061e58650d061b | 250a85858a7f74ce26a200d3e5292ba3bb81624e | /Classes/Stone/Stone_Crab.h | 5d39a96f1f3f76b1afa85f84fe84a4b6c839de83 | [] | no_license | EEEEMAN/cocosOmok | 459944b4e6c770ed101e6f6d710d00d72dac4aba | 5492e11fec5f91177d3915a3e1edca5e1d95e9d3 | refs/heads/master | 2021-07-11T08:13:08.158375 | 2021-03-11T15:04:13 | 2021-03-11T15:04:13 | 31,811,057 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 138 | h | #ifndef __STONE_CRAB_H__
#define __STONE_CRAB_H__
#include "Stone.h"
class Stone_Crab : public Stone
{
public:
Stone_Crab();
};
#endif | [
"skrnfn2@gmail.com"
] | skrnfn2@gmail.com |
2fb86e128bbe2cf6b6a1951019e86f179e8dd808 | b2119eea95c182c183913cc3574e75e8689d3130 | /SOURCES/sim/digi/wvrengage.cpp | 4e4d25b1ad11d3a33a23dd25d10602433ea0862d | [
"Unlicense"
] | permissive | 1059444127/Negev-Storm | 11233b1b3741f643ff14b5aa7b6ee08de40ab69f | 86de63e195577339f6e4a94198bedd31833a8be8 | refs/heads/master | 2021-05-28T10:48:53.536896 | 2015-02-08T10:42:15 | 2015-02-08T10:42:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,006 | cpp | #include "stdhdr.h"
#include "digi.h"
#include "simveh.h"
#include "object.h"
#include "aircrft.h"
#include "airframe.h"
#include "simdrive.h"
#include "classtbl.h"
#include "entity.h"
#include "fakerand.h"
#include "flight.h"
#include "wingorder.h"
#include "playerop.h"
#include "radar.h" // 2002-02-09 S.G.
// #defin... | [
"israelyflightsimulator@gmail.com"
] | israelyflightsimulator@gmail.com |
24f474e4b694f16c8e54d0878ae215a8e83425df | 9c0af3a75a7ca3250ff6bebcb17e76af5315a31a | /loam_velodyne/include/loam_velodyne/BasicScanRegistration.h | 7693be710cc894c7c27410232230c81dc82313d6 | [
"BSD-3-Clause"
] | permissive | arjo129/darpa_ugv_highlevel | 7fa45fb070803b9f99a2bfe6e91f745908454b76 | 806ff902616ca3252b0099c21e0a07a09c65b4e5 | refs/heads/master | 2023-06-20T18:06:26.023670 | 2020-08-21T07:21:32 | 2020-08-21T07:21:32 | 210,164,633 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,391 | h | #pragma once
#include <utility>
#include <vector>
#include <pcl/point_cloud.h>
#include "Angle.h"
#include "Vector3.h"
#include "CircularBuffer.h"
#include "time_utils.h"
namespace loam
{
/** \brief A pair describing the start end end index of a range. */
typedef std::pair<size_t, size_t> IndexRange;
/*... | [
"paulroopson.pradeep@gmail.com"
] | paulroopson.pradeep@gmail.com |
09d78e7bbd0bdc09242aabb50b6577aa26fc6f60 | 9aab638297189a859e0a19420cc2697afe03b1ef | /13_chap_inherit/text/brass/usebrass2.cpp | 7a6735209f79553aa3b0b1579e2d42b1e566bf26 | [] | no_license | inpeterfomax/cplusplus | 3e92657544e80c93aeb45de6323e86821a93175d | 3d01c361157dc1a6d4d9b315cfcb2f8f89acc7d0 | refs/heads/master | 2022-12-08T03:16:24.059550 | 2022-11-26T13:49:03 | 2022-11-26T13:49:03 | 14,574,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,568 | cpp | #include <iostream>
#include "brass.h"
const int CLIENTS = 4;
const int LEN = 40;
int main()
{
using std::cin;
using std::cout;
using std::endl;
Brass * p_clients[CLIENTS];
int i;
char temp[LEN];
long tempnum;
double tempbal;
char kind;
for(i = 0; i < CLIENTS; i ++)
... | [
"gupingchang@126.com"
] | gupingchang@126.com |
95c6dd3e3c8fcdae7ad418c1c16b51d404afc663 | 6dcb5aca877030e9d3367ab45abb9611192ca13e | /src/libs/sound/ISoundPlaylistObserver.h | 000a0382e741c0bc978aacd16e0597dec5994ef5 | [
"MIT"
] | permissive | moneytech/dhas | d510dedfd26499093f8a26bf43f260c5c95f2e87 | 424212d4766c02f5df9e363ddb8ad2c295ed49d8 | refs/heads/master | 2021-09-03T18:24:07.451825 | 2018-01-10T23:23:59 | 2018-01-10T23:23:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 169 | h | #pragma once
namespace Dumais{
namespace Sound{
class ISoundPlaylistObserver
{
public:
~ISoundPlaylistObserver(){}
virtual void onSoundQueueEmpty()=0;
};
}
}
| [
"git@dumaisnet.ca"
] | git@dumaisnet.ca |
868c9408a0627877f97e325c75688396bf3b6b3d | e398e90159a51b850b9b82540369e98b582468fe | /bioStation/src/main.cpp | f826f4e6b362fc2147bf71376a909f9d1e5ba75a | [] | no_license | unloquer/TalleresESP | f23529b375f494872d2e449d8a040e38960ee031 | a5901fc568285bb9ac925714bd3e4a68976341a5 | refs/heads/master | 2021-01-23T05:44:45.201473 | 2018-03-17T03:09:30 | 2018-03-17T03:09:30 | 92,982,414 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,010 | cpp | /*
This a simple example of the aREST UI Library for the ESP8266.
See the README file for more details.
Written in 2014-2016 by Marco Schwartz under a GPL license.
*/
// Import required libraries
#include <ESP8266WiFi.h>
#include <aREST.h>
#include <aREST_UI.h>
#include <DHT.h>
#define DHTPIN 12 // what pin... | [
"brolin108@gmail.com"
] | brolin108@gmail.com |
43e4872221012b3ce2525be93ab85cdc3b181491 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /media/base/video_util.h | b40331c0293b2f6957b0f89197b92736b6725254 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 7,923 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_BASE_VIDEO_UTIL_H_
#define MEDIA_BASE_VIDEO_UTIL_H_
#include <stdint.h>
#include "base/memory/ref_counted.h"
#include "media/base/medi... | [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
ea64730e77e81c0c0ff3ff2be219ea4cbcecf882 | e1661d124821ea15d09eec04e2d214a4d6bdbcd2 | /files/djinni/shared-data/generated-src/jni/com/ezored/data/EZRSharedDataPlatformService.cpp | 099576bb0ea9551ba0bb07fe01d6d9b4f38a80bb | [
"MIT"
] | permissive | uilianries/ezored | b6ff656bdecbde830e37066ea154d0326fa823d8 | 8c45a6753ddffce1fe406e6e062ff2b455dbb5a1 | refs/heads/master | 2020-04-29T03:32:12.886679 | 2019-03-15T02:46:28 | 2019-03-15T02:46:28 | 175,813,572 | 0 | 0 | MIT | 2019-03-15T12:10:24 | 2019-03-15T12:10:23 | null | UTF-8 | C++ | false | false | 15,332 | cpp | // AUTOGENERATED FILE - DO NOT MODIFY!
// This file generated by Djinni from proj.djinni
#include "com/ezored/data/EZRSharedDataPlatformService.hpp" // my header
#include "Marshal.hpp"
namespace djinni_generated {
EZRSharedDataPlatformService::EZRSharedDataPlatformService() : ::djinni::JniInterface<::ezored::data::... | [
"paulo@prsolucoes.com"
] | paulo@prsolucoes.com |
722706dc1714c5d85f184c2cbb7047db93f140bb | d92e9933b8a4ed840d1d87d95727243c1626d747 | /src/Bonus.cpp | cb0e2456e29551b5abef5507c8074d9d13bdb19c | [] | no_license | EricGadbin/Bomberman | dc97197b3709c62e775d67f453e5be4a4d085ec6 | e1567be5ae1fcbbd913f51eb49fcaa0c9faa8225 | refs/heads/master | 2020-07-31T09:24:19.670503 | 2019-09-25T14:34:07 | 2019-09-25T14:34:07 | 210,558,930 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,808 | cpp | /*
** EPITECH PROJECT, 2019
** INDIE_STUDIO
** File description:
** Bonus
*/
#include "../include/Bonus.hpp"
using namespace Indie;
std::string assets[] = {
"../assets/wallbonus.png",
"../assets/speedbonus.png",
"../assets/bombbonus.png",
"../assets/firebonus.png"
};
Bonus::Bonus(btype_t type, irr::... | [
"benjamin.renaud@epitech.eu"
] | benjamin.renaud@epitech.eu |
477e89b2440a136f640f2b0fe6c0aae967e1a6dc | 89b7e4a17ae14a43433b512146364b3656827261 | /testcases/CWE122_Heap_Based_Buffer_Overflow/s11/CWE122_Heap_Based_Buffer_Overflow__sizeof_struct_83_bad.cpp | 280b0ff3dfd509b7dcfd9556258b1ba84d15b220 | [] | no_license | tuyen1998/Juliet_test_Suite | 7f50a3a39ecf0afbb2edfd9f444ee017d94f99ee | 4f968ac0376304f4b1b369a615f25977be5430ac | refs/heads/master | 2020-08-31T23:40:45.070918 | 2019-11-01T07:43:59 | 2019-11-01T07:43:59 | 218,817,337 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,501 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE122_Heap_Based_Buffer_Overflow__sizeof_struct_83_bad.cpp
Label Definition File: CWE122_Heap_Based_Buffer_Overflow__sizeof.label.xml
Template File: sources-sink-83_bad.tmpl.cpp
*/
/*
* @description
* CWE: 122 Heap Based Buffer Overflow
* BadSource: Initialize the sour... | [
"35531872+tuyen1998@users.noreply.github.com"
] | 35531872+tuyen1998@users.noreply.github.com |
097a93bee74000f7668218c4942858d384d4a51f | 26fd4d615946f73ee3964cd48fa06120611bf449 | /104_Maximum_Depth_of_Binary_Tree.cpp | 2e0b80fad7d359bc8fb7b14689deeb60e684680f | [] | no_license | xujie-nm/Leetcode | 1aab8a73a33f954bfb3382a286626a56d2f14617 | eb8a7282083e2d2a6c94475759ba01bd4220f354 | refs/heads/master | 2020-04-12T07:25:51.621189 | 2016-12-03T09:29:36 | 2016-12-03T09:29:36 | 28,400,113 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | #include <iostream>
#include <string>
#include <vector>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
int maxDepth(TreeNode* root){
if(root == NULL)
return 0;
else{
int left = 1 + maxDept... | [
"xujie_nm@163.com"
] | xujie_nm@163.com |
17f67977d81a8ea145ea22c3826460f7752b9678 | 15419e6b114d5b89e78648dbae52a0aae276b673 | /Contests/Weekly Team Practice Contests/Week 22 - 13th Iran Internet ACM ICPC 2015 - Shiraz/D - AC.cpp | 1779f05d8bccd578645df1309f8eff03f04e589d | [] | no_license | ImnIrdst/ICPC-Practice-2015-TiZii | 7cde07617d8ebf90dc8a4baec4d9faec49f79d13 | 73bb0f84e7a003e154d685fa598002f8b9498878 | refs/heads/master | 2021-01-10T16:29:34.490848 | 2016-04-08T04:13:37 | 2016-04-08T04:13:37 | 55,749,815 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,595 | cpp | #include<iostream>
#include<algorithm>
#include<vector>
#include<functional>
#include<sstream>
#include<string>
#include<set>
#include<map>
using namespace std;
int main()
{
int tc;
cin >> tc;
while (tc--) {
int n, m;
cin >> n >> m;
vector<int> vote_hist(n + 1, 0);
map<int, vector<int> > v... | [
"imn.irdst@gmail.com"
] | imn.irdst@gmail.com |
9c71230bdbe1edb40a8a23715fb8959a9dd61b27 | b3c47795e8b6d95ae5521dcbbb920ab71851a92f | /Leetcode/Algorithm/cpp/02382-Maximum Segment Sum After Removals.cc | 7de56eb5be2e84e8d2c583ef65287f2075964e6a | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | Wizmann/ACM-ICPC | 6afecd0fd09918c53a2a84c4d22c244de0065710 | 7c30454c49485a794dcc4d1c09daf2f755f9ecc1 | refs/heads/master | 2023-07-15T02:46:21.372860 | 2023-07-09T15:30:27 | 2023-07-09T15:30:27 | 3,009,276 | 51 | 23 | null | null | null | null | UTF-8 | C++ | false | false | 1,634 | cc | typedef long long llint;
struct Segment {
int st, end;
llint value;
};
class Solution {
public:
vector<long long> maximumSegmentSum(vector<int>& nums_, vector<int>& removeQueries) {
multiset<llint> st;
map<int, Segment> mp;
vector<llint> nums;
for (auto num : nums_... | [
"noreply@github.com"
] | Wizmann.noreply@github.com |
29f282accb576680779b0e44c7832430e6edc6ad | c8b596ba5f07009b646665916a1084d985ef34bc | /mpi_inputfield.h | 2afa953c71acd8720281429a99d073510db2ee0b | [] | no_license | jmerten82/my_first | f5a3c416cf2731b75b0c0863555bcafab0d2eebf | daa7c077903cdcf83b27f89949ed68b250eade86 | refs/heads/master | 2021-06-13T21:28:56.557312 | 2015-03-10T11:24:10 | 2015-03-10T11:24:10 | 254,449,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,724 | h | #ifndef INPUTFIELD_H_
# define INPUTFIELD_H_
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <gsl/gsl_matrix.h>
#include <gsl/gsl_statistics.h>
#include <cmath>
#include <ctime>
#include "rw_fits.h"
#include "util.h"
#include "soph_math.h"
#include "options.h"
#include "maske... | [
"julian.merten@physics.ox.ac.uk"
] | julian.merten@physics.ox.ac.uk |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.