blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e74d89d3aaad261fcf8ee66564515400b82d4a92 | 222bc22cb0330b694d2c3b0f4b866d726fd29c72 | /src/nv38box/Math/WmlVector.h | 2c8cb09bd5c8bfb2d3203e12c10cbda738bd6470 | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | darwin/inferno | 02acd3d05ca4c092aa4006b028a843ac04b551b1 | e87017763abae0cfe09d47987f5f6ac37c4f073d | refs/heads/master | 2021-03-12T22:15:47.889580 | 2009-04-17T13:29:39 | 2009-04-17T13:29:39 | 178,477 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,216 | h | // Magic Software, Inc.
// http://www.magic-software.com
// http://www.wild-magic.com
// Copyright (c) 2003. All Rights Reserved
//
// The Wild Magic Library (WML) source code is supplied under the terms of
// the license agreement http://www.magic-software.com/License/WildMagic.pdf
// and may not be copied or ... | [
"antonin@hildebrand.cz"
] | antonin@hildebrand.cz |
613ae3f67d936e37a6088435fc787a2fc0402ca5 | 1bb6a0b3692b5468f7d148788298320ac3ba2a23 | /Practice/Club_Prac_4/a.cpp | 3052c8beeeecd678e18663ff26370438ca0faa62 | [] | no_license | ablondal/comp-prog | ee6ea5c0b32d7fbe0321a4b9919a9cec23fe85f6 | 725e369476993307874f9f5d6e2e7299918251a0 | refs/heads/master | 2022-10-08T05:40:39.206721 | 2022-09-25T22:29:49 | 2022-09-25T22:29:49 | 243,620,860 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 610 | cpp | #include <cstdio>
#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
#define max(a,b) ((a>b)?a:b)
#define min(a,b) ((a<b)?a:b)
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<pii> vpii;
const int MAXN = 1000;
vi G[MAXN];
int main... | [
"ari.blondal@gmail.com"
] | ari.blondal@gmail.com |
4ec766d83179fd86950899adbe63d9bcf558ec3f | 38c10c01007624cd2056884f25e0d6ab85442194 | /chrome/service/service_ipc_server.h | 4ad4b7282951e984cead91600415d2e9333dd17e | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 3,113 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_SERVICE_SERVICE_IPC_SERVER_H_
#define CHROME_SERVICE_SERVICE_IPC_SERVER_H_
#include <vector>
#include "base/memory/scoped_ptr.h"
#inc... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
f318045996fe62054de362554c38d068eedba877 | 2e6c469d50a58b57f2b9941939ca0974756c1308 | /cpp/sortcolors.cpp | 0cd8f4c58dfcea38cc35ef883c8ae5b619f44f05 | [] | no_license | john15518513/leetcode | 53ed07667f234a858291789ba0d60b46b5a11a51 | 43bf3c594a71535a3f4ee9154cc72344b92b0608 | refs/heads/master | 2021-01-13T04:29:47.247101 | 2018-10-08T02:12:56 | 2018-10-08T02:12:56 | 79,729,551 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 392 | cpp | class Solution {
public:
void sortColors(vector<int>& nums) {
int j = 0, k = 0;
for (int i = 0; i < nums.size(); i++) {
int v = nums[i];
nums[i] = 2;
if (v < 2) {
nums[k] = 1;
k++;
}
if (v == 0) {
... | [
"john15518513@gmail.com"
] | john15518513@gmail.com |
e15fb44ef501ecac5d07bd8a304bc53c108198c1 | 39414b87d2d89808c9cdebd3c33f7e27a65a8fe6 | /usr/include/c++/v1/array | 9019d72ba9dd252ff9f579136832606ff85f68d8 | [
"MIT",
"NCSA"
] | permissive | zorrobyte/usr7pro | 988c9048b77c8f40905a0349fbb1539a7a746b76 | df355563a69efa7541d852a3a6de557c04783698 | refs/heads/master | 2020-07-28T17:11:23.371633 | 2019-09-19T06:00:24 | 2019-09-19T06:00:24 | 209,472,749 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,143 | // -*- C++ -*-
//===---------------------------- array -----------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===-------------------------... | [
"zorrobyte@gmail.com"
] | zorrobyte@gmail.com | |
4c75659e54ab3d586d789d7aecb7fb609665b44d | 2358cfc47ad3663a19f3d4a905ef20d9f1f11c7d | /ClassicalCiphers/PlayFair.cpp | 3c50377a9a2daab999e2ce448990e18bf1f04c7e | [] | no_license | andrewle19/ClassicalCiphers | b6f441071a2332ca8f9d63eac717ee0af27f3265 | 0ba36c8800a002b9e8368544acb1d8831ce38168 | refs/heads/master | 2021-09-19T18:48:29.608607 | 2018-07-30T20:01:07 | 2018-07-30T20:01:07 | 121,587,950 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,744 | cpp | //
// PlayFair.cpp
// ClassicalCiphers
//
// Created by Andrew Le on 2/21/18.
// Copyright © 2018 Andrew Le. All rights reserved.
//
#include "PlayFair.h"
#include <iostream>
PlayFair::PlayFair(){
setcount = 0;
setsize = 25;
memset(playfairset, 0, 25);
}
// Sets the key with pkey
// checks if the ke... | [
"andrewle19@csu.fullerton.edu"
] | andrewle19@csu.fullerton.edu |
1a8a83c28b8ae59c8b81f32b97d304a9cd5ff760 | 8de313497e44dce303a75c827af2288f57a8c19e | /src/01.HW/arduino_normalization/arduino_normalization.ino | 3d56d098bade48b00055840d0cbd8b59454e5dc9 | [] | no_license | MyHappyHog/ProjectPrototype | 49d4c271a84c230cd39049d363a46ddba276f133 | 161741584cee306594680115e65acba2e9d0eae1 | refs/heads/master | 2021-01-17T10:09:56.355681 | 2016-06-02T03:42:23 | 2016-06-02T03:42:23 | 41,733,994 | 2 | 0 | null | 2016-05-28T00:33:38 | 2015-09-01T11:14:01 | Swift | UTF-8 | C++ | false | false | 7,848 | ino | /*
ESP8266 mDNS responder
This is an example of an HTTP server that is accessible
via http://hhh.local URL thanks to mDNS responder.
Instructions:
- Update WiFi SSID and password as necessary.
- Flash the sketch to the ESP8266 board
- Install host software:
- For Linux, install Avahi (http://avahi.or... | [
"137373@gmail.com"
] | 137373@gmail.com |
00c269334402e67f9bada47be1509fdfd0cb755c | b8376621d63394958a7e9535fc7741ac8b5c3bdc | /lib/lib_XT12/Source/Markup/XTPMarkupGrid.cpp | f826ace31d8e524f59290377bdeb06d904f8d059 | [] | no_license | 15831944/job_mobile | 4f1b9dad21cb7866a35a86d2d86e79b080fb8102 | ebdf33d006025a682e9f2dbb670b23d5e3acb285 | refs/heads/master | 2021-12-02T10:58:20.932641 | 2013-01-09T05:20:33 | 2013-01-09T05:20:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,172 | cpp | // XTPMarkupGrid.cpp: implementation of the CXTPMarkupGrid class.
//
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
// (c)1998-2008 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT ... | [
"whdnrfo@gmail.com"
] | whdnrfo@gmail.com |
43055637d4924372061cf1be205f934f5c7fc45d | 69b9cb379b4da73fa9f62ab4b51613c11c29bb6b | /submissions/abc116_c/main.cpp | 8b285f5e67e4dc6e342db0bb79fcd8e081bb4fd2 | [] | no_license | tatt61880/atcoder | 459163aa3dbbe7cea7352d84cbc5b1b4d9853360 | 923ec4d5d4ae5454bc6da2ac877946672ff807e7 | refs/heads/main | 2023-07-16T16:19:22.404571 | 2021-08-15T20:54:24 | 2021-08-15T20:54:24 | 118,358,608 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | //{{{
#include <bits/stdc++.h>
using namespace std;
#define repX(a,b,child,x,...) x
#define repN(a) repX a
#define rep(...) repN((__VA_ARGS__,rep3,rep2,loop))(__VA_ARGS__)
#define rrep(...) repN((__VA_ARGS__,rrep3,rrep2))(__VA_ARGS__)
#define loop(n) rep2(i_,n)
#define rep2(i,n) rep3(i,0,n)
#define rep3(i,begin,end) fo... | [
"tatt61880@gmail.com"
] | tatt61880@gmail.com |
b0767ef7abf8192175bcd4f008e5f28d956e52bc | 3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9 | /cpp/A/D/C/C/D/AADCCD.cpp | 3b0111ec50d9ab3523d863912351ca4dbbbb8600 | [] | no_license | devsisters/2021-NDC-ICECREAM | 7cd09fa2794cbab1ab4702362a37f6ab62638d9b | ac6548f443a75b86d9e9151ff9c1b17c792b2afd | refs/heads/master | 2023-03-19T06:29:03.216461 | 2021-03-10T02:53:14 | 2021-03-10T02:53:14 | 341,872,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 108 | cpp | #include "AADCCD.h"
namespace AADCCD {
std::string run() {
std::string out("AADCCD");
return out;
}
} | [
"nakhyun@devsisters.com"
] | nakhyun@devsisters.com |
c3a4066846f8de06382b30e33433326121452895 | f5c73e22fee30a83f09334f5a8ab70dedb950ef7 | /UnrealSamples/ChilliBluePrint/Plugins/ChilliConnect/Source/ChilliConnect/Classes/ChilliConnectSDK.h | 5bb6bcc843437b0e2f05d7252b5b7df25f752b00 | [
"MIT"
] | permissive | ErdinyoBarboza/Samples | 41e42561f1d9d58768e1421c91415d2e4be407b4 | 32b570f3ae6a87448bfb6dd41482a0b0a6a513be | refs/heads/master | 2021-07-21T16:34:43.612737 | 2017-10-30T13:58:34 | 2017-10-30T13:58:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,105 | h | #pragma once
#include "ChilliConnectPrivatePCH.h"
#include "OnlineBlueprintCallProxyBase.h"
#include "ChilliConnectObjects.h"
#include "ChilliConnectJson.h"
#include "ChilliConnectSDK.generated.h"
UCLASS(Blueprintable, BlueprintType)
class UChilliConnectSDK : public UOnlineBlueprintCallProxyBase
{
GENERATED_UCLASS_B... | [
"mike.herron@tag-games.com"
] | mike.herron@tag-games.com |
75d0b0451a90f3979b6f748d12fbec497376e3c8 | edfb435ee89eec4875d6405e2de7afac3b2bc648 | /tags/selenium-2.0-rc-1/third_party/gecko-2/linux/include/inIDOMView.h | f8f8da6a96869be80ef00eaf03fecfe08ac02d8d | [
"Apache-2.0"
] | permissive | Escobita/selenium | 6c1c78fcf0fb71604e7b07a3259517048e584037 | f4173df37a79ab6dd6ae3f1489ae0cd6cc7db6f1 | refs/heads/master | 2021-01-23T21:01:17.948880 | 2012-12-06T22:47:50 | 2012-12-06T22:47:50 | 8,271,631 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,989 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/rel-2.0-xr-lnx-bld/build/layout/inspector/public/inIDOMView.idl
*/
#ifndef __gen_inIDOMView_h__
#define __gen_inIDOMView_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#if... | [
"eran.mes@gmail.com@07704840-8298-11de-bf8c-fd130f914ac9"
] | eran.mes@gmail.com@07704840-8298-11de-bf8c-fd130f914ac9 |
b9a0e8f2bcccd26dd96ee79dc57ce60a53c1edfb | 634120df190b6262fccf699ac02538360fd9012d | /Develop/Server/GameServer/main/GQuestAddItemCollector.cpp | 0bc8958407e94c4a142aa9420ba5b0d7b959ec85 | [] | no_license | ktj007/Raiderz_Public | c906830cca5c644be384e68da205ee8abeb31369 | a71421614ef5711740d154c961cbb3ba2a03f266 | refs/heads/master | 2021-06-08T03:37:10.065320 | 2016-11-28T07:50:57 | 2016-11-28T07:50:57 | 74,959,309 | 6 | 4 | null | 2016-11-28T09:53:49 | 2016-11-28T09:53:49 | null | UTF-8 | C++ | false | false | 4,398 | cpp | #include "StdAfx.h"
#include "GQuestAddItemCollector.h"
#include "GQuestInfo.h"
#include "GItemAddRemoveInfo.h"
#include "GItemData.h"
#include "GGlobal.h"
#include "GItemManager.h"
#include "GEntityPlayer.h"
#include "GItemHolder.h"
#include "GDBTaskQuestAccept.h"
#include "AStlUtil.h"
void GQuestAddItemCollector::C... | [
"espause0703@gmail.com"
] | espause0703@gmail.com |
68a72e1fac3ad764ac84e43c89da08d1409159a6 | 9ee7b284c8fca593513f693faaa17c5e58c15ed3 | /code/scai/StarcraftAI/ProductionTask.cpp | 830c8247147e346c6b9a9bf79e1feb53d77929eb | [] | no_license | Pzoco/bw-ai-dat5 | fc305b95528adf13ad84ed9b1291fe43ad1cda5b | d70cc7373a8b4dc42239ae3139aca82c70cc8bf8 | refs/heads/master | 2021-01-22T23:58:32.103121 | 2012-01-12T01:25:46 | 2012-01-12T01:25:46 | 32,324,969 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 92 | cpp | #include "ProductionTask.h"
std::string ProductionTask::GetType()
{
return "empty";
} | [
"michaelchurch90@gmail.com@776575bb-2c05-bb74-d14f-5707e1cf37c2"
] | michaelchurch90@gmail.com@776575bb-2c05-bb74-d14f-5707e1cf37c2 |
edd56408057db3423ebe45ba602b8791b5198932 | 482891b0c9b2a023a447d88c5ae70a7ce198c7ac | /StRoot/StTriggerUtilities/L2Emulator/StL2TriggerSimu.h | a572a65c27ec9b09dbbe44ac3096efa40787cf45 | [
"MIT"
] | permissive | xiaohaijin/RHIC-STAR | 7aed3075035f4ceaba154718b0660c74c1355a82 | a305cb0a6ac15c8165bd8f0d074d7075d5e58752 | refs/heads/master | 2020-03-28T12:31:26.190991 | 2018-10-28T16:07:06 | 2018-10-28T16:07:06 | 148,306,863 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,971 | h | //
// $Id: StL2TriggerSimu.h,v 0.01
// very light intervace from L2Emulator to StTriggerSimuMaker
//
#ifndef STAR_StL2TriggerSimu
#define STAR_StL2TriggerSimu
#include <TObject.h>
#include <vector>
#include "StTriggerUtilities/StVirtualTriggerSimu.h"
class StGenericL2Emulator;
class StGenericL2Emulator2009;
class S... | [
"xiaohaijin@outlook.com"
] | xiaohaijin@outlook.com |
c858eaf383c8990e98685ee20bf5c9b836ffff4b | af6d1dd3574b1842a3d8ce9e92180dec47490a5c | /OrcArmy.cxx | 8f9cdbeac71a5fdd8734bccc785fb5da8ec61943 | [
"Apache-2.0"
] | permissive | vovythevov/FastMarching-Example | c224c2614b0d0f741ce3f99e02f149ebd02dedb0 | 9f6bb6a222d8c703930f857d4a92edaabd24c459 | refs/heads/master | 2020-06-04T10:11:52.759723 | 2012-08-13T14:49:52 | 2012-08-13T14:49:52 | 5,400,285 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,903 | cxx | #include <iostream>
#include <time.h>
#include <itkBinaryThresholdImageFilter.h>
#include <itkCastImageFilter.h>
#include <itkFastMarchingImageFilter.h>
#include <itkImage.h>
#include <itkImageFileReader.h>
#include <itkImageFileWriter.h>
#include <itkImageRegionConstIterator.h>
#include <itkImageRegionIterator.h>
in... | [
"johan.andruejol@kitware.com"
] | johan.andruejol@kitware.com |
b4fd220a6ceeebcb5f825b824adc4e385a694595 | 246a21b2a94ecd7a723f707b647c654f6d72543e | /dockwindows/dockwindow.cpp | 9fe83cde64da2fff4d696263e40eca0d86c1ec24 | [] | no_license | ChenPufeng/qt-demo | 8dcafd0f9cac6e9d8909cbf01ec1c6a6083ea17e | 94d232c2f3f1bcb1a471d46af50eb72ab7ccbd38 | refs/heads/main | 2023-02-26T12:53:26.694242 | 2021-02-02T12:43:12 | 2021-02-02T12:43:12 | 335,283,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,244 | cpp | #include "dockwindow.h"
#include<QTextEdit>
#include<QDockWidget>
DockWindow::DockWindow(QWidget *parent)
: QMainWindow(parent)
{
setWindowTitle(tr("Dock Windows"));
QTextEdit *te = new QTextEdit(this);
te->setText(tr("Main windows"));
te->setAlignment(Qt::AlignCenter);
setCentralWidget(te);
... | [
"realcpf@163.com"
] | realcpf@163.com |
80ca30186330a1203d76303103f82f443f4ac47b | 83ff3d8d93a4f001bb659ce9e39e4bb990aa8986 | /Basic Concept/staticStorage.cpp | 50ca3c15ae34b866ddb54fac4e03fb371bb9176d | [] | no_license | SwapnilMadaan/Subject-Wise-Programs | ae9d81a9e36c9be4b609b60c4e33f1c31370ea8c | 8b37304514f02d1042678b7ec8f2ef6d3e9bcd47 | refs/heads/master | 2020-05-19T02:24:56.523486 | 2019-05-03T13:53:18 | 2019-05-03T13:53:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | cpp | #include <iostream>
using namespace std ;
void function1();
void function2();
static int count = 10;
int main() {
while(count--) {
function1();
}
cout << "\n\n" ;
int count = 10;
while(count--) {
function2();
cout << " & Local count is " << count << endl;
}
return 0;
}
void ... | [
"noreply@github.com"
] | noreply@github.com |
161fffeea272cc4869061e3312e34dd62745af57 | 15e9982d86b780355012837c5c5373cd911fe133 | /01.Basic/30_SoundEx1/Classes/HelloWorldScene.h | ffb1176888cd1d3259cd7ff620667d35f0b74ae7 | [] | no_license | YeonjaeLee/Cocos2d-x | 6ad6aeb84cbfedcb59620f38b49ca07dc98258e1 | 49cfcd3c6c44c14aad6aaaa4b405521477ddc854 | refs/heads/master | 2021-01-19T20:02:37.075536 | 2017-05-24T08:11:50 | 2017-05-24T08:11:50 | 88,476,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 450 | h | #ifndef __HELLOWORLD_SCENE_H__
#define __HELLOWORLD_SCENE_H__
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
#pragma execution_character_set("utf-8")
#endif
#include "cocos2d.h"
class HelloWorld : public cocos2d::LayerColor
{
public:
static cocos2d::Scene* createScene();
virtual bool init();
CREATE_FUNC(HelloWo... | [
"yeonjae115@gmail.com"
] | yeonjae115@gmail.com |
69cf2d39d7752fcbffa2bdc2f317929e6a256762 | 8b1cedbca5f5a967e5c37c280f53dfdbff00ff19 | /cocos/170706/Example_FSM_1/Example_FSM_1/Example_FSM_1.cpp | 3f98776b19da67d1ce33ef393a95683095adcc66 | [] | no_license | kcwzzz/KCW | ef552641c77d1971ad4536d37a70eb9a59f4d4e6 | 34973e5fae0a4095418ac0bd99637ffa24f525be | refs/heads/master | 2020-12-03T05:11:38.828978 | 2017-09-29T08:10:59 | 2017-09-29T08:10:59 | 95,736,720 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,269 | cpp | // Example_FSM_1.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.
//
#include "stdafx.h"
#include <iostream>
using namespace std;
enum STATE
{
IDLE = 0, ATTACK = 1
};
class CUnit
{
private:
STATE mState = STATE::IDLE;
protected:
void DoIdle();
void DoAttack();
public:
void SetState(STATE tState);
void Execute();
};
/*
voi... | [
"kcwzzz@naver.com"
] | kcwzzz@naver.com |
22005bc480004457aec7f0f5050982652c45d8ee | 1556270cb4656477fb2f02c68d90f2a2c032aa5c | /137-Single-Number-II/solution.cpp | c19e74d7e36e4d3a4fd1a8a5943f4862f9130b6d | [] | no_license | ajlichuan/For_leetcode | 64835c402437a86870771a037d6d85c5a894b5e6 | 68c172138a4e32b00a7ba24035163eac85d54f0b | refs/heads/master | 2020-04-06T05:03:15.180847 | 2016-09-27T09:57:43 | 2016-09-27T09:57:43 | 57,279,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 248 | cpp | class Solution {
public:
int singleNumber(vector<int>& nums) {
int a = 0, b = 0;
for(auto i : nums)
{
b = ~a & (i ^ b);
a = ~b & (i ^ a);
}
return a ^ b;
}
}; | [
"ajlichuan@126.com"
] | ajlichuan@126.com |
e13222ffc936c5c6242bf438354159508fd4c2e1 | 9f3d0c4d6a88bd36a264ddac1de9a8ac2fe0e974 | /winrt/impl/Windows.UI.Composition.Scenes.2.h | e38aeeb356f27c27338bce317eb93884feeba460 | [
"MIT"
] | permissive | mthiesen/xbocontroller-winapi | 6ee4c7825b2dd266ae5251a6a7f537b1752a78f9 | b4a1e053476f200877bcfaeb564c59cd024a697b | refs/heads/master | 2021-01-06T19:27:59.055634 | 2020-02-20T20:11:08 | 2020-02-20T20:11:25 | 241,458,019 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,304 | h | // WARNING: Please don't edit this file. It was generated by C++/WinRT v2.3.4.5
#ifndef WINRT_Windows_UI_Composition_Scenes_2_H
#define WINRT_Windows_UI_Composition_Scenes_2_H
#include "winrt/impl/Windows.Foundation.1.h"
#include "winrt/impl/Windows.Foundation.Collections.1.h"
#include "winrt/impl/Windows.UI.Compositi... | [
"malte@kamalook.de"
] | malte@kamalook.de |
7431fe745af155b92509bf7916f0be66b78bc6a4 | abb56848c39baa7617107f4ee1f5a15305c5811a | /types/practicetype.cpp | c25c87bb3748c615081280db9cca2e8a59ee7528 | [] | no_license | nime88/gpro-race-calculator | 991b4dd6c5b53f43acd6839e468d212ed3ff1a4a | 2cace60748d112ebae31823f95460edbaa06a68f | refs/heads/master | 2020-05-16T23:26:49.338755 | 2015-07-05T10:31:08 | 2015-07-05T10:31:08 | 37,070,650 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | cpp | #include "practicetype.h"
PracticeType::PracticeType(): track_name(""), time(0), front_wing(0), rear_wing(0), engine(0),
brakes(0), gear(0), suspension(0), tyre_type(""), weather(""),
temperature(0), humidity(0), track_power(0), track_handling(0), track_acceleration(0),
track_downforce(""), track_suspensio... | [
"nimerib@hotmail.com"
] | nimerib@hotmail.com |
f8ecd8225f4ba51cf2d395869502caae4bf609c6 | bc7d06038df1275710de064999c5e0a2aa4f81a7 | /July/3 July/sortKSortedArray.cpp | 73b3aae044572dda26c0dc10717927fa395ff1e4 | [] | no_license | almas-ashruff/DSASolutions | 0da67313658239e2355a13bc14d6f3c7aad4478e | 649c536826c67fc0a0b658603b92463eb51e8d89 | refs/heads/main | 2023-07-20T00:54:00.888617 | 2021-08-12T14:26:55 | 2021-08-12T14:26:55 | 376,128,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,730 | cpp | #include <vector>
using namespace std;
// Sort an array that is K sorted - every element is at max k distance from its actual position
// We keep a window of current element and the next k elements.
// At every index, we fill the smallest element from that index.
// to get the smallest index in that window at optima... | [
"almasashruff@gmail.com"
] | almasashruff@gmail.com |
b1002cf54cbf053c7de0abe12626cc3e15948fb9 | 607e69f9e4440ef3ab9c33b7b6e85e95b5e982fb | /deps/museum/7.0.0/art/runtime/jit/jit.h | 9e81ad1aa78f986bc434e5649a6ad1335abe1259 | [
"Apache-2.0"
] | permissive | simpleton/profilo | 8bda2ebf057036a55efd4dea1564b1f114229d1a | 91ef4ba1a8316bad2b3080210316dfef4761e180 | refs/heads/master | 2023-03-12T13:34:27.037783 | 2018-04-24T22:45:58 | 2018-04-24T22:45:58 | 125,419,173 | 0 | 0 | Apache-2.0 | 2018-03-15T19:54:00 | 2018-03-15T19:54:00 | null | UTF-8 | C++ | false | false | 9,129 | h | /*
* Copyright 2014 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 applica... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
fe93c0b373fcc8beb0989f8c22168dde9015fb55 | 69731503543b6b0b823772a9d4a949b09f63ab47 | /mainwindow.h | b0b4b88ad96e2ae9f6adda512aefa1348fe6e732 | [] | no_license | 15831944/TrainManageSystem | 36df6ce8a3752cc4ae59e969baf4ee3a79e83577 | 5bfdb592d77f24e4560111f703086a99be3c4ee0 | refs/heads/master | 2023-03-22T04:22:56.703005 | 2017-09-11T13:05:31 | 2017-09-11T13:05:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,511 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QLineEdit>
#include <QComboBox>
#include <QDateEdit>
#include <QPushButton>
class TrainInfoSelect;
class UserInfoInsert;
class UserInfoSelect;
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
... | [
"YYC572652645@163.com"
] | YYC572652645@163.com |
5974332425506f3cf1b5b49275bed26d429d2458 | 3c8c5189fa408092a04aa24df0763b194a9c84d0 | /tcs/src/File.cpp | e5683e9c015cc7b1d7c1706637ac377a10198e3a | [] | no_license | zengweicheng666/DetuPro | 2970d70cbcd6cd9f5c2dbd55bc981313fc853d46 | bd76deaaabd3eee7e460d9895f2fa37c4bed1804 | refs/heads/master | 2022-07-28T22:36:28.849221 | 2020-05-21T13:31:14 | 2020-05-21T13:31:14 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,655 | cpp | #include "File.h"
#include "Error.h"
#ifndef _WIN32
#include <unistd.h>
#include <sys/uio.h>
#endif
#include <fcntl.h>
#include <sstream>
FileWriter::FileWriter()
{
m_fd = -1;
}
FileWriter::~FileWriter()
{
Close();
}
//open file writer, in truncate mode
int FileWriter::Open(std::string p)
{
int ret = ... | [
"1596072327@qq.com"
] | 1596072327@qq.com |
d5c7a6d5d4625eca8c21ac02f6eb024829a881c0 | aa7b77749aa91c04bd601349b3409ef43b467aff | /src/wnds_mgmt.cpp | d616993712e3ee819331a06a8608a5161426ea1e | [] | no_license | lukaskaz/animation-repository | 54aacadce421490e4eac86660ba96c7bdb0dc866 | f4968fe7ce97603a272809b3f3c2c099f1f515ae | refs/heads/master | 2020-03-07T19:30:37.105732 | 2018-04-01T21:34:29 | 2018-04-01T21:34:29 | 127,672,627 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 32,231 | cpp | /**
***************************************************************************************
* @file wnds_mgmt.cpp
* @author Łukasz Kaźmierczak
* @version V1.3
* @date 27/07/2013
* @brief This source file provides support for windows control operations
*********************************************... | [
"lukasz.kazmierczak.biz@o2.pl"
] | lukasz.kazmierczak.biz@o2.pl |
3446db9de11e8fd0e601b0e07c23b9862702bc85 | b10d3a9ea9e83126b7b68b2952404c292264b8d3 | /src/dfc/dfcRPGEngine.cpp | 24c36e9a0ac2abc2b6d4d254dec0eab296f5ef42 | [] | no_license | alainpetit21/dakiilib | ff8c9c7acf76bcdc359147ef9602d019ba3e4263 | a95206c9521b43d55fd46a26f2dea37a3ca9632f | refs/heads/master | 2020-03-21T08:12:58.635535 | 2018-11-24T17:52:58 | 2018-11-24T17:52:58 | 138,328,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,404 | cpp | #include "lib.h"
#include "libMacros.h"
#include "dfcRPGEngine.h"
#include "dfcRPGEngineEntities.h"
#include "dfcRPGEngineSpells.h"
#include "dfcRPGEngineItems.h"
CRPGSystem::CRPGSystem():
m_pArAllEntities(0),
m_pArAllSpells(0),
m_pArAllItems(0),
m_nMaxEntities(0),
m_nMaxSpells(0),
m_nMaxItems(0),
m_nCpt... | [
"alainpetit@hotmail.com"
] | alainpetit@hotmail.com |
a90c1fde5d1f8e74054fc1c1a2985f7e9b2319e6 | 88659e6ef9fcf3b46aa3a5f5e5ca45fdcf29ae48 | /compressors/null.hpp | f473de2ad61e261484ed132899bfc2b294ec90fd | [] | no_license | mgrech/minecraft-compression-benchmarks | 8513c1dd0bcae3b96da7e32039f94991e075c6da | 5155f5cf7f19e0112d8f4e89bc45eba31c0f908a | refs/heads/main | 2023-02-21T19:18:10.631952 | 2021-01-26T00:34:06 | 2021-01-26T00:34:06 | 329,059,386 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 420 | hpp | #pragma once
#include <cstddef>
#include <cstring>
#include <exception>
struct NullCompressor
{
std::string name() const
{
return "null";
}
std::size_t compress(void const* in, std::size_t inSize, void* out, std::size_t outSize)
{
if(outSize < inSize)
{
std::fprintf(stderr, "null compressor: not enough... | [
"me@mgrech.dev"
] | me@mgrech.dev |
c725fedd0add58c15fdd12a5228933ab456be382 | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/com/ole32/oleprx32/proxy/remunkps.hxx | 4b53982391a77c80e8d81eec6f21cc9036a5d368 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,928 | hxx | //+-------------------------------------------------------------------
//
// File: remunkps.hxx
//
// Contents: IRemoteUnnknown custom proxy/stub
//
// Classes: CRemUnknownFactory
// CRemUnknownSyncP
// CRemUnknownAsyncP
//
// History: 15-Dec-97 MattSmit Created
//
//-... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
4315d8bf0cf725925ac9462f1cb258de0e269956 | 7879c5c9c2f38a536f5ac9e372b5c8aa5253cd35 | /src/qt/optionsdialog.cpp | b6dab09cfcba5ebd64431ec94961ec3000718619 | [
"MIT"
] | permissive | CCPorg/MIC-MusicCoin-Ver-631-Original | a9f40aa49028f337bf66ed8d77692f4e16c0dc3b | e1388027b5cfe4f981e4e9935fa44e21e36b830e | refs/heads/master | 2021-01-22T04:48:16.502270 | 2014-01-28T23:52:38 | 2014-01-28T23:52:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,670 | cpp | #include "optionsdialog.h"
#include "ui_optionsdialog.h"
#include "bitcoinamountfield.h"
#include "bitcoinunits.h"
#include "monitoreddatamapper.h"
#include "netbase.h"
#include "optionsmodel.h"
#include "qvalidatedlineedit.h"
#include "qvaluecombobox.h"
#include <QCheckBox>
#include <QDir>
#include <QIntValidator>
#... | [
"coinz.stuff@gmail.com"
] | coinz.stuff@gmail.com |
b680a9888bef3cf746f3ec752350f9bf7a26eb8e | 771a5f9d99fdd2431b8883cee39cf82d5e2c9b59 | /SDK/BP_gmp_compass_wth_01_a_ItemDesc_classes.h | 54ca8130651b7cd48bf79fb8f7a1b7db00939c47 | [
"MIT"
] | permissive | zanzo420/Sea-Of-Thieves-SDK | 6305accd032cc95478ede67d28981e041c154dce | f56a0340eb33726c98fc53eb0678fa2d59aa8294 | refs/heads/master | 2023-03-25T22:25:21.800004 | 2021-03-20T00:51:04 | 2021-03-20T00:51:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 847 | h | #pragma once
// Name: SeaOfThieves, Version: 2.0.23
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//----------------------------------------------------... | [
"40242723+alxalx14@users.noreply.github.com"
] | 40242723+alxalx14@users.noreply.github.com |
6ac101ada496baa918b025b8396e2ed616c25be2 | c1720c81612dbd512dce413618d3cd246faa0a74 | /DEM/Src/L2/Scripting/EntityScriptObject.cpp | 9c61fbac6f7ebaab974b9da188ee8f27cfa732da | [
"MIT"
] | permissive | moltenguy1/deusexmachina | 307ba62a863034437cd77a6599c191ffe8ae953c | 134f4ca4087fff791ec30562cb250ccd50b69ee1 | refs/heads/master | 2021-01-23T21:35:42.122378 | 2012-10-03T23:33:16 | 2012-10-03T23:33:16 | 35,931,317 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,197 | cpp | #include "EntityScriptObject.h"
#include <Game/Entity.h>
#include <Events/Subscription.h>
#include <Scripting/ScriptServer.h>
#include <Data/Params.h>
#include <DB/DBServer.h>
extern "C"
{
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
};
namespace Scripting
{
ImplementRTTI(Scripting::... | [
"niello11@gmail.com@01a7efd1-0ae0-fa29-c58a-2c4763e9e309"
] | niello11@gmail.com@01a7efd1-0ae0-fa29-c58a-2c4763e9e309 |
693ee742aa3b542096a1e0b4ccb530f536bfdcab | d09092dbe69c66e916d8dd76d677bc20776806fe | /.libs/puno_automatic_generated/inc/types/com/sun/star/util/XCloseable.hpp | d273badc05efd974de5a3478f203569fa4a381a7 | [] | no_license | GXhua/puno | 026859fcbc7a509aa34ee857a3e64e99a4568020 | e2f8e7d645efbde5132b588678a04f70f1ae2e00 | refs/heads/master | 2020-03-22T07:35:46.570037 | 2018-07-11T02:19:26 | 2018-07-11T02:19:26 | 139,710,567 | 0 | 0 | null | 2018-07-04T11:03:58 | 2018-07-04T11:03:58 | null | UTF-8 | C++ | false | false | 1,470 | hpp | #ifndef INCLUDED_COM_SUN_STAR_UTIL_XCLOSEABLE_HPP
#define INCLUDED_COM_SUN_STAR_UTIL_XCLOSEABLE_HPP
#include "sal/config.h"
#include "com/sun/star/util/XCloseable.hdl"
#include "com/sun/star/util/XCloseBroadcaster.hpp"
#include "com/sun/star/uno/Reference.hxx"
#include "com/sun/star/uno/Type.hxx"
#include "cppu/unot... | [
"guoxinhua@10.10.12.142"
] | guoxinhua@10.10.12.142 |
dd3e37076be6a6dc50ccf9f19b50e509b55a92fe | 1b046361dc73a23690b6091970cccf7cbede9e5f | /Linked List/SinglyLinkedList.cpp | bf2e08d0dbcfdc5565555bb0e356562274382dea | [] | no_license | badxcode/ds-algo | 37745ae7b3753bd0012d9a6c62ec1c14b9660279 | ef1f12097d5aa78215b6ae950d1b7a8069f7ade7 | refs/heads/main | 2023-07-26T07:40:27.619777 | 2021-09-06T10:08:53 | 2021-09-06T10:08:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,451 | cpp | #include<iostream>
using namespace std;
struct node { // Creating a node
int data; // variable to store the data
node* next; // Pointer which points to the next node in memory
};
struct node* head; // head pointer keeps the first node address
struct node* getNewNode(int data) { // make a new node with given ... | [
"jahidimran21cde@gmail.com"
] | jahidimran21cde@gmail.com |
8bcd65f55179d5b0589048067089232b3f3466da | 6184ad39cbac78ae3d6c1d7e96672ab4e1bc3a2b | /comdef.h | 1855a5caacf5f19f6985c44e6a4c0075e1d20a90 | [] | no_license | 021xcy/ExcelProcess | 5e7e9f69bcb320910c4a53e10c8b6e3899d0b862 | b0c3cf966ed745749ca32a6cd9f0f6ac3a7c61ec | refs/heads/master | 2023-04-03T22:07:38.815630 | 2017-04-22T07:07:06 | 2017-04-22T07:07:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,046 | h | /***
* comdef.h - Native C++ compiler COM support - main definitions header
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
****/
#if _MSC_VER > 1000
#pragma once
#endif
#if !defined(_INC_COMDEF)
#define _INC_COMDEF
#if !defined(RC_INVOKED)
#ifndef __cplusplus
#error Native Compiler support only ava... | [
"xhc19950616@126.com"
] | xhc19950616@126.com |
fb9765383e4397c6e212a351438caa5941969616 | 5ee1dd8c8ab03c683b8a04be966fc774b21181b8 | /GuruxDLMSServerExample/include/GXDLMSBase.h | 94f0e8061336f29eda5e7e43b5482ae997edf142 | [] | no_license | bfabio/Gurux.DLMS.cpp | 56d6c5b351e5d7eb6cfaf10f77617d43408702f4 | 5ba8ca054678599956843be87e539eae62129bb4 | refs/heads/master | 2020-04-05T02:05:59.397706 | 2016-07-07T12:48:18 | 2016-07-07T12:48:18 | 62,805,983 | 0 | 0 | null | 2016-07-07T12:43:40 | 2016-07-07T12:43:39 | null | UTF-8 | C++ | false | false | 3,356 | h | //
// --------------------------------------------------------------------------
// Gurux Ltd
//
//
//
// Filename: $HeadURL$
//
// Version: $Revision$,
// $Date$
// $Author$
//
// Copyright (c) Gurux Ltd
//
//------------------------------------------------------------... | [
"mikko.kurunsaari@gurux.fi"
] | mikko.kurunsaari@gurux.fi |
1951e0131a0bbaf5cfd0e2d0247ffe0173cbffa2 | 07295875efcc2738a052144d8ba35a22ad403609 | /Open Neural Networks/opennn/tests/mathematical_model_tests/mock_ordinary_differential_equations.h | 3ed08cb16d4faaa011a5cc7b648e095b35d74227 | [] | no_license | solariun/Old-ANNs | 8efb3cda109413da92b19012a1fefb3b6b55b52f | 2678fe9b214995cd111f7fea75bc8fcfcf6a5608 | refs/heads/master | 2023-07-07T17:28:19.221544 | 2021-08-26T03:00:37 | 2021-08-26T03:00:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,119 | h | /****************************************************************************************************************/
/* */
/* OpenNN: Open Neural Networks Library ... | [
"thomascherickal@gmail.com"
] | thomascherickal@gmail.com |
61102b44e3a52a3054207397a875bab75704a375 | 80a53fe88d258b48fcf94f4f1b16edcbdb091e1f | /TP2018/TP2018/T3/Z7/main.cpp | 47b8af5fd9282878a353af636d8d27de0a5cd58e | [] | no_license | MedinaKapo/Programming-tecniques | 1170d524bc96600c8bd2ab366bd7778ff3b79396 | 719f56eeeaf8d47b63f52d5e76297c895d7efe78 | refs/heads/main | 2023-05-06T14:55:40.015843 | 2021-06-01T08:58:03 | 2021-06-01T08:58:03 | 372,763,866 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,952 | cpp | //TP 2017/2018: Tutorijal 3, Zadatak 7
#include <iostream>
#include<vector>
#include<stdexcept>
#include<iomanip>
using namespace std;
int BrojCifara(int n)
{
int brojac=0;
if(n<0) {
n*=-1;
brojac=1;
}
while(n!=0) {
brojac++;
n/=10;
}
return brojac;
}
int Najveca... | [
"mkapo2@etf.unsa.ba"
] | mkapo2@etf.unsa.ba |
283d6cd0d3c042da71d463ec667fd9a879266940 | f3dd4cc9bfa49c0f4439ba4beb3fc38daa05b9b3 | /src/render/textureManager.cxx | 5bc66c8c34b5ef83ff0a22dbc4bc3c5028fbc05f | [] | no_license | stuart-ashley/bijouengine | 10e94b2e99373a0e21ecd9904e71c88cd88ce5c5 | 889a991bf56b732e8c33c142584e3c367a65938c | refs/heads/master | 2021-01-19T21:25:33.866734 | 2015-08-22T15:47:42 | 2015-08-22T15:47:42 | 41,087,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,510 | cxx | #include "textureManager.h"
#include "imageFile.h"
#include "../core/config.h"
#include "../core/loadManager.h"
#include "../core/nameToIdMap.h"
#include <algorithm>
#include <mutex>
#include <unordered_map>
#include <unordered_set>
#include <cassert>
#include <GL/glew.h>
using namespace render;
namespace {
str... | [
"stuart-ashley@users.noreply.github.com"
] | stuart-ashley@users.noreply.github.com |
d7a3d65ad110b77ace0f156787ab256551090001 | e9ade5ea33cf3382f8ab3ad980e7f6d8cb76faf8 | /solved/CompetitivePrograming/ABC-C/otoshidama.cpp | 3f806f158a513c197b994807155f856285f0273c | [] | no_license | Creamy1137689/kyopro | 75bc3f92edb7bff2cbf27dc79d384b422a0a4702 | dcacbf27defe840ea7998e06a5f3fb78718e7d53 | refs/heads/master | 2023-05-10T19:28:56.447493 | 2021-06-03T12:54:11 | 2021-06-03T12:54:11 | 266,143,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | cpp | #include <iostream>
using namespace std;
int main(){
int n, y, a = 0, b = 0, c = 0;
cin >> n >> y;
for(; a+b+c <= n; ++a){
b = 0;
for(; a+b+c <= n; ++b){
for(; a+b+c <= n; ++c){
//cout << a << ' ' << b << ' ' << c << endl;
if(a*10000+... | [
"exception031noexist@gmail.com"
] | exception031noexist@gmail.com |
41e4c0a00ffd096230dddb12a57671fa184159bf | 57e0b85a9ce14f0b6138471768adf4f2daf76fa6 | /poj/accepted/1006/5300508_WA.cc | 16dca66c6f4d64b5865c4b5a0f14c4dc6a8b55d0 | [
"Apache-2.0"
] | permissive | jhyoocoder/denmark | b08d77935740020722705a7451921c9fa359b25a | 9a393c60f4c8fdcdba6601e51c4a0c3fc7cf56f6 | refs/heads/master | 2016-08-10T17:31:29.825893 | 2015-11-30T09:46:13 | 2015-11-30T09:46:13 | 46,951,205 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 858 | cc | #include <stdio.h>
#include <stdlib.h>
#define MAX 30000
#define PMAX 924
#define EMAX 759
#define IMAX 644
int days[MAX];
int p, e, i, d;
int answer;
void init() {
int k;
for(k = 0; k < MAX; k++) days[k] = 0;
days[p]++;
days[e]++;
days[i]++;
}
void proc() {
int k, mday;
mday = p;... | [
"jhyoocoder@gmail.com"
] | jhyoocoder@gmail.com |
4d873dd95f214d81e672f64e5e30ba4ecd9aed41 | 18da01143c6a560df34884eeb5be6e4a7c744e24 | /I_GGX64/8/8对2/1炮2马5兵对1车1马.cpp | 5b4d4b96b9076c61651275292679ac38fdc6ea85 | [] | no_license | alanthinker/NewGG | 974832e6738b1cd0df01ab2c5b94489a4ccf53e9 | ead7b553954336b76a476922005cc578f68cc6f1 | refs/heads/master | 2022-07-05T02:46:18.030741 | 2020-05-16T14:03:36 | 2020-05-16T14:03:36 | 264,444,924 | 0 | 0 | null | 2020-05-16T13:37:04 | 2020-05-16T13:37:04 | null | WINDOWS-1252 | C++ | false | false | 539 | cpp | #ifndef END_my_m_MT_R_1pao2ma5pawn_B_1che1ma
#define END_my_m_MT_R_1pao2ma5pawn_B_1che1ma
#include "..\\..\\chess.h"
#include "..\\..\\preGen.h"
#include "..\\..\\endgame\mat.h"
#include "1ÅÚ2Âí5±ø¶Ô1³µ1Âí.cpp"
#include "..\\..\\white.h"
#else
#include "..\\..\\black.h"
#endif
void my_m_MT_R_1pao2ma5pawn_B_1che1ma... | [
"keersun@qq.com"
] | keersun@qq.com |
b79a2ec49786a37ae813da2fde100ef12afeb1d5 | adc45392939a52bb3133b8e7055efa00d399fbd6 | /lab2/node.h | b9cf06d6c17fe44b6add2ad5cee0e4da8f732706 | [] | no_license | YanzheL/hit-compiler-lab | 9aa6dfc5f26fddfebc3bfcd04b4c1a2570b9c2aa | 7bc47d8829e5882b3eac061de15584c0e4f0fe0b | refs/heads/master | 2020-05-24T06:56:14.344666 | 2020-05-17T17:54:46 | 2020-05-17T17:54:46 | 187,149,599 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 989 | h | // =======================================================================
// Copyright (c) 2016-2020 by LI YANZHE. All rights reserved.
// Author: LI YANZHE <lee.yanzhe@yanzhe.org>
// Created by LI YANZHE on 4/14/19.
// =======================================================================
#ifndef LAB2_NODE_H
#define... | [
"lee.yanzhe@yanzhe.org"
] | lee.yanzhe@yanzhe.org |
696b4a7943ec950bcd3244bb44894ff1dc6663b3 | da85771ba486585d3808e3cc5a4d8bef0c76e5fc | /tensorflow/lite/nnapi/NeuralNetworksShim.cc | c063525caee380be33ec2a0cbb295ade1d39ea57 | [
"Apache-2.0"
] | permissive | baibhavtripathi/tensorflow | a557598a46e62c5fd9da81fcf0570faaf4a569bb | 29bc2e98eaf1dd730574886ffe1b317e982323d4 | refs/heads/master | 2020-04-14T14:36:49.231132 | 2019-01-02T23:47:20 | 2019-01-02T23:52:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,876 | cc | /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
f2dfecdea4f2d1ef40561f6ce5e19d15f9ae2d86 | b3439873c106d69b6ae8110c36bcd77264e8c5a7 | /server/Server/Packets/CGStallItemPriceHandler.cpp | a3de13ccec052a032737221fefeec901be81171d | [] | no_license | cnsuhao/web-pap | b41356411dc8dad0e42a11e62a27a1b4336d91e2 | 7c9b1f49d9ba8d8e40f8fddae829c2e414ccfeca | refs/heads/master | 2021-05-28T01:01:18.122567 | 2013-11-19T06:49:41 | 2013-11-19T06:49:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,912 | cpp | #include "stdafx.h"
/*
客户端改变物品价格
*/
#include "CGStallItemPrice.h"
#include "GamePlayer.h"
#include "Obj_Human.h"
#include "Scene.h"
#include "Log.h"
#include "ItemOperator.h"
#include "GCStallItemPrice.h"
UINT CGStallItemPriceHandler::Execute( CGStallItemPrice* pPacket, Player* pPlayer )
{
__ENTER_FUNCTION
... | [
"viticm@126.com"
] | viticm@126.com |
259260529fa785db80286f27b2b31eaced211eef | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/EvalResults180628-Eta-W/79.8/p_rgh | a489ceece28f348c4840daa2c10aa2478390367c | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196,030 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
... | [
"abenaz15@etudiant.mines-nantes.fr"
] | abenaz15@etudiant.mines-nantes.fr | |
1d149fc498f7b628973ef2f7b59ad80c433cebe9 | fdbfbcf4d6a0ef6f3c1b600e7b8037eed0f03f9e | /geometry/render_gltf_client/internal_render_engine_gltf_client.cc | 076785940752cc1665add9029b8b1fe5b11b88c2 | [
"BSD-3-Clause"
] | permissive | RobotLocomotion/drake | 4529c397f8424145623dd70665531b5e246749a0 | 3905758e8e99b0f2332461b1cb630907245e0572 | refs/heads/master | 2023-08-30T21:45:12.782437 | 2023-08-30T15:59:07 | 2023-08-30T15:59:07 | 16,256,144 | 2,904 | 1,270 | NOASSERTION | 2023-09-14T20:51:30 | 2014-01-26T16:11:05 | C++ | UTF-8 | C++ | false | false | 26,902 | cc | #include "drake/geometry/render_gltf_client/internal_render_engine_gltf_client.h"
#include <algorithm>
#include <atomic>
#include <cstdio>
#include <filesystem>
#include <map>
#include <set>
#include <string_view>
#include <utility>
// To ease build system upkeep, we annotate VTK includes with their deps.
#include <v... | [
"noreply@github.com"
] | noreply@github.com |
0bb2024fc47df672bbc477443844057d3d34d8e2 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_old_log_982.cpp | 57bf42462cf221d15d19a333780a92aab45ce73a | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | cpp | fputs(
" (HTTP) Sends the specified data in a POST request\n"
" to the HTTP server, in a way that can emulate as if\n"
" a user has filled in a HTML form and pressed the\n"
" submit button. Note that the data is sent exactly\n"
" as specified with ... | [
"993273596@qq.com"
] | 993273596@qq.com |
869d6d23e4ac2a905f831c0239dabfa86a5e1c3c | c935886a521f76fe936b3323f16be43700b71fe4 | /src/proto/packet.pb.cc | 577a86f8d2b136c33c74fd6639ff41df5cbc8430 | [] | no_license | oliverxyy/gem5-source-code-learning | 4dc9c81d08ff29b557570aeb72654f4d8a8fe47e | 6438cf07bd86942d0ed118035d398de254dac412 | refs/heads/master | 2020-04-06T06:56:18.547114 | 2016-09-06T07:22:49 | 2016-09-06T07:22:49 | 65,285,514 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 26,505 | cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: packet.proto
#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "packet.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/once.h>
#include <google/protobuf/io/coded_stream.h>
#include ... | [
"oliverxyy@gmail.com"
] | oliverxyy@gmail.com |
6244d30991b0ec269e91b4fcd903faaef0cc2845 | 2cdb9eed5adfad5f236c300b80ecc4cc3252addb | /src/Point.cpp | 7093263d175b9e140c6bfde035bc0328c2cccb48 | [] | no_license | r2p2/Hyper-Cube | a99f1aab8aa279c9dabd76cf4e85415e4c478170 | adc5ff18a509a127eab4de76e3608eae9189de07 | refs/heads/master | 2016-08-07T08:04:42.038917 | 2012-10-28T12:34:25 | 2012-10-28T12:34:25 | 593,188 | 0 | 0 | null | 2012-11-26T21:24:40 | 2010-04-03T15:40:48 | C++ | UTF-8 | C++ | false | false | 1,307 | cpp | /*
* Point.cpp
*
* Created on: 01.04.2010
* Author: r2p2
*/
#include "Point.h"
#include <cmath>
#include <curses.h>
Point::Point(double x, double y, double z)
:Object3D()
,x(x)
,y(y)
,z(z)
{
}
Point::~Point()
{
}
void Point::rotate_x(double angle)
{
double rad = angle/180*3.1415926535;
double _y = ... | [
"robert-peters@gmx.net"
] | robert-peters@gmx.net |
60551f9c9f6648acb8bd2f4085ef9d9402e5fdff | 02a93faec6e79bf1d0666dddd85651790babc40c | /Lista 07.2 Ok/Questão 04.cpp | 1b1e3c377dd722e49384fb6e6382ab734d1d3aa2 | [] | no_license | Sly143/Programacao-I | 851ef1a392992917ce7d8517693dd38b1f83b146 | 1858074de0946d0a843064e819970eaaf94f2e9c | refs/heads/master | 2020-07-14T21:55:30.348227 | 2019-08-30T15:48:30 | 2019-08-30T15:48:30 | 205,411,615 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 399 | cpp | #include <stdio.h>
#include <stdlib.h>
#define X 8
int main(){
int a[X][X];
int d=1,j;
for(int i=0;i<X;i++){
for(j=0;j<X;j++){
printf("Valor?\n");
scanf("%d",&a[i][j]);
if(j>i){
a[i][j]=0;
}
}
}
printf("Matriz final:\n");
for(int i=0;i<X;i++){
for(int j=0;j<X;j++){
... | [
"noreply@github.com"
] | noreply@github.com |
b9b4b83870d45b8444ee7d62974267651c186d81 | 61a8835df7c7b480018f84bb5dbc876a1ba42ae2 | /UVA_Solved/UVA11060_Beverage.cpp | 5733e448ced84d81ad810f9b15bac6e6b0a578f9 | [] | no_license | ashikab/CppCode | f6f0c04782159eefc4894cbcb3e8584b1996049d | 0489d9e61e2e5ec4bc367dfd512a74cdd9d6fcc9 | refs/heads/master | 2016-08-04T16:14:47.997966 | 2015-08-05T05:19:38 | 2015-08-05T05:19:38 | 38,256,214 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,868 | cpp | //
//#include <iostream>
//#include<string>
//#include <stdio.h>
//#include<vector>
//#include <map>
//#define ZERO 0
//#define NO 0
//#define YES 1
//#define MAX 100 //maximum node
//using namespace std;
//
//int main()
//{
// int beverages, caseNumber = 1;
// while(scanf("%d",&beverages) == 1)
// {
// int M, index =... | [
"ashik.bhuiyan@yahoo.com"
] | ashik.bhuiyan@yahoo.com |
a1644a5723a0a29675e767181258bb509e9f7c4e | bf8fd2eb2530c98d24a30af1074afd1a58a165d9 | /Source/DemoScene/Main.cpp | 714d665056fb69ed94af40cf6a0180a51eca9329 | [
"MIT"
] | permissive | ookumaneko/PC-Psp-Cross-Platform-Demoscene | 1b4a947c82b4efa381f3aba809d20a97e3d285b1 | 0c192f9ecf5a4fd9db3c9a2c9998b365bf480c1e | refs/heads/master | 2020-05-30T20:55:08.570718 | 2015-04-07T11:43:40 | 2015-04-07T11:43:40 | 33,538,146 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,066 | cpp | #include "Vector3.h"
#include "MyDemo.h"
static MyDemo* demo = 0;
#ifdef _PSP_VER
#include <psptypes.h>
#include <kernel.h>
#include <displaysvc.h>
#include <ctrlsvc.h>
#include <libgu.h>
#include <libgum.h>
#include <libvfpu.h>
SCE_MODULE_INFO( Fireworks, 0, 1, 1 );
//use VFPU on the main thread
int sce_user_mai... | [
"shanageek@gmail.com"
] | shanageek@gmail.com |
91b36f50d13bc9b11bab99b10f9e96a16fd895ca | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/wget/hunk_2547.cpp | 2cfe7ba43c26126c72bf566266496e32e75c9693 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,546 | cpp | {
f = start;
while (f)
- {
- if (f->type != FT_DIRECTORY && !acceptable (f->name))
- {
- logprintf (LOG_VERBOSE, _("Rejecting `%s'.\n"),
- escnonprint (f->name));
- f = delelement (f, &start);
- }
- else
- f = f->next;
- }
+ {
+ if (f->type != FT_DIRECTO... | [
"993273596@qq.com"
] | 993273596@qq.com |
9cb001b7045608b81dc1b4ec21a476faa674da68 | 3fa73b42bbac046eece9ce395eefd0a6d0c02779 | /Random/conquer/src/citizen.hpp | a8a67ba9745da30894e164b4f47878dc9b1fb997 | [] | no_license | edwinkepler/beats-and-pieces | 6589387e881a1ac38fb908d5256bcf9e03b0e9e1 | 1649e569f51901b74f7f49e7e3288ef84b8879a8 | refs/heads/master | 2021-01-15T10:58:09.156069 | 2018-07-23T17:22:00 | 2018-07-23T17:22:00 | 99,605,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | hpp | #ifndef CITIZEN_HPP
#define CITIZEN_HPP
#include <string>
class Citizen {
public:
Citizen(char, std::string);
Citizen(char, std::string, bool);
~Citizen();
int str();
bool sex();
int fertility();
std::string name();
char race();
bool dead();
bool plague_carrier();
int age(... | [
"edwinkepler@protonmail.com"
] | edwinkepler@protonmail.com |
f35c4c4776bc316186276f53c5bb20ba5ca5e790 | 73e7c20803be5d8ae467af1feba8a4a7fe219f4b | /Modules/IO/XML/src/itkStringTools.cxx | 44df55a6ebd408649282c3979cdfbe598a43e038 | [
"LicenseRef-scancode-other-permissive",
"SMLNJ",
"BSD-3-Clause",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-free-unknown",
"BSD-4.3TAHOE",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-proprietary-license",
"LicenseRef-scancode-unknown-license-reference",
"IJG",
... | permissive | CIBC-Internal/itk | deaa8aabe3995f3465ec70a46805bd333967ed5b | 6f7b1014a73857115d6da738583492008bea8205 | refs/heads/master | 2021-01-10T18:48:58.502855 | 2018-01-26T21:25:51 | 2018-01-26T21:25:51 | 31,582,564 | 0 | 2 | Apache-2.0 | 2018-05-21T07:59:53 | 2015-03-03T06:12:12 | C++ | UTF-8 | C++ | false | false | 7,203 | cxx | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* 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
*
* h... | [
"ayla@sci.utah.edu"
] | ayla@sci.utah.edu |
96a6433667ba75d74b4c37455db4f983ea44980f | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir12766/dir12767/dir13029/dir15097/dir15260/file18830.cpp | d5620298cdcc6901960200d29b059d373e373822 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file18830
#error "macro file18830 must be defined"
#endif
static const char* file18830String = "file18830"; | [
"tgeng@google.com"
] | tgeng@google.com |
8ca32e60ada622671248febac96e9c8db0874e7c | 65e1d91be7962d4514a1ef8c8620907d168a01ca | /include/slam6d/scan_io_oct.h | c167f206acb5030088cff77ff49df19a658d3f92 | [] | no_license | daviddoria/VTKHoughPlanes | 83ba22510f0ae645e3dbfd6d48c23ddd4a4710e0 | d06a3098e06a546aacd260d8aa4754d7b5ef40f6 | refs/heads/master | 2016-09-11T02:34:26.180470 | 2012-05-03T17:51:10 | 2012-05-03T17:51:10 | 1,684,789 | 35 | 21 | null | null | null | null | UTF-8 | C++ | false | false | 788 | h | /**
* @file
* @brief IO of a 3D scan in oct-file format
* @author Jan Elsberg. Automation Group, Jacobs University Bremen gGmbH, Germany.
*/
#ifndef __SCAN_IO_OCT_H__
#define __SCAN_IO_OCT_H__
#include <string>
using std::string;
#include <vector>
using std::vector;
#include "scan_io.h"
/**
* @brief 3D scan l... | [
"daviddoria@gmail.com"
] | daviddoria@gmail.com |
859dee9a7c7a51e4fec2002194a38f87ed626b7b | 7534b54a007dc0aeb997f6e5c4e5455b7be31eae | /SPOJ/7489.cpp | 6b8b37c376101098e7b00c08b5d7228f11ecc650 | [] | no_license | rishirajsinghjhelumi/Coding-Templates | 7708023c990dbaedd4e07fcfc5964a6632b60cbf | 8085bbf343e99daa27af392923c81a266a36fe6d | refs/heads/master | 2021-01-10T18:59:50.830519 | 2013-08-16T13:40:23 | 2013-08-16T13:40:23 | 11,998,810 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,358 | cpp | #include <stdio.h>
#include <math.h>
#include <time.h>
#include <string.h>
#include <iostream>
#include <fstream>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <map>
#pragma comment(linker, "/STACK:16777216")
using namespace std;
typedef vector<int> VI;
typedef pair<int,int> PII;
#if... | [
"rishirajsingh.jhelumi@students.iiit.ac.in"
] | rishirajsingh.jhelumi@students.iiit.ac.in |
1e0943cd1b56294c44c0ff1f53f6fb45528c516c | 9bb74614947e4f4e407b88908e45dd6d9b1e69ab | /otsystem.h | 278f85b4e379041ed719f5cb9a5bea9a3607efb8 | [] | no_license | Ayato96/darkkonia | 103cbba9babf0a88000ad8e50660569f70900c47 | 6082b24536691e52708e030d19fe9f9c0b54f8dc | refs/heads/master | 2020-04-18T19:30:39.182942 | 2010-02-13T18:52:24 | 2010-02-13T18:52:24 | 167,713,532 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,676 | h | ////////////////////////////////////////////////////////////////////////
// OpenTibia - an opensource roleplaying game
////////////////////////////////////////////////////////////////////////
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License ... | [
"MartyX@fa47c1b4-18cb-11df-85bb-b9a83fee2cb1"
] | MartyX@fa47c1b4-18cb-11df-85bb-b9a83fee2cb1 |
61483fb331698f87b5d8e04f662fca2b937e0fa5 | 1c83aef38de4e27f54d4664886a431b4fd2caea3 | /Editor/TextureViewer.h | 1e1f55ad86ba10fea8895937e3bc83cb5a30a41c | [] | no_license | quinsmpang/StormBrewerEngine | 7a84494debe415c9216586ccfb7d1faf5e0e016f | 73f0f3874874909fdf97977737133f5996668410 | refs/heads/master | 2021-06-21T05:42:34.051588 | 2017-08-09T08:51:42 | 2017-08-09T08:51:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,257 | h | #pragma once
#include <QOpenGLWidget>
#include "Engine/Asset/TextureAsset.h"
#include "Engine/Rendering/ShaderProgram.h"
#include "Engine/Rendering/VertexBuffer.h"
#include "Engine/Rendering/VertexBufferBuilder.h"
#include "Engine/Rendering/VertexArray.h"
#include "Engine/Rendering/RenderState.h"
#include "Engine/Ren... | [
"nick.weihs@gmail.com"
] | nick.weihs@gmail.com |
8a1a3a9bf6118afeec000cc653258d3f0c72ff06 | 46a20304a069550f71e33f02ececdef2e558200b | /uebung1/aufgabe2/aufgabe2.cpp | 2fc40342956238149acb8dffe6a694da97a24d9b | [] | no_license | lmayerhofer/ILV-Praktische-Informatik | 58508028498a8750b17a1ea81d2ac4423d51e28e | e76596dc112add6fba3f6ef8e2fb6405882deed5 | refs/heads/master | 2021-01-22T11:38:15.977720 | 2013-01-24T09:52:14 | 2013-01-24T09:52:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 906 | cpp | /*
* Aufgabe 1_1 - Testprogramm
* Lukas Mayerhofer
* 27.10.12
*/
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include "heap.cpp"
int main() {
std::cout << "\nBEISPIEL 2:\n";
std::cout << "\nSortierter Heap:";
std::cout << "\n======================================================================... | [
"lmayerhofer.mmt-m2012@fh-salzburg.ac.at"
] | lmayerhofer.mmt-m2012@fh-salzburg.ac.at |
682ad5ad224d65376ab4ea4cbd8765d9a5c08c8f | 7c5d7fb6a64df1a118a64bdf6087ecf395a3a722 | /data/open-Gold/sources/009029-open-2015-214-Gold.cpp | 11436655bb3b6d025baf00fdca96cd7d34a4edc7 | [] | no_license | alexhein189/code-plagiarism-detector | e66df71c46cc5043b6825ef76a940b658c0e5015 | 68d21639d4b37bb2c801befe6f7ce0007d7eccc5 | refs/heads/master | 2023-03-18T06:02:45.508614 | 2016-05-04T14:29:57 | 2016-05-04T14:54:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | cpp | #include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
//int best[1007];
long long l[200007], r[200007];
const long long INF = 1000000000000666666;
long long needAdd = 0;
vector<long long>segs;
long long ps[200007], dp[200007];
int main()
{
long long n, k, c, d;
cin >> n >> k >> d... | [
"shk.slava@gmail.com"
] | shk.slava@gmail.com |
cfdf4d6c6fa11393f36110fdc8fd03ff583d1268 | 989158c65dd97bdf8eecd854f8982fcbfc8e6d8d | /487Project/HeightCalculator.h | 5c97646cefb1d043cbf5918faab59061cfec052e | [] | no_license | seanmiles/HeightEstimator | c0fa3398cbd89ee7fbc1e9a1c39ab7953552c134 | 0441d2667f99892fe3e0beb99f6a70fe97b8f755 | refs/heads/master | 2022-04-14T10:02:49.253694 | 2020-03-20T20:13:54 | 2020-03-20T20:13:54 | 223,817,949 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,760 | h | //34567891*********2*********3*********4*********5*********6*********7*********8
// -------------------------- HeightCalculator.h -------------------------------
// Tung Dinh, Sean Miles, & Bradley Pratt CSS 487
// Created: 11/21/19
// Last Edit: 12/6/19
// --------------------------------------------------------------... | [
"53496159+bradapratt@users.noreply.github.com"
] | 53496159+bradapratt@users.noreply.github.com |
2cdbda82ff6d45769807b32a8600b5a35bd6f720 | c1aa46776c96ae07cbc91b89497659512b68f45a | /School/2019/File Structure/filestructure2019-chapter5-bufferfile-coding-exam/filestructure2019-chapter5-bufferfile-codingexam-NgaAdrain-master/recording.h | 2b9795d69c9bb009b73935a2763b767bd4cd44ae | [] | no_license | NgaAdrain/Adrain_Code_History | d73544b634476fc8370c929855b4010deb407e89 | ce383ee04f4e8830f28459238f96f424557c95cc | refs/heads/master | 2023-07-04T10:32:54.037075 | 2021-08-12T05:47:14 | 2021-08-12T05:47:14 | 291,408,348 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 713 | h | #pragma once
// recordng.h
#ifndef RECORDING_H
#define RECORDING_H
#include <iostream>
#include "iobuffer.h"
// class person with fixed field buffer
class Recording
// a recording with a composite key
{
public:
Recording();
Recording(char * label, char * idNum, char * title,
char * composer, char * artist);
c... | [
"adrainnga@gmail.com"
] | adrainnga@gmail.com |
a349326fa3304b03a0daaa27f9a36f1f37efcf9d | 678f4d9c1ad64f965e85970545d0c316747dd02a | /8.运算符重载/A.分数的加减乘除(运算符重载).cpp | 2b1664d096f15813a8264704d56b3a107ce20f61 | [] | no_license | febifrank/ojcode-for-c- | 661dd424220c719d36cb098eb0cad101412cc5fb | 693a2b4bd84afdad23dacbc78cc84ed3201e5c81 | refs/heads/main | 2023-02-12T19:12:01.599262 | 2021-01-10T08:38:56 | 2021-01-10T08:38:56 | 325,943,706 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | cpp | /*
题目描述
Fraction类的基本形式如下:
要求如下:
1.实现Fraction类;common_divisor()和contracted()函数体可为空,不实现具体功能。
2.编写main函数,初始化两个Fraction对象的,计算它们之间的加减乘除。
输入
第1行:依次输入第1个和第2个Fraction对象的分子和分母值。
输出
每行依次分别输出加减乘除计算后的Fraction对象(直接输出分数值,不需要约简)。
样例输入
1 3 2 5
样例输出
fraction=11/15
fraction=-1/15
fraction=2/15
fraction=5/6
*/
#include <iostrea... | [
"1193568650@qq.com"
] | 1193568650@qq.com |
6eabca3075abe1a06f2222763fcbe0b1fe184e88 | ab6b067a16d0a2a68debbb9cb3c9fe9b631aee47 | /Source/Matrix3.H | 3ed50957c56e4a9daadb4d3ad8c7cadb41d914e5 | [] | no_license | wattrg/6DOF | e7b472487426ff7dd7856ccfc894febf5256ae9a | eb09e266c23838d657a7edf2e5ba5a1bb4c61b99 | refs/heads/master | 2020-08-06T10:03:07.319460 | 2019-10-07T13:31:28 | 2019-10-07T13:31:28 | 212,936,260 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,079 | h | #include <vector>
#include "Vector3.H"
#include <cmath>
#include <assert.h>
#include <iostream>
#ifndef Matrix3_H
#define Matrix3_H
class Matrix3 {
private:
std::vector<Vector3> mat;
public:
Matrix3 () {
Vector3 zero;
mat = {zero, zero, zero};
};
... | [
"robertwhat@hotmail.com"
] | robertwhat@hotmail.com |
3c176829dedd44c369dd48a0a3789099fc07b4fa | 9e41bcf4793b407a42da030c9f8668a70980b067 | /Arduino/PWM.ino | 9ca202cc14865275c0961941c8c2d5505f5eaacf | [] | no_license | tonchval2307/Codigos-Variados | e43a6d4c65e8a033a29e8cd50c7ab02523bd3e72 | 16bfa6cc3ed898e5c4acb25c53147aa173332eaa | refs/heads/master | 2023-01-08T13:54:25.348221 | 2020-11-13T07:03:37 | 2020-11-13T07:03:37 | 284,142,307 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 328 | ino | unsigned int led = 6;
unsigned int potenciometro = 0;
int analog;
int valor;
void setup() {
// put your setup code here, to run once:
pinMode(led,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analog = analogRead(potenciometro);
valor = map(analog,0,1023,0,255);
analogWrite(led,val... | [
"noreply@github.com"
] | noreply@github.com |
6d0c3a7bfa147f49952dc93db011164d8c18e32a | 5527f49f154009b3e863ccb2e48077324d0d2fc8 | /include/internals/tables/TablePOST.h | 507eddfaa02103dad8f9974b15581e77255fb622 | [] | no_license | tommccallum/opentype_font_explorer | c68a1cf745a9e19621037c7d61c7bebaf5b16ecf | ae9c907caec685cfa2d4e87cd9662c5f98619844 | refs/heads/master | 2022-12-01T10:29:58.008208 | 2020-08-19T20:19:02 | 2020-08-19T20:19:02 | 288,828,815 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,376 | h | #ifndef TABLE_POST_H
#define TABLE_POST_H
#include <iostream>
#include <vector>
#include "internals/InternalTypes.h"
#include "internals/AbstractTable.h"
namespace OpenType {
class TypeReader;
// class name matches the tag of the table
class TablePOST : public AbstractTable {
public:
TablePO... | [
"this_is_not_an_email@no_where.com"
] | this_is_not_an_email@no_where.com |
e04658d9f5c5d8f396f8f4b8b3bfcb365a21974a | 6657186600feaec8228f8f92a9c3dec33d089d2b | /onnxruntime/core/framework/onnxruntime_sequence_type_info.cc | 18427fd5fcaae33ef056c5356276c1dc68a13a85 | [
"MIT"
] | permissive | microsoft/onnxruntime-openenclave | 4da64801290ff0f89497a6cfbfccd79e1584f81b | a6ad144bfbe4d91277c33180e65768e843a9f053 | refs/heads/openenclave-public | 2023-07-06T02:33:46.183271 | 2022-08-17T02:56:57 | 2022-08-17T02:56:57 | 290,272,833 | 34 | 21 | MIT | 2022-12-12T16:28:23 | 2020-08-25T16:58:14 | C++ | UTF-8 | C++ | false | false | 1,785 | cc | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "core/framework/onnxruntime_sequence_type_info.h"
#include "core/framework/onnxruntime_typeinfo.h"
#include "core/graph/onnx_protobuf.h"
#include "core/session/ort_apis.h"
#include "core/framework/error_code_helper.... | [
"noreply@github.com"
] | noreply@github.com |
cc0db31c10aa5848df7be0e8fb2f317ead795f42 | 0641d87fac176bab11c613e64050330246569e5c | /tags/stable-2005-04-01/source/test/intltest/nmfmapts.cpp | e10998f280754b56ac2b7097f6177f5fd65c8650 | [
"ICU"
] | permissive | svn2github/libicu_full | ecf883cedfe024efa5aeda4c8527f227a9dbf100 | f1246dcb7fec5a23ebd6d36ff3515ff0395aeb29 | refs/heads/master | 2021-01-01T17:00:58.555108 | 2015-01-27T16:59:40 | 2015-01-27T16:59:40 | 9,308,333 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 12,537 | cpp | /***********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2004, International Business Machines Corporation
* and others. All Rights Reserved.
***********************************************************************/
#include "unicode/utypes.h"
#if !UCONFIG_NO_FORM... | [
"(no author)@251d0590-4201-4cf1-90de-194747b24ca1"
] | (no author)@251d0590-4201-4cf1-90de-194747b24ca1 |
bfd9370963e796880224e2f17942e3b49b8e08a2 | 196c3f5a9206d5bd61c74d6d041c2999f6eb97aa | /WHM 1.8/functions/CfgPatches.hpp | 81970c68a27b34acc37e9b201f90540a1d0b1d0c | [] | no_license | Werthles/WHM | 940505514e75e30a1726210e1d531a878206869d | aac648f3690ed126e6b9d5a39d8888f774b01b93 | refs/heads/master | 2021-01-12T05:30:21.856306 | 2020-10-17T16:21:29 | 2020-10-17T16:21:29 | 77,938,473 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 202 | hpp | //register modules
class CfgPatches
{
class Werthles_WHK
{
units[] = {"Werthles_moduleWHM","Werthles_moduleWHIgnore"};
requiredVersion = 1.0;
requiredAddons[] = {"A3_Modules_F"};
};
}; | [
"noreply@github.com"
] | noreply@github.com |
f581e4b7ee2cb0167e7f31d81ed26c9ea420233a | be21718d1d586d1cfb766f319ad5cc4c17e5e0d9 | /src/testApp.cpp | 73acbac9560ef3f6b4e20f83ed7761dfc7f9efcd | [] | no_license | bbcollinsworth/wizardwars | f5386010a2a9d5689962083d924089ad97bed36f | ac7ff25ac0209b55b66d29e10177d27846c4a4e4 | refs/heads/master | 2021-01-15T10:19:07.288913 | 2015-05-19T20:20:50 | 2015-05-19T20:20:50 | 33,707,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,895 | cpp | #include "testApp.h"
#define USE_PROGRAMMABLE_RENDERER
void testApp::setup(){
ofSetFrameRate(24);
//==========================
//KINECT SETUP + INITIALIZATION
//==========================
depth = false;
kinect.initSensor( 0 );
if (depth){
kResX = 320;
kResY = 240;
kinect.initDepthStream(kResX, kResY... | [
"bcollinsworth@gmail.com"
] | bcollinsworth@gmail.com |
2d78ed2e3568f7bb89bc5b0f3dc41ab0156e1ae4 | 5177bfb99492ba152f16216190ee9d7477c9fe91 | /SurfacePresenterExample/D3D10HWRenderer.cpp | 9d989db0cd56eec1e11ea036605f332156fd562d | [
"Apache-2.0"
] | permissive | johnarthur1/SurfacePresenter | 51733b99f3849f9f5ea1fbdf6fb661b64295f9fa | 80c21072dbdceb28b9f6b900f14f1d88d3774445 | refs/heads/master | 2021-05-31T23:14:01.328138 | 2016-06-22T20:50:51 | 2016-06-22T20:50:51 | 287,790,118 | 0 | 1 | NOASSERTION | 2020-08-15T17:06:32 | 2020-08-15T17:06:31 | null | UTF-8 | C++ | false | false | 3,080 | cpp | /*=====================================================================
Microsoft
ISurfacePresenter Code Sample.
Copyright (C) 2010 Microsoft Corporation. All rights reserved.
This source code is intended only as a supplement to Microsoft
Development Tools and/or on-line documentation. See these other
materi... | [
"jjdsampson@gmail.com"
] | jjdsampson@gmail.com |
d6b232a2b333f832af831fef0b8282208aa36df1 | 763b8c7cdcc6b462ccf8db13f3892ada0fe25fc5 | /Permutations/Permutations.cpp | d19637ae445e43c05f36c788df93ea1981c4cf73 | [] | no_license | mastertom/leetcode | a4e6058138be4e194f6303703774cdbba632143b | c96099e69237a375c6b04b30cde55f9730e40505 | refs/heads/master | 2020-05-16T23:05:11.697915 | 2015-01-27T19:21:49 | 2015-01-27T19:21:49 | 17,268,033 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,118 | cpp | #include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
class Solution {
public:
void perm(vector<int> num,int k,int n, vector<vector<int> > &res){
if (k==n){
res.push_back(num);
}else{
for (int i=k;i<=n;i++){
int tmp = num[k];
... | [
"mastertom0306@gmail.com"
] | mastertom0306@gmail.com |
7a3476bfc4b6cc4345581fb7c1db163d002db9a3 | 624e2fe126418d2135dec26551c1cb52f13f4e4e | /Source/Riemann.H | 065b08a3908fa33bef8b89cc7b1cbe26954fa09a | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | AMReX-Combustion/PeleC | 51dee424ab0037fca793ae97afe3f7848643fadc | bae27e635f1bebedd30221dc58e757be62aef683 | refs/heads/development | 2023-08-28T02:49:24.556463 | 2023-08-23T22:01:59 | 2023-08-23T22:01:59 | 153,825,534 | 128 | 72 | NOASSERTION | 2023-09-12T01:51:21 | 2018-10-19T18:28:51 | C++ | UTF-8 | C++ | false | false | 8,501 | h | #ifndef RIEMANN_H
#define RIEMANN_H
#include "PeleC.H"
#include "PelePhysics.H"
AMREX_GPU_DEVICE
AMREX_FORCE_INLINE
void
riemann(
const amrex::Real rl,
const amrex::Real ul,
const amrex::Real vl,
const amrex::Real v2l,
const amrex::Real pl,
const amrex::Real spl[NUM_SPECIES],
const amrex::Real rr,
cons... | [
"noreply@github.com"
] | noreply@github.com |
7eabc1584712c7b2473c793d53e310772028a7b9 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_SK_GroundedChargeLantern_AnimBlueprint_classes.hpp | 1d986670a3e81783033b4eae7b4d4d28825c398f | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 12,335 | hpp | #pragma once
// ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_SK_GroundedChargeLantern_AnimBlueprint_structs.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Classes
//----------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
b5befaac30c5ae7d81e5ee0aacc6fa558af5d0c2 | b14db56b9364f6d0abdd260e5a6cfa3d2401281f | /src/types.h | 57f6c16af9c591bdd342c94ad856ceb4c0d54a81 | [
"MIT"
] | permissive | timcogames/Sway.Framework | 41503b8505532535455dc69f2a05df58174dea79 | e59c3ddaaafd849fa683e8d99ec0cd297c3806dc | refs/heads/master | 2021-08-23T06:14:18.905962 | 2017-12-03T20:45:47 | 2017-12-03T20:45:47 | 103,310,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,849 | h | #ifndef SWAY_TYPES_H
#define SWAY_TYPES_H
namespace sway {
// signed
typedef char s8;
typedef short s16;
typedef int s32;
typedef float f32;
typedef long s64;
typedef double f64;
// unsigned
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef unsigned long u64;
// sim... | [
"victor-timoshin@hotmail.com"
] | victor-timoshin@hotmail.com |
b33b8f99e11358308b1f66df39bef44af7ba6459 | 724e4d393b65218bd539ead66de383f08b5c3383 | /common_audio/real_fourier_ooura.cc | 00aa0d2d926cf888bdb267caac3527770acf7da8 | [] | no_license | james133/webrtc-audio-processing-lib-ios | b88979cf9aac6d96702a5799a091fd9d639c994c | 843b4c7b6f5338d73a2128359c5515c0c66f1474 | refs/heads/master | 2020-07-01T11:10:50.675397 | 2018-07-06T09:49:08 | 2018-07-06T09:49:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,891 | cc | /*
* Copyright (c) 2015 The WebRTC 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 in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contribut... | [
"chen_tao@me.com"
] | chen_tao@me.com |
0a3604ffa9821945f182be28c2c6588261d8f3b9 | 968f4fd21d9354f615a3cd98b52a2e04b3051238 | /Projects/piscine_cpp/j03/ex04/NinjaTrap.cpp | 68337d957e1d7d88c5e1c0343c39892ee45225bc | [] | no_license | svelhinh/Projects | e6f08bb8a8e173b69ff9c3997f69f6dd4344a7ff | 2dcd35934078f731cbe6e75150338523c06f41ad | refs/heads/master | 2023-08-07T20:33:29.793393 | 2023-07-28T14:38:31 | 2023-07-28T14:38:31 | 60,209,430 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,795 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* NinjaTrap.cpp :+: :+: :+: ... | [
"svelhinh@student.42.fr"
] | svelhinh@student.42.fr |
95b849219d5432b81cd34a78e6cef09474af7527 | 4d28cabab5c531f40058aad5195af715664ad06b | /SDL4_Handout/ModuleRender.cpp | 0929e32cb3108acb922acb27b724f27d845cf553 | [] | no_license | albertec1/Project-1 | 03f3041c958128c968d44bb3cff71403a1fc89e2 | ce40fb983ceb40744180950301663ff6121800f8 | refs/heads/master | 2020-04-26T23:28:23.852516 | 2019-03-26T09:31:32 | 2019-03-26T09:31:32 | 171,435,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,231 | cpp | #include "Globals.h"
#include "Application.h"
#include "ModuleRender.h"
#include "ModuleWindow.h"
#include "ModuleInput.h"
#include "SDL/include/SDL.h"
ModuleRender::ModuleRender() : Module()
{
camera.x = camera.y = 0;
camera.w = SCREEN_WIDTH;
camera.h = SCREEN_HEIGHT;
}
// Destructor
ModuleRender::~ModuleRender()... | [
"45201952+albertec1@users.noreply.github.com"
] | 45201952+albertec1@users.noreply.github.com |
4b7d930531e15eefc8334dde994deba203d95916 | f252f75a66ff3ff35b6eaa5a4a28248eb54840ee | /external/opencore/nodes/pvmp4ffcomposernode/src/pvmp4ffcn_port.h | b7178f555c595638d60b5fc40d7c18c71e58b230 | [
"MIT",
"LicenseRef-scancode-other-permissive",
"Artistic-2.0",
"LicenseRef-scancode-philippe-de-muyter",
"Apache-2.0",
"LicenseRef-scancode-mpeg-iso",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | abgoyal-archive/OT_4010A | 201b246c6f685cf35632c9a1e1bf2b38011ff196 | 300ee9f800824658acfeb9447f46419b8c6e0d1c | refs/heads/master | 2022-04-12T23:17:32.814816 | 2015-02-06T12:15:20 | 2015-02-06T12:15:20 | 30,410,715 | 0 | 1 | null | 2020-03-07T00:35:22 | 2015-02-06T12:14:16 | C | UTF-8 | C++ | false | false | 7,842 | h |
#ifndef PVMP4FFCN_PORT_H_INCLUDED
#define PVMP4FFCN_PORT_H_INCLUDED
#ifndef OSCL_BASE_H_INCLUDED
#include "oscl_base.h"
#endif
#ifndef OSCL_SCHEDULER_AO_H_INCLUDED
#include "oscl_scheduler_ao.h"
#endif
#ifndef PVMF_PORT_BASE_IMPL_H_INCLUDED
#include "pvmf_port_base_impl.h"
#endif
#ifndef PVMF_NODE_INTERFACE_H_INCLUD... | [
"abgoyal@gmail.com"
] | abgoyal@gmail.com |
a1c06a9318a1e41d1094516cf90e693ab17411f9 | 7ec3ece44267dd506eb05935bef9ec0f91c3bbb7 | /AK/Concepts.h | cb78982f0c3004734b8a61984ca63a1054c212ab | [
"BSD-2-Clause"
] | permissive | jakewilson/serenity | 10579859ab4020e0ce8e591b82a4ccb6ff86fb96 | d3967660588a02dd7965dda40b27a11117f0d137 | refs/heads/master | 2022-12-01T08:47:17.111344 | 2020-08-16T14:25:42 | 2020-08-16T14:44:09 | 287,982,763 | 0 | 0 | BSD-2-Clause | 2020-08-16T16:34:50 | 2020-08-16T16:34:50 | null | UTF-8 | C++ | false | false | 1,595 | h | /*
* Copyright (c) 2020, the SerenityOS developers.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* ... | [
"kling@serenityos.org"
] | kling@serenityos.org |
a3caa482f83c3eccdc7dded7c8bdcc1d4af42c39 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /components/exo/client_controlled_shell_surface.cc | c7c553efd66e964a9d58810979b241521bf8a677 | [
"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 | 46,904 | cc | // 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.
#include "components/exo/client_controlled_shell_surface.h"
#include <map>
#include <utility>
#include "ash/frame/header_view.h"
#include "ash/frame/non... | [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
767a7d6cfb46230193216f768fbeb71e15eed78d | e8776ddf041d94306c7d21c1dfd89fc1f9314c08 | /12B.cpp | ad90219817b94cdc4ba850c0fcc5a65f28a800fb | [] | no_license | EbrahimAli-RU/Online-Problem | d5e4ef497675d0178319c532aaab010aab103280 | f654dcdd33dd1a7b1b36f705dabb3d3be61bce97 | refs/heads/master | 2020-07-17T15:27:39.884536 | 2019-12-04T05:39:53 | 2019-12-04T05:39:53 | 206,045,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 825 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
string s,s2;
cin>>s>>s2;
int length=s.size();
int lengths2=s2.size();
int arr[length],arr1[length],check=0;
for(int i=0;i<length;i++)
{
arr[i]=s[i]-48;
arr1[i]=s2[i]-48;
}
sort(arr,arr+length);
... | [
"noreply@github.com"
] | noreply@github.com |
ffb69ccd1f9b749f895915775be0ab6b653ed9e5 | 1a4112694d35d37662c2d9b64e644f564993bef5 | /Part 2- Keypad/Keypad_Example_1.ino | a5c7c49c79aa0664a598af9c8ffd9a8bfb458a0b | [] | no_license | The-Assembly/Candy_dispenser | 86c77e218bc173c465f3fbadcde2fdd35fae89c2 | ffe55b59dc4ac0293e41d4f4d66644771d0f03b1 | refs/heads/master | 2021-01-25T13:48:22.647250 | 2018-03-03T08:07:06 | 2018-03-03T08:07:06 | 123,617,688 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | ino | #include <Keypad.h>
const byte numRows= 4
const byte numCols= 4;
keymap[numRows][numCols]= { {'1', '2', '3', 'A'},
{'4', '5', '6', 'B'},
{'7', '8', '9', 'C'},
{'*', '0', '#', 'D'} };
byte rowPins[numRows] = {9,8,7,6}; //Rows 0 to 3
byte colPins[numCols]= {5,4,3,2}; //Columns 0 to 3
//initializes an instance of... | [
"noreply@github.com"
] | noreply@github.com |
93b85977ccfd61291c8641ef466cb8eeebb29a27 | 6e665dcd74541d40647ebb64e30aa60bc71e610c | /600/VoipLib/util/config/unit_test/ParsePairStringTest.cxx | 5a7231a0e2f343ef49e00d61e7e8cdb65a7e147c | [] | no_license | jacklee032016/pbx | b27871251a6d49285eaade2d0a9ec02032c3ec62 | 554149c134e50db8ea27de6a092934a51e156eb6 | refs/heads/master | 2020-03-24T21:52:18.653518 | 2018-08-04T20:01:15 | 2018-08-04T20:01:15 | 143,054,776 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,197 | cxx | /* ====================================================================
* The Vovida Software License, Version 1.0
*
* Copyright (c) 2000 Vovida Networks, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following ... | [
"jacklee032016@gmail.com"
] | jacklee032016@gmail.com |
8dcc9771e6d9b9c73cc0455279c9915f98c326e1 | 8b1cedbca5f5a967e5c37c280f53dfdbff00ff19 | /cocos/170707/170707_Lesson_Find_String/170707_Lesson_Find_String/stdafx.cpp | 8481a6b0c6c62f67de8fe801a0a8fdfd06c61e5c | [] | no_license | kcwzzz/KCW | ef552641c77d1971ad4536d37a70eb9a59f4d4e6 | 34973e5fae0a4095418ac0bd99637ffa24f525be | refs/heads/master | 2020-12-03T05:11:38.828978 | 2017-09-29T08:10:59 | 2017-09-29T08:10:59 | 95,736,720 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 343 | cpp | // stdafx.cpp : 표준 포함 파일만 들어 있는 소스 파일입니다.
// 170707_Lesson_Find_String.pch는 미리 컴파일된 헤더가 됩니다.
// stdafx.obj에는 미리 컴파일된 형식 정보가 포함됩니다.
#include "stdafx.h"
// TODO: 필요한 추가 헤더는
// 이 파일이 아닌 STDAFX.H에서 참조합니다.
| [
"kcwzzz@naver.com"
] | kcwzzz@naver.com |
dc9af67254c4b639091a5dff93c949b35b5524c6 | 7da3fca158ea3fb03a578aaff783739a91194bab | /Code/CEDL_test/C3-huangzile2019-7-26/b.cpp | f7f705b1717b682e70523c9d56db313d4636fa89 | [] | no_license | powerLEO101/Work | f1b16d410a55a9136470e0d04ccc4abcfd95e18b | 6ae5de17360a7a06e1b65d439158ff5c2d506c2a | refs/heads/master | 2021-06-18T01:33:07.380867 | 2021-02-16T10:16:47 | 2021-02-16T10:16:47 | 105,882,852 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <bits/stdc++.h>
#define gi get_int()
#define _FILE(s) freopen(#s".in", "r", stdin); freopen(#s".out", "w", stdout)
int get_int()
{
int x = 0, y = 1; char ch = getchar();
while (!isdigit(ch) && ch != '-')
ch = getchar();
if (ch =... | [
"poewrLEO101@outlook.com"
] | poewrLEO101@outlook.com |
2ca53d02e0d60e5dd841bb816f93387da1cb4440 | d12871205c3b4ecf8bc8a3c7a02e142350afd2d5 | /Geometry.h | 6fe6579631209defbbd1248ed10c292c650f37c4 | [] | no_license | BNLIF/prospect-process | e5a645362c44b07b7dde2b59c544667f1c2bca57 | cd4081d753fdfc2bd1bd45220ee379876c70f98b | refs/heads/master | 2020-03-17T01:53:13.983349 | 2018-06-14T15:45:07 | 2018-06-14T15:45:07 | 133,170,444 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 299 | h | #ifndef GEOMETRY_H
#define GEOMETRY_H
class Geometry {
public:
Geometry();
virtual ~Geometry();
int SegRow(int segNo);
int SegCol(int segNo);
float SegX(int segNo);
float SegY(int segNo);
float WIDTH_X; // m
float WIDTH_Y; // m
float WIDTH_Z; // m
};
#endif | [
"chao.zh@gmail.com"
] | chao.zh@gmail.com |
ce25203ef29058957335654ad327573c29595dc1 | 6ac37365f0bb5ee309295e12a3f6adb3af525a61 | /DeRossi/stack.h | 0cbbf8426e3ded3bf9051f246f3579e76333733f | [] | no_license | diananova/laboratorio-4-asd | 6ede88060c6e15116755c8a61354ee41616a8a23 | 0cd8900ee89e860e61267b9b27dde90c5cf51fd8 | refs/heads/master | 2020-05-02T19:31:10.753886 | 2019-03-24T21:09:04 | 2019-03-24T21:09:04 | 178,160,973 | 1 | 0 | null | 2019-03-28T08:36:45 | 2019-03-28T08:36:39 | C++ | UTF-8 | C++ | false | false | 705 | h | #include <cstddef> // serve per il NULL
#include <iostream>
#include <stdexcept>
#include "token.h"
using namespace std;
// Implementa STACK
namespace stack {
// Gli elementi dello STACK sono token
typedef token Elem;
struct pila {
Elem tk;
pila *next;
};
typedef pila *Stack; // D... | [
"S4661724@sw107.educ.dibris.local"
] | S4661724@sw107.educ.dibris.local |
3f27def87685fd5d89964dc6b0fce864eb706bfd | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/squid/hunk_4415.cpp | eaf75b5defa2947174040753ea42a719a44e6692 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | cpp | idns_query *q;
int i;
int j;
+ char buf[MAX_IPSTRLEN];
storeAppendPrintf(sentry, "Internal DNS Statistics:\n");
storeAppendPrintf(sentry, "\nThe Queue:\n");
storeAppendPrintf(sentry, " DELAY SINCE\n");
| [
"993273596@qq.com"
] | 993273596@qq.com |
322ca5a941427420a23c6999f3d6626f8ffa149e | 6ad7a639c8643114db839407a5c988bbee768e34 | /learn/c++/test/std_thread.cpp | 6efe53e5b0b62a777d4087c179e9bcb78b1cdf51 | [] | no_license | P79N6A/learn_record | ee15989db0b8a5c63bf122135091748935a68ffc | bc3da3a5ae1ee60486afdd1a1b31a7c14766a306 | refs/heads/master | 2020-05-09T22:45:29.709999 | 2019-04-15T12:21:49 | 2019-04-15T12:21:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,026 | cpp | /*************************************************************************
> File Name: std_thread.cpp
> Author: orientlu
> Mail: lcdsdream@126.com
> Created Time: Mon 03 Dec 2018 10:28:29 PM CST
************************************************************************/
#include <iostream>
#include <vector>
#inclu... | [
"lcdsdream@126.com"
] | lcdsdream@126.com |
2b92e290fb62f0f2b87f2404c4679600387d8cd2 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_patch_hunk_826.cpp | 1fa8f52f826b17a4dc008c3c27e21d5ac8e1e477 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,015 | cpp | param = NULL;
}
#ifdef DEBUG_CONFIG
fprintf(stderr, "PARAM: \"%s\"\n",(param ? param : "(null)"));
#endif
- res = getparameter(option, param, &usedarg, config);
+ res = getparameter(option, param, &usedarg, global, operation);
if(param && *param && !usedarg)
/* we ... | [
"993273596@qq.com"
] | 993273596@qq.com |
089021d4f28247d88c904e02b07e335041fade17 | 349f9e86946cc191e88474254d98902b04cf0c08 | /Three.cpp/three/materials/MeshLambertMaterial.cpp | e36b1e7d01c3a634b305478a1218f022f3bdb15c | [] | no_license | jsj2008/Three.cpp | 1a750135d3b9815cb5c29aaf38d263c9bdc209a9 | 4ad6d3549d259f9595fc8545c88c23b0a944f41d | refs/heads/master | 2021-05-28T16:20:59.950850 | 2014-07-17T12:12:22 | 2014-07-17T12:12:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,303 | cpp | //
// MeshLambertMaterial.cpp
// Three.cpp
//
// Created by Saburo Okita on 02/07/14.
// Copyright (c) 2014 Saburo Okita. All rights reserved.
//
#include "MeshLambertMaterial.h"
#include "Constants.h"
namespace three {
MeshLambertMaterial::MeshLambertMaterial():
color ( 0xFFFFFF ),
... | [
"saburookita@Saburos-MacBook-Air.local"
] | saburookita@Saburos-MacBook-Air.local |
3f2b3700844f64b2dc938248dfe226b40951bc26 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14733/function14733_schedule_0/function14733_schedule_0_wrapper.cpp | 0aa4d1ff3eefb6ac101557d2b6f08a8e18f19d2d | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,184 | cpp | #include "Halide.h"
#include "function14733_schedule_0_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(64);
Halide::Buffer<int32_t> buf01(128);
... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
b6a3c7acc9a73febf0bb9afc7ab810ffb76506bc | 3c5c46a7ff8c75a261b5261599bc0d98bb87eff4 | /QtApp/QStock/QStock/Ucm/ipublisher.cpp | d5c84ad307d22493cfea9b6e4a372188b8b0ad35 | [] | no_license | deepblueparticle/QStock | 8aac6ce16c342adcbdffc46f6f1258f070a36fa4 | 618f29bb2cffe8c15cc9c9d8ac22ab8cd77ee046 | refs/heads/master | 2020-03-20T19:04:07.098250 | 2018-03-01T04:45:06 | 2018-03-01T04:45:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,219 | cpp | #include "ipublisher.h"
#include "types.h"
static int idMax = ISUBSCRIBER_ID_START;
int IPublisher::registerFor(ISubscriber *pObserver,int id, QString name)
{
pObserver->setId (id);
pObserver->setName(name);
QObject::connect(this, SIGNAL(sendMsg(Message&)), pObserver->getQobject (), SLOT(handleMsg(Message... | [
"hityixiaoyang@gmail.com"
] | hityixiaoyang@gmail.com |
2648273d274dd0d68481439406fba71b0432ea0d | cbc870f2e6cafada1e171ea1ad7c4a61377e69d0 | /src/core/lexer/keyword.tpp | 5de273b6ee560b7343070be5684a32c99e570aa3 | [] | no_license | SrTobi/minijava | 719634577eea3113f9fc625ab2f7c515b07cb5a0 | 034e0e351951f05766e7bca7f6a1e689b789ee9d | refs/heads/master | 2021-01-12T12:13:42.793808 | 2017-02-13T06:45:03 | 2017-02-13T06:45:03 | 72,376,450 | 2 | 0 | null | 2016-12-12T02:43:53 | 2016-10-30T21:24:12 | C++ | UTF-8 | C++ | false | false | 1,994 | tpp | #ifndef MINIJAVA_INCLUDED_FROM_LEXER_KEYWORD_HPP
#error "Never `#include <lexer/keyword.tpp>` directly; `#include <lexer/keyword.hpp>` instead."
#endif
#include <cassert>
#include "lexer/character.hpp"
namespace minijava
{
namespace detail
{
// Computes the hash for the bytes in the range `[first, last)` usin... | [
"moritz.klammler@student.kit.edu"
] | moritz.klammler@student.kit.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.