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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
af16b77a39bbfaf6b695d4bc6ba1db53c8676b62 | a328bae3b9cbb579904afda1e889b65c5941346d | /Laboratorio 08/CW-01.cpp | d4fa43a23350e46053d6688cf9a14713f318c981 | [] | no_license | RobertoLopez107/PED0319-RRLA-00213019 | 689279a933da153aa86d28408621c24a5baa944d | 5a49535cbdaf841ab44c3777d9e39a7997f5d0f4 | refs/heads/master | 2020-12-10T04:53:18.952596 | 2020-02-05T18:11:35 | 2020-02-05T18:11:35 | 233,157,934 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,696 | cpp | #include <iostream>
using namespace std;
struct node{
int n;
node *left, *right;
};
void inOrder (node* pTree);
node* createlfeaf(int n);
void insertInTree(node** tree, int n);
void preOrder (node* pTree);
void postOrder (node* pTree);
int main(void){
node* pTree = NULL;
insertInTree(&pTree, 12);
... | [
"00213019@uca.edu.sv"
] | 00213019@uca.edu.sv |
f86d373a3007f551554fd8c5e6a4abcb8729260a | ee5e0c7f802626b33668e7686d179d5d0ea5f449 | /windows_ce_5_121231/WINCE500/PRIVATE/WINCEOS/COREOS/GWE/MGDI/INC/driver.hpp | 9f8be7c71426a960c6e19c060a5426706381a70a | [] | no_license | xiaoqgao/windows_ce_5_121231 | e700da986df7fe7d8a691a347f76885aac8c03b3 | 5ad37f4d1e287bb81a238b7d7a8b2e1185fe90ed | refs/heads/master | 2022-12-25T02:28:44.898011 | 2020-09-28T20:03:03 | 2020-09-28T20:03:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,876 | hpp | //
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
/*
*/
#ifndef __DRIVER_HPP_INCLUDED__
#define __... | [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
85af1fc8dd0f0548dc8c38f87aa00bde86ffac6b | 5ea57f1f620e25a0364ec373e1cfe174f07f513a | /blankModTemplate/pad.cpp | 662fe26c9229fd2a4d5db34fb336dfe67af3cb4b | [
"MIT"
] | permissive | MichaelGriffin1/ps3SprxBlank | eaf3cc57766d5587d2d6abdffb88ea163cd4c0ec | ccb53378ca5ce4a314e54bd989d5b064b036aa41 | refs/heads/master | 2022-11-23T23:23:35.522788 | 2020-07-28T21:53:12 | 2020-07-28T21:53:12 | 269,576,352 | 10 | 36 | null | null | null | null | UTF-8 | C++ | false | false | 619 | cpp | #include <cell/pad.h>
#define PAD_LEFT (1 << 7)
#define PAD_DOWN (1 << 6)
#define PAD_RIGHT (1 << 5)
#define PAD_UP (1 << 4)
#define PAD_START (1 << 3)
#define PAD_R3 (1 << 2)
#define PAD_L3 (1 << 1)
#define PAD_SELECT (1 << 0)
#define PAD_SQUARE (1 << 15)
#define PAD_CROSS (1 << 14)
#define PAD_CIRCLE (1 << 13)
#defin... | [
"michaelgriffin@sushidevelopers.tk"
] | michaelgriffin@sushidevelopers.tk |
cded92d32ded7490f5538484c80035d11ff70859 | b4d22e1b1b5f2751670b21e8e802e0b101d7a53d | /APAssignment2/OwnedPointer.cpp | ae4ca5d3e58e5cd8c5fad892711f2afa9ac47282 | [] | no_license | amna5297-zz/Assignment-2 | f29a89153c42ed439a676d3e2e3a8eee19c1eebb | a813997cdce535a53ae926615a81a20e66050405 | refs/heads/master | 2022-12-04T10:07:20.932354 | 2016-12-11T05:18:49 | 2016-12-11T05:18:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,145 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include "OwnedPointer.h"
#include <memory>
#include <iostream>
#include <string.h>
#include <stdlib.h>
using namespace std;
//default constructor
own_ptr::own_ptr() {
this->_strbuf = 0;
this->_length = 0;
}
//destructor
own_ptr::~own_ptr() {
this->_strbuf = NULL;
}
//cop... | [
"amna.rehman@hotmail.com"
] | amna.rehman@hotmail.com |
fa84a36cb9c987c3d5317a877d48bb8da34fc28f | 7052fcc6368d5fc3c8f529e4cd0ed24c0af7e8dc | /vino_param_lib/src/param_manager.cpp | 5fa48235ef28e9bb0aa20645f70206a09f06095b | [
"Apache-2.0"
] | permissive | LewisLiuPub/ros2_openvino_toolkit | 320baaae73cf30d0a19892e17b9e0b5b6abed97e | f1b0999537a527d5bc38925ab3f381f8f7d2f24f | refs/heads/master | 2023-01-29T23:19:56.740762 | 2018-09-30T05:45:10 | 2018-09-30T05:45:10 | 152,174,564 | 4 | 2 | Apache-2.0 | 2023-09-14T03:33:10 | 2018-10-09T02:21:03 | C++ | UTF-8 | C++ | false | false | 6,434 | cpp | /*
* Copyright (c) 2018 Intel Corporation
*
* 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... | [
"chao1.li@intel.com"
] | chao1.li@intel.com |
512e998695a032d5d725bbf498039a440505db5f | 8b13db0a67d723acfa5b2830f76f963faa07f179 | /127.cpp | 224bd06ad02a0e17941daa651394fd4d3327fb30 | [] | no_license | shizhonghao/leetcode | 02beeb4198d6470a64e51e97b7dc78964407d990 | 103ee2716e0a37c593985f75ce73b365f83f569d | refs/heads/master | 2020-03-22T14:26:57.636374 | 2018-08-26T14:13:33 | 2018-08-26T14:13:33 | 140,180,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,231 | cpp | #include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;
class Solution {
public:
bool is_adj(string a,string b)
{
int cnt = 0;
for(int i=0;i<a.length();i++)
{
if(a[i]!=b[i])
{
cnt++;
}
}
return cnt==1 ? tru... | [
"shi1996426frank@126.com"
] | shi1996426frank@126.com |
121457699af0f480dba379c8ec2d8397e25a299c | ccebd834ec504593fbe26736f5d05835bec4c1b4 | /include/MvrConfigArg.h | 61b1de467dee311bbebd6ca6bc799e46586929c0 | [] | no_license | yjcs1990/mvr | bc32b286d9e49f1797361953c14c01772e848841 | 80a3e7dd4ea9857bbc8b75a3e4099d90d9972ab7 | refs/heads/master | 2020-12-30T11:15:40.387284 | 2017-07-19T06:38:56 | 2017-07-19T06:38:56 | 91,542,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,639 | h | #ifndef MVRCONFIGARG_H
#define MVRCONFIGARG_H
#include <map>
#include "mvriaTypedefs.h"
#include "mvriaUtil.h"
#include "MvrFunctor.h"
class MvrArgumentBuilder;
class MvrFileParser;
class MvrSocket;
/// Argument class for MvrConfig
/**
MvrConfigArg stores information about a parameter (name, des... | [
"yjcs1990@163.com"
] | yjcs1990@163.com |
8ad1df07489268cda4339159e1c1a57eeacdb714 | 661506185b876310aabb90513d000edb92c6a0a1 | /ymutil/kpm.cc | 1c6df1c9a9204ced96d426688e702aea821c2bd8 | [] | no_license | yotam-medini/cj | ff8f255b3594b1ce3992d9d1f2cd91e19d788a9f | fae75a9560272f97a48e79a2cebb5b63caa94303 | refs/heads/master | 2023-09-01T02:14:35.830316 | 2023-08-26T10:20:44 | 2023-08-26T10:20:44 | 53,720,896 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 101 | cc | // Knuth Morris Pratt Algorithm
#include <string>
#include <vector>
using namespace std;
typedef
| [
"yotam.medini@gmail.com"
] | yotam.medini@gmail.com |
e869f1bc0c756dc95673d51e70870d72f4875c0a | 665443052fa3c17f94c945f08b6378016d5a1dae | /0153-20140210/src/mess/machine/e05a03.h | 7a33c6b4f925e2631eb2e8f28dee57b3a443ea10 | [] | no_license | dezi/mame-libretro-odroid | a6f3e0fd87e00fe8beda936f1cd3cf2fe508fcf0 | 31b588c088928f967b9fb9cf903b7a3f18a91eaa | refs/heads/master | 2020-04-18T07:49:09.588326 | 2014-02-11T14:27:40 | 2014-02-11T14:27:40 | 16,698,177 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,510 | h | /***************************************************************************
E05A03 Gate Array (used in the Epson LX-800)
license: MAME, GPL-2.0+
copyright-holders: Dirk Best
***************************************************************************/
#ifndef __E05A03_H__
#define __E05A03_H__
/*******... | [
"dezi@kappa-mm.de"
] | dezi@kappa-mm.de |
4576463670cf9994e80a32e9dd792f488e31e006 | a157e49f1abae34fb2ce8cb99342a05682726ebf | /src/bot/Malware/SharedKernel/Network/Http/httpserveradapter.h | 39d4187ba9b29ee58028e8f7407741c6521a6b35 | [
"MIT"
] | permissive | jsdelivrbot/eductional-botnet | 05c5e1b40e967221d12e96bf4f0e66036a8ad70a | 7cd021c176331cc0642f4b92a5a7b598df610c37 | refs/heads/master | 2020-04-10T09:22:25.918455 | 2018-12-08T07:26:51 | 2018-12-08T07:26:51 | 160,934,522 | 0 | 0 | MIT | 2018-12-08T11:57:08 | 2018-12-08T11:57:07 | null | UTF-8 | C++ | false | false | 1,549 | h | #ifndef HTTPSERVERADAPTER_H
#define HTTPSERVERADAPTER_H
#include <memory>
#include <functional>
#include <QJsonObject>
#include <QMap>
#include <QNetworkAccessManager>
#include <QNetworkReply>
#include "../Messages/Server/servermessage.h"
#include "../serveradapter.h"
namespace network { namespace http
{
/**
... | [
"james@menetrey.me"
] | james@menetrey.me |
aaf558b9ffab158b1003b1c0bc4416499cf5ba84 | d2368788859349d299b06b02c82c84cad13a9674 | /src/24_SwapNodesinPairs/main.cpp | 988a59a750bc71ecb702de031b7aba53cecb2070 | [] | no_license | wildpea/leecode | c03e6e6819c4a9f0b15fa0df98a4a88d2da388dd | 76b071a06287d651735adfc240fc47457227f4e2 | refs/heads/master | 2021-08-02T12:29:49.291718 | 2021-07-22T02:56:49 | 2021-07-22T02:56:49 | 172,698,005 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,636 | cpp | #include <string>
#include <set>
#include <map>
#include "gtest/gtest.h"
#include "gflags/gflags.h"
#include "glog/logging.h"
#include "via_list.h"
using namespace std;
//1->2->3->4, you should return the list as 2->1->4->3.
typedef VIA::ListNode<int> ListNode;
class Solution
{
public:
ListNode* swapPairs(ListNo... | [
"wildpea.long@gmail.com"
] | wildpea.long@gmail.com |
d25d5e2c300f87c8f3f091612dc0e9483df96d80 | 7428c4de05c4987d672eac5c25759dd262ea4642 | /Example/Source/Examples/Private/Framework/Color4.cpp | 18d83a6cfe2a58690e817e14ebd1fb200f160cc2 | [
"MIT"
] | permissive | aalekhm/unrimp | e56e366ce255502f2fd18b9c6f4f72446c526299 | 13380b2df90e3be3512c5accdef7c00511d17d30 | refs/heads/master | 2022-08-26T17:18:08.800044 | 2020-05-24T07:53:57 | 2020-05-24T07:53:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,954 | cpp | /*********************************************************\
* Copyright (c) 2012-2020 The Unrimp Team
*
* 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 wit... | [
"cofenberg@gmail.com"
] | cofenberg@gmail.com |
d5d63ea0644724a8e05c0f499c4ff6e0919850ba | 9249ec07c51ac5c498e67ad0c75810e3c82bfb8c | /include/dynamics/types.hpp | 492897516bd4bb3e666a71b54e3f933d32be5b69 | [] | no_license | mjhaskell/dynamics | 6dda4914353ea416ee7c51c8816503cdbc813782 | 16e7f7f3904c3b57895712f2f4f0b5564e1e5d67 | refs/heads/master | 2021-10-27T04:02:38.534008 | 2019-04-15T21:27:53 | 2019-04-15T21:27:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,730 | hpp | #ifndef TYPES_HPP
#define TYPES_HPP
#include <Eigen/Core>
#include <Eigen/Dense>
#include "geometry/quat.h"
namespace dyn
{
struct ErrorState
{
enum
{
SIZE = 12
};
Eigen::Matrix<double,SIZE,1> vec;
Eigen::Map<Eigen::Vector3d> p;
Eigen::Map<Eigen::Vector3d> q;
Eigen::Map<Eigen::Ve... | [
"mhaskell9@gmail.com"
] | mhaskell9@gmail.com |
012d61c7b728351c744fbd5b3014cb0c50d5d731 | 5af973ebecf22a6ebe2f3575a75d4261fe9f9899 | /pointer ex/exe1/exe1/Source.cpp | 9daf1ccc94b650ff1255de8e9b53653582720b2b | [] | no_license | MrPhu/Cpp-Sample-Examples | f6ac52de4e5103e5e768186396d362beb6ff620a | dd2be98f3b94ac9fa87c3fc6128e5c4de8e6daff | refs/heads/master | 2020-06-25T22:42:23.567581 | 2017-07-12T10:47:41 | 2017-07-12T10:47:41 | 96,996,600 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 558 | cpp | /*Write a program that asks the user to enter integers as inputs to be stored in the variables 'a' and 'b' respectively.*/
/*There are also two integer pointers named ptrA and ptrB. Assign the values of 'a' and 'b' to ptrA and ptrB respectively, and display them.*/
#include <iostream>
#include <stdio.h>
#include <stri... | [
"MrPhu@github.com"
] | MrPhu@github.com |
21001ee201321dd5fb80e306e63b7558e86784f2 | 26a73f129fe207da29d3a836b3b3ab6551b0dbc9 | /client/src/main.cpp | 55b36226f8e75f042891ae370497ba0d2faad260 | [
"WTFPL"
] | permissive | dabra/mitakuuluu2 | d3b8331e7278146a9bf154ade2a7196016b0a570 | 87bd8d970223a6e2f4645a85b4bfa76ca88247f8 | refs/heads/master | 2021-01-21T15:57:57.280430 | 2014-09-04T13:30:51 | 2014-09-04T13:30:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,254 | cpp | /*
Copyright (C) 2013 Jolla Ltd.
Contact: Thomas Perl <thomas.perl@jollamobile.com>
All rights reserved.
You may use this file under the terms of BSD license as follows:
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions ar... | [
"coderusinbox@gmail.com"
] | coderusinbox@gmail.com |
6ecf6270390e119237e0ff8bcd057190f6e29e9e | 192187c2fc994d8de65cb1a3e16990ac3eced9a2 | /plat/infra/file/file_fd.cc | e1191d72c70d6b9b959ae39fd0befcc2fe18bc9a | [] | no_license | grh4542681/UAP | 61f7c6fe9ffb08f863c705ce532ead3fd8b025a6 | 5bb223fb310c33c6210f0a997d9b6c5a1cb281a4 | refs/heads/master | 2020-03-26T23:17:05.187533 | 2020-03-25T12:11:15 | 2020-03-25T12:11:15 | 145,526,757 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,420 | cc | #include "file_log.h"
#include "file_fd.h"
#include "file_api.h"
namespace file {
FileFD::FileFD() : io::FD()
{
ffd_ = NULL;
}
FileFD::FileFD(unsigned int fd, bool auto_close) : io::FD(fd, auto_close)
{
ffd_ = fdopen(fd, "w+");
if (GetFileName(fd_, file_name_) != FileRet::SUCCESS) {
file_name_.er... | [
"grh4542681@163.com"
] | grh4542681@163.com |
e57d5cf304b077b758249063dc2061331e710081 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/SOC/2011/simd/boost/simd/toolbox/predicates/functions/sb2b.hpp | fc6dc872c2562269d9ea02234013c842d98650a0 | [] | no_license | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 921 | hpp | //////////////////////////////////////////////////////////////////////////////
/// Copyright 2003 and onward LASMEA UMR 6602 CNRS/U.B.P Clermont-Ferrand
/// Copyright 2009 and onward LRI UMR 8623 CNRS/Univ Paris Sud XI
///
/// Distributed under the Boost Software License, Version 1.0
/// ... | [
"loufoque@gmail.com"
] | loufoque@gmail.com |
689a141908cbcf8f6d4e02754db83140bc5b068f | c9fd0edee1bf92987447abe8dfa495c49b87d43c | /programa6.3 aninhando if com if.cpp | 15fc970a1596b046655742784dc7d9a34d6cdb34 | [] | no_license | losfodo/c_mais_mais | 3c58caeb0cbd68111823bb4e623f0c004226545f | 395933377c969bafb9ad9642bc737ebb5506edbd | refs/heads/master | 2021-07-10T00:52:18.327837 | 2020-12-14T19:55:59 | 2020-12-14T19:55:59 | 220,064,724 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 547 | cpp | #include <iostream>
using namespace std;
/* um if dentro do outro if*/
int main(void) {
int idade;
char sexo;
cout<<"Qual a sua idade?"<<endl;
cin>>idade;
cout<<"Digite(m) para masculino, (f) para feminino"<<endl;
cin>>sexo;
if (idade>=18){
cout<<"Voce pode dirigir"<<endl;
if(sexo=='m... | [
"noreply@github.com"
] | noreply@github.com |
31b34adafb9a327f1d781103d23915e6035081d1 | 7111c4bed898072005bc4e06a221e31303c2f61e | /Week_04/homework/860.柠檬水找零.cpp | 09286ae04ec84f3ae5bd8234506fe9d7e4664bb4 | [] | no_license | Sunrise-123/algorithm017 | 9dfa3d21c02060c618abd49fc26a18e93b54a6cc | 9d2e46f4377b8d2f0368708ed53caf8aead85f0a | refs/heads/master | 2023-01-27T11:43:31.510468 | 2020-12-13T01:39:32 | 2020-12-13T01:39:32 | 298,916,748 | 0 | 0 | null | 2020-09-26T23:29:50 | 2020-09-26T23:29:50 | null | GB18030 | C++ | false | false | 520 | cpp | //思路:
// 分析:1. 0 < bill.length < 10000;
// 2. 只有5,10,20三种,且每次交易只需5美元;
// 3. 开始时没有钱
class Solution {
public:
bool lemonadeChange(vector<int>& bills) {
int m5 = 0, m10 = 0;
for (int bill : bills) {
switch (bill) {
case 5: m5++; break;
case 10: m5--; m10++; break;
case 20: {
if (m10 > 0) {... | [
"hxf6020@126.com"
] | hxf6020@126.com |
dd3d7a39eb5990d16a09dd5568791c54d2daf5d8 | fcc132131b929998a4bea75cf0ce9492daecb3ac | /gquiche/quic/core/quic_network_blackhole_detector.h | 254a1ffc19533284110cde7a477eda4f5c852c2e | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | Moxoo/quiche | 0fc8eaab5705c40b2d13b71fe98448407f980af0 | 16a9562e5040eeac7263ace423fedaf7202f24c5 | refs/heads/main | 2023-06-17T21:17:18.913695 | 2021-07-14T03:59:08 | 2021-07-14T03:59:08 | 382,257,508 | 0 | 0 | Apache-2.0 | 2021-07-02T06:52:12 | 2021-07-02T06:52:11 | null | UTF-8 | C++ | false | false | 3,181 | h | // Copyright (c) 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef QUICHE_QUIC_CORE_QUIC_NETWORK_BLACKHOLE_DETECTOR_H_
#define QUICHE_QUIC_CORE_QUIC_NETWORK_BLACKHOLE_DETECTOR_H_
#include "gquiche/quic/core/q... | [
"wangsheng@bilibili.com"
] | wangsheng@bilibili.com |
748c0bb4f19e53d7378c4c4f6f16f745ffe9ae03 | dd52ec42a528dfe3f8e42cea014ef4a79c18dcab | /Codeforces/735/735C.cpp | d4011563bd0982b14957d202dea8f0ae3c7d47be | [] | no_license | sKAR04/CP-Practice | abdc16c5348ec582307580b9f43c10d94079f4ef | 6655b6e9d40b970224fad982d8602e9f57e87133 | refs/heads/master | 2021-04-15T14:31:53.471126 | 2019-05-21T08:39:04 | 2019-05-21T08:39:04 | 126,747,690 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,837 | cpp | /*
######################################################
# I don't know what I'm doing with my life O.O #
######################################################
*/
#include <bits/stdc++.h>
using namespace std;
//Optimizations
#pragma comment(linker, "/stack:200000000")
#pragma GCC optimize("Ofast")
#pragma GCC... | [
"cs16btech11010@iith.ac.in"
] | cs16btech11010@iith.ac.in |
26e6bc935235cfe79d38bb1602c7ee095f66cb39 | fc56e4d0d227b774b2c4d0d54e237da35623bdb8 | /动态内存/动态内存/项目练习3.cpp | a56b4a5846bbc205399e2b2353ce249f690850e2 | [] | no_license | MRYoungITO/CPP_Learning | de4955fc05cd0c266fa57dd7f28199be3f45357b | 7a0d34657d22b18ec70f973115a654c40861e7e6 | refs/heads/master | 2023-04-06T18:00:47.235883 | 2021-04-08T16:13:39 | 2021-04-08T16:13:39 | 354,579,567 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 672 | cpp | #include<iostream>
#include <string>
#include <stdlib.h>
using namespace std;
int main(void) {
int* p;
int row, col;
int i, j, k = 1;
cout << "Input number of row: " << endl;
cin >> row;
cout << "Input number of colum: " << endl;
cin >> col;
p = new int[row * col];
if(!p) {
cout << "Not allocate memory ! "... | [
"610139293@qq.com"
] | 610139293@qq.com |
f3aba0c4492a2ae938ab61bdd2fd73ce2d733216 | f0de6c3ffc999616a0a9580a8a3678aef283cdf5 | /chrome/browser/vr/elements/ui_element_name.cc | c2699f2697c835be96ff16cd23e44150e036d84d | [
"BSD-3-Clause"
] | permissive | r00tk1ts/chromium | db18e3940667da7aa76baff69c229788baa5d706 | a3cef2a9d2ba64068c1fe7de81500d9d33cf4f87 | refs/heads/master | 2023-02-23T04:57:23.997581 | 2018-03-28T10:54:29 | 2018-03-28T10:54:29 | 127,127,996 | 1 | 0 | null | 2018-03-28T11:07:29 | 2018-03-28T11:07:28 | null | UTF-8 | C++ | false | false | 4,972 | 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 "chrome/browser/vr/elements/ui_element_name.h"
#include "base/logging.h"
#include "base/macros.h"
namespace vr {
namespace {
static const cha... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
dd817e3fd45b48faaf6666a4b41cec8ff0e30f4f | 04c0f4652bebe27bc7c931c2199d54462c175e8c | /Shared/colorcombobox.cpp | 3b7f010e1a79462e42e5f97062aa8c11a5dc3a6b | [] | no_license | layerfsd/ToDoList_Dev | bdd5b892e988281b99b6167d6c64b6fe8466a8b8 | d9bb3c8999ee72bf85a92cc29f0d6aa14d3f3b35 | refs/heads/master | 2021-09-07T13:16:05.508224 | 2018-02-23T10:31:21 | 2018-02-23T10:31:32 | 125,009,385 | 2 | 2 | null | 2018-03-13T07:22:51 | 2018-03-13T07:22:51 | null | UTF-8 | C++ | false | false | 3,027 | cpp | // colorcombobox.cpp : implementation file
//
#include "stdafx.h"
#include "colorcombobox.h"
#include "dlgunits.h"
#include "graphicsmisc.h"
#include "misc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//////////////////////////////////////////////////////////////... | [
"daniel.godson@gmail.com"
] | daniel.godson@gmail.com |
f88b1f8d8e5a3421dbd271780a415617f6c4bff5 | 133d0f38b3da2c51bf52bcdfa11d62978b94d031 | /testAutocad/vendor/ifc-sdk/src/ifc2x3/IfcTextLiteral.cpp | d97bd9ad940f03a06d6eece968fc0bc0e7a7e5f6 | [] | no_license | Aligon42/ImportIFC | 850404f1e1addf848e976b0351d9e217a72f868a | 594001fc0942d356eb0d0472c959195151510493 | refs/heads/master | 2023-08-15T08:00:14.056542 | 2021-07-05T13:49:28 | 2021-07-05T13:49:28 | 361,410,709 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,624 | cpp | // IFC SDK : IFC2X3 C++ Early Classes
// Copyright (C) 2009 CSTB
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any late... | [
"antoine.cacheux@procal.fr"
] | antoine.cacheux@procal.fr |
52e1d118fb0eab886a6ba9adffef3cfb924fcad1 | 597c48f639086b2f476115c2f3d835df6169047b | /command/main.cpp | ce3125bb2aa6efb0424f0b1407519d3adf2494dd | [] | no_license | thuvu33/design_pattern | 25bc56f43a0097fb0f2fe1eea922bc791f29ed38 | 69f340161e3118cd0c6359b0fe66deba2ef01084 | refs/heads/master | 2020-04-12T10:04:36.141041 | 2016-07-08T05:42:32 | 2016-07-08T05:42:32 | 162,417,976 | 1 | 1 | null | 2018-12-19T09:57:44 | 2018-12-19T09:57:44 | null | UTF-8 | C++ | false | false | 1,822 | cpp | #include "IGroup.h"
#include "CodeGroup.h"
#include "PageGroup.h"
#include "RequirementGroup.h"
#include "Invoker.h"
#include "AddRequirementCommand.h"
#include "DeletePageCommand.h"
#include <iostream>
using namespace std;
void DoIt()
{
cout << "----------客户想增加一个需求----------" << endl;
IGroup *rg = new CRequ... | [
"wm8996@closeli.cn"
] | wm8996@closeli.cn |
3517007eec282e87d3f2f724f32345a9d7c6bc96 | 938f3e093db0bd81f8543b5bb16ebb8486549596 | /DA_second_pass/src/Node.cpp | 9151b1d3a5eab041300b74bc829274fad13071df | [
"MIT"
] | permissive | SharmaNishant/rsia | 8328b07b3a4697caa53ca78f3b6dd6ce0bbe68f2 | 81aed5e25ebec67244db26f017f0acb2f974099f | refs/heads/master | 2021-01-12T04:59:06.145343 | 2016-12-21T21:19:44 | 2016-12-21T21:19:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,319 | cpp | /**
888b 888 d8b 888 888 888
8888b 888 Y8P 888 888 888
88888b 888 888 888 888
888Y88b 888 888 88888b.d88b. 88888b. 888 888 .d8888b 88... | [
"nishants1994@gmail.com"
] | nishants1994@gmail.com |
0dd91a2a7743153e63c714f4fe5216ddd1d1ab9c | bb6ebff7a7f6140903d37905c350954ff6599091 | /third_party/skia/bench/StackBench.cpp | 3b41cb65cebcb427d5aa1ecd0baa7da4b87e3c96 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0"
] | permissive | PDi-Communication-Systems-Inc/lollipop_external_chromium_org | faa6602bd6bfd9b9b6277ce3cd16df0bd26e7f2f | ccadf4e63dd34be157281f53fe213d09a8c66d2c | refs/heads/master | 2022-12-23T18:07:04.568931 | 2016-04-11T16:03:36 | 2016-04-11T16:03:36 | 53,677,925 | 0 | 1 | BSD-3-Clause | 2022-12-09T23:46:46 | 2016-03-11T15:49:07 | C++ | UTF-8 | C++ | false | false | 4,675 | cpp | /*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "Benchmark.h"
#include "SkRandom.h"
#include "SkChunkAlloc.h"
#include "SkDeque.h"
#include "SkTArray.h"
#include "SkTDArray.h"
// This file has several benchmarks ... | [
"mrobbeloth@pdiarm.com"
] | mrobbeloth@pdiarm.com |
f6da109670ae4d0784d11d2bf5bf7a4cdedd36a0 | 189f52bf5454e724d5acc97a2fa000ea54d0e102 | /combustion/ras/moriyoshiHomogeneous/0.0017/U | 3644ad85539b7e6c66a525776e412d5803b94dd1 | [] | no_license | pyotr777/openfoam_samples | 5399721dd2ef57545ffce68215d09c49ebfe749d | 79c70ac5795decff086dd16637d2d063fde6ed0d | refs/heads/master | 2021-01-12T16:52:18.126648 | 2016-11-05T08:30:29 | 2016-11-05T08:30:29 | 71,456,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 63,833 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1606+ |
... | [
"peterbryz@yahoo.com"
] | peterbryz@yahoo.com | |
c6df8642b9e8088e6fe6064bc84e8d88ece6311d | 13f78c34e80a52442d72e0aa609666163233e7e0 | /USACO/Training Website/Chapter 3/Section 3.3 - Eulerian Tours/shopping.cpp | f254cc66a0e44a02f5f0bf30210908276bf44c9c | [] | no_license | Giantpizzahead/comp-programming | 0d16babe49064aee525d78a70641ca154927af20 | 232a19fdd06ecef7be845c92db38772240a33e41 | refs/heads/master | 2023-08-17T20:23:28.693280 | 2023-08-11T22:18:26 | 2023-08-11T22:18:26 | 252,904,746 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,506 | cpp | /*
ID: sunnyky1
LANG: C++
TASK: shopping
Solution: DP, with lots of painful input parsing.
Runtime: O(B^5 * S)
*/
#include <iostream>
#include <fstream>
#include <algorithm>
#define MAXCODE 1000
#define MAXS 105
#define INF 987654321
using namespace std;
struct Offer {
int N, price;
int code[5], count[5];
... | [
"43867185+Giantpizzahead@users.noreply.github.com"
] | 43867185+Giantpizzahead@users.noreply.github.com |
1fae572d0bb70b197b262116710b50477930cb9f | 8a2b0eed5de488898f161e0cbb492aa015fe9c28 | /Kiwi-Engine/Kiwi-Engine/Events/IRenderEventEmitter.cpp | 604e3e75a6473f1b69bf123a00c312bf00e048cb | [] | no_license | nicoawalker/Kiwi-Engine | 5ded0273806d481381699396d9d4eb8ed2b974cd | f51c9e13ba3fddbe29ca672d96443ab091fa054b | refs/heads/master | 2021-01-20T23:27:06.419846 | 2017-11-06T22:59:32 | 2017-11-06T22:59:32 | 42,185,047 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,056 | cpp | #include "IRenderEventEmitter.h"
namespace Kiwi
{
void IRenderEventEmitter::_EmitRenderEventQueue()
{
std::unique_lock<std::recursive_mutex> ulock( m_renderEventEmitter_M );
this->_EmitEventQueue();
}
void IRenderEventEmitter::DisconnectRenderEventReceiver( IEventReceiver<RenderEvent>& receiver )
{
std:... | [
"nicoawalker@gmail.com"
] | nicoawalker@gmail.com |
53c9353acb0b4018f3e4c0cb83e928558c233e84 | bba90fec331322dd79af40bbb165ae9b86c53968 | /inkdrop.cpp | e468720e2659f1e3c453b311946f08449df378a5 | [] | no_license | dinhhung2910/project1 | 1a8b236cc804ff7ec6a3ac40eb209ac395102c45 | 47913f4ea010018a72f730bdc6dd14e719e59b92 | refs/heads/master | 2020-04-10T04:48:46.479519 | 2018-12-19T14:04:06 | 2018-12-19T14:04:06 | 160,809,862 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,542 | cpp | #include "inkdrop.h"
#include "random.h"
#include "math.h"
#include "singledrop.h"
#include <QTextStream>
// get and set methods
void InkDrop::setAmount(int amount) {
this->amount = amount;
}
void InkDrop::setFreq(int freq) {
this->freq = freq;
}
void InkDrop::setStart(int startX, int startY) {
this->start... | [
"20161925@student.hust.edu.vn"
] | 20161925@student.hust.edu.vn |
ca1380be12b2fd2134a54d588d71950a38cf0795 | e76ea38dbe5774fccaf14e1a0090d9275cdaee08 | /src/media/filters/source_buffer_stream_unittest.cc | 7b525b90b21eb2a8eea0333f6ed937f21cdf928f | [
"BSD-3-Clause"
] | permissive | eurogiciel-oss/Tizen_Crosswalk | efc424807a5434df1d5c9e8ed51364974643707d | a68aed6e29bd157c95564e7af2e3a26191813e51 | refs/heads/master | 2021-01-18T19:19:04.527505 | 2014-02-06T13:43:21 | 2014-02-06T13:43:21 | 16,070,101 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 105,056 | cc | // 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.
#include "media/filters/source_buffer_stream.h"
#include <string>
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
#inc... | [
"ronan@fridu.net"
] | ronan@fridu.net |
14fb9a9a7c50d42b74a455702fa98be9340c6d16 | fcae9001df385fd0ec597482305096d5fa0e3632 | /Basic/Specifiers.h | ef87d339e887254b1c1150f527f95d825df94128 | [] | no_license | huangfeidian/clang-notes | 3f21435c96f4068e3dcbaf916f3105206a46b628 | 13b6673f2f1f189950380e4d0b894a7103a56add | refs/heads/master | 2021-01-12T15:07:59.187482 | 2016-10-08T14:49:38 | 2016-10-08T14:49:38 | 71,712,588 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,662 | h | //===--- Specifiers.h - Declaration and Type Specifiers ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"huanghuiliang@live.cn"
] | huanghuiliang@live.cn |
7e7726f85567514fcea375f9d80705e32e2661c7 | 288e945732ace900035694661b076ecc1d5d29e8 | /CONTESTCANGAYE/main.cpp | 493b9706c4a144d3887be7427d1f25f277548b3a | [] | no_license | AtomicOrbital/CppSource | bf440704386cbd200f90b333a7c3c63dfee45abf | 29e312fb1f9b3f1be1c4aee86db8c1942b17bcbd | refs/heads/main | 2023-06-20T00:42:21.656879 | 2021-07-16T08:27:35 | 2021-07-16T08:27:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,042 | cpp | #include <bits/stdc++.h>
using namespace std;
struct sum
{
int gt;
int l;
sum()
{
gt=l=0;
}
};
int main()
{
int n;
cin>>n;
int f[n+1]={},tong[n+1]={},luul[n+1]={},luur[n+1]={};
int ressum=-1e9,resl=0,resr=0;
sum minn[n+1]={};
minn[0].gt=1e9;
f... | [
"phuonghoand2001@gmail.com"
] | phuonghoand2001@gmail.com |
72aa6132d9b4cc61588f847ec6b9edd2070dfcef | e45e4bb2d7769011aba0a441261c0b5387e72352 | /Source/CPPProject/EnemyAnimInstance.cpp | dc0b34940a55fd520a3f6581070435a7007f7577 | [] | no_license | sami-s-56/SwordFightingGame | d2c2783121858bcb7eb853b0b0e58c2c60144fb9 | 643237f8fd33d1f1a42721738b9b0ce3ba144560 | refs/heads/main | 2023-05-07T07:39:22.816407 | 2021-06-02T19:01:03 | 2021-06-02T19:01:03 | 373,248,611 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 812 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "EnemyAnimInstance.h"
#include "EnemyCharacter.h"
void UEnemyAnimInstance::NativeInitializeAnimation()
{
EnemyPawn = TryGetPawnOwner();
if (EnemyPawn)
{
EnemyReference = Cast<AEnemyCharacter>(EnemyPawn);
}
}
... | [
"68413977+sami-teck@users.noreply.github.com"
] | 68413977+sami-teck@users.noreply.github.com |
8dd121dd050d4f9ddd84c097a439cd7a06ce0a8d | 2efbd55f9c7f39bddc1348f3a9d38a8f05d0644a | /plugins/eeui/WeexSDK/ios/weex_core/Source/include/JavaScriptCore/API/JSAPIWrapperObject.h | 73b57edb7824c37dc11238b1388be07b3b62e218 | [
"MIT"
] | permissive | bonniesl/yktapp | 23b05cc53214269bf1d792dcf41993b425bfe470 | 3f96b7aad945e9aa110f0643d9a57e28d0645ab6 | refs/heads/master | 2023-03-27T04:27:14.921221 | 2021-03-25T06:29:16 | 2021-03-25T06:33:12 | 351,330,677 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,079 | h | /*
* Copyright (C) 2013 Apple Inc. 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 list of condi... | [
"1336429771@qq.com"
] | 1336429771@qq.com |
24c24255d92c462798bb179e8ec7206be9ec90fd | dd6d7645f441dffe35b38f0e542003b8de55d4e1 | /helloworld.cpp | 4950f1af0d35b8e1a8eda4b4346f0018f30d71c3 | [] | no_license | kafeaver/hello-world | 023ed794d6195a9dd09a46086cdd51b8370da440 | a656edd7abf2bc6ee25f6c9180f76dd9312bf167 | refs/heads/master | 2021-01-01T15:22:51.396872 | 2017-07-27T17:28:56 | 2017-07-27T17:28:56 | 97,607,384 | 0 | 2 | null | 2017-07-27T17:28:57 | 2017-07-18T14:21:36 | C++ | UTF-8 | C++ | false | false | 125 | cpp | #include <iostream>
using namespace std;
int main() {
cout << "M GO BLUE";
cout << "I love Michigan";
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
699e534c875cf89f8df73866d8c6137640187af5 | 160f5a61a40c62b6a874fc108549ed2d48679c1a | /Isotope.cc | 3370782dc62565c9db750ba2f18c61b6d6999fef | [] | no_license | jintonic/mad | e1f106d272ff7fcf8edc85a1bc5ecdc795c1a0a6 | 5a791c855e1a0da2e9a0eb8b27e8ed42dd804387 | refs/heads/master | 2022-08-08T00:17:34.987640 | 2022-08-03T23:33:40 | 2022-08-03T23:33:40 | 9,931,224 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,142 | cc | #include "Isotope.h"
#include <UNIC/Units.h>
#include <UNIC/Constants.h>
using namespace UNIC;
#include <cmath>
using namespace std;
//______________________________________________________________________________
//
MAD::Isotope::Isotope() :
TNamed(), fZ(0), fN(0), fA(0), fM(0), fR(0), fS(1*UNIC::fermi) {};
//... | [
"jing.leon@gmail.com"
] | jing.leon@gmail.com |
2ed8793dae53914bf59c0c2ffcd6684b15cbbc10 | c776476e9d06b3779d744641e758ac3a2c15cddc | /examples/litmus/c/run-scripts/tmp_1/MP+dmb.sy+ctrl-ctrl-rfi-ctrl-rfi.c.cbmc.cpp | 0fa56ad0ecec95ea44f86ebcc94eb5db04836786 | [] | no_license | ashutosh0gupta/llvm_bmc | aaac7961c723ba6f7ffd77a39559e0e52432eade | 0287c4fb180244e6b3c599a9902507f05c8a7234 | refs/heads/master | 2023-08-02T17:14:06.178723 | 2023-07-31T10:46:53 | 2023-07-31T10:46:53 | 143,100,825 | 3 | 4 | null | 2023-05-25T05:50:55 | 2018-08-01T03:47:00 | C++ | UTF-8 | C++ | false | false | 48,334 | cpp | // 0:vars:4
// 4:atom_1_X0_1:1
// 5:atom_1_X6_1:1
// 6:atom_1_X9_1:1
// 7:thr0:1
// 8:thr1:1
#define ADDRSIZE 9
#define NPROC 3
#define NCONTEXT 1
#define ASSUME(stmt) __CPROVER_assume(stmt)
#define ASSERT(stmt) __CPROVER_assert(stmt, "error")
#define max(a,b) (a>b?a:b)
char __get_rng();
char get_rng( char from, cha... | [
"tuan-phong.ngo@it.uu.se"
] | tuan-phong.ngo@it.uu.se |
fe024fbbc7501b88a0068f47697c2b5f58c3a936 | f41cf5472c01e2b098c0ff35b8dd13b3099a2a40 | /Source/MapperInputThread.h | c9d8a14c0eeaa3acc5aa9087d6970b1d3f233c84 | [] | no_license | johnty/SimpleMapperSigGUI | 462a15c72e906c5084147572a81c0eaa5c00886a | dfe7ea0d66f942c7d127dae0513c1751dd70a60c | refs/heads/master | 2020-04-24T06:22:35.297905 | 2019-02-27T20:41:46 | 2019-02-27T20:41:46 | 171,762,903 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,286 | h | /*
==============================================================================
MapperInputThread.h
Created: 19 Feb 2019 10:36:05pm
Author: johnty
==============================================================================
*/
#pragma once
#include "mapper/mapper_cpp.h"
#include "JuceHeade... | [
"johntywang@gmail.com"
] | johntywang@gmail.com |
e38642672e50ad055e7e9345852e5baea607936a | 74a54b08d35510245f93398bc06b06a0539b972b | /CentralServer/CentralServer/main.cpp | 6c64750a09e68e191725ac30ccd39f932f652660 | [] | no_license | Jonny0815/vs_sose18 | c60a3a6c7e0c6e82904bda0444fbd2241ddbe80e | 058eb8d9a6f8cbaca69c9c4206bd686f0d705256 | refs/heads/master | 2020-03-22T14:38:01.569739 | 2018-05-20T22:50:31 | 2018-05-20T22:50:31 | 140,193,603 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560 | cpp | #include <cstdlib>
#include <iostream>
#include <boost/bind.hpp>
#include <boost/asio.hpp>
#include "udp_server.h"
#include "tcp_server.h"
using boost::asio::ip::tcp;
using boost::asio::ip::udp;
int main(int argc, char* argv[])
{
try
{
if (argc != 2)
{
std::cerr << "Usage: <port>\n";
return 1;
}
b... | [
"Jonny0815@JONNY0815"
] | Jonny0815@JONNY0815 |
9c7b489590b1aa7a28d3922867058584a95f2728 | 38c10c01007624cd2056884f25e0d6ab85442194 | /third_party/pdfium/fpdfsdk/include/formfiller/FFL_CBA_Fontmap.h | 3e1331839e62a4ba635c44169e02826ba265e4d6 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0"
] | 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 | 1,746 | h | // Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FPDFSDK_INCLUDE_FORMFILLER_FFL_CBA_FONTMAP_H_
#define FPDFSDK_INCLUDE_... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
e0db43d32fcbedb74e87cb76b5ac8984f71f15a4 | bfc60cc7c4bf9255c0c1b82f759fee1eefa75253 | /LEETCODE/Dynamic Programming/Coin Change/Q322. Coin Change.cpp | fcf77ceb537468e8ed09dd58152e160f54926aef | [] | no_license | anushkaGurjar99/Data-Structure-and-Algorithms | aaffdd1dfaf0bdb27c070abd7f9b6b2ae540632a | c3d11d3b344b4041cd6137e857ce4d2cbef77daf | refs/heads/master | 2023-01-03T22:52:22.919771 | 2020-10-19T12:01:48 | 2020-10-19T12:01:48 | 239,680,964 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,510 | cpp | /*
* Author : Anushka Gurjar
* Date : June 2020
* flags : -std=c++14
*/
#include<bits/stdc++.h>
using namespace std;
// Problem Statement: https://leetcode.com/problems/coin-change/
class Solution{
public:
int coinChange(vector<int>& coins, int amount){
int MAX = amount + 1;
vect... | [
"noreply@github.com"
] | noreply@github.com |
50f3a80bbbe52a54aff871e2d92f12fc03afd269 | 88bbb10b563918fb4f645e4cabfae7dd0eb72a5e | /02.LeetCode/136.single-number/OJ_Prj/OJ_Prj/OJ.h | 4c6519bd884e16d3cc377e35a080eb7b928bff6e | [] | no_license | gfxmode/OJ | 0cb3ba2ef0d7095e9e7c23e6ccd75ed53f65e419 | d74dd04d44c4afd60ac92fdd5dbc674894a26d83 | refs/heads/master | 2021-08-28T18:15:56.551151 | 2021-08-07T13:38:18 | 2021-08-07T13:38:18 | 100,834,332 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 947 | h | #ifndef __OJ_H__
#define __OJ_H__
#include <vector>
#include <map>
using namespace std;
class OJ
{
public:
OJ(void){};
~OJ(void){};
int singleNumber(vector<int>& nums)
{
map<int, int> mapInt;
vector<int>::iterator iterNums = nums.begin();
for (; nums.end() != iterNums; ++ite... | [
"gfxmode@live.com"
] | gfxmode@live.com |
e015b00585ad5ee43d805a0d28d340c512afc339 | 03f037d0f6371856ede958f0c9d02771d5402baf | /graphics/VTK-7.0.0/Rendering/Matplotlib/Testing/Cxx/TestMathTextActor.cxx | e6ed67db09eb89fbd237aa2d4ca2312ef470f2a5 | [
"BSD-3-Clause"
] | permissive | hlzz/dotfiles | b22dc2dc5a9086353ed6dfeee884f7f0a9ddb1eb | 0591f71230c919c827ba569099eb3b75897e163e | refs/heads/master | 2021-01-10T10:06:31.018179 | 2016-09-27T08:13:18 | 2016-09-27T08:13:18 | 55,040,954 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,681 | cxx | /*=========================================================================
Program: Visualization Toolkit
Module: TestMathTextActor.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
Thi... | [
"shentianweipku@gmail.com"
] | shentianweipku@gmail.com |
9abed61667c46b0e6d01d9443f17ee3bef8605c2 | d84c107e6da7e03b41382409987ae5d46b59bca2 | /source/idlib/math/Simd.h | a845f3cf98b803cf78525851da83e13da364b07f | [
"MIT"
] | permissive | JasonHutton/QWTA | b3854cd4873a46a8a9089ee3481a47074b62236b | 7f42dc70eb230cf69a8048fc98d647a486e752f1 | refs/heads/main | 2023-04-13T02:15:14.639793 | 2021-05-01T21:29:18 | 2021-05-01T21:29:18 | 363,500,974 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,771 | h | // Copyright (C) 2007 Id Software, Inc.
//
#ifndef __MATH_SIMD_H__
#define __MATH_SIMD_H__
/*
===============================================================================
Single Instruction Multiple Data (SIMD)
For optimal use data should be aligned on a 16 byte boundary.
All idSIMDProcessor routi... | [
"azuvector@gmail.com"
] | azuvector@gmail.com |
c1132bfb57b06ad513dca69889a310433e403061 | bbb3ec2ad90dff770b1febffddbaf98cd698a549 | /lib/drv/mc2pa8201/panelTraits/NokiaN82_TypeB.h | 17d0bcb376db99636ddb00986a2a676ede8e68a4 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | hmms/xmemtft | 7fca461ac4602ad968888b015b8e5d6bbf0bdc42 | ecd062bf66ffefb9350d2088ac40c181cec21929 | refs/heads/master | 2021-01-18T07:51:14.943947 | 2013-07-20T06:57:55 | 2013-07-20T06:57:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,933 | h | /*
XMEM LCD Library for the Arduino
Copyright 2012,2013 Andrew Brown
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 b... | [
"andy@andybrown.me.uk"
] | andy@andybrown.me.uk |
c3b78c19d4aed33c003e03a836dd16fe8bf472b9 | 9f394fa07d7a87616c76764d1be501159d54f1ae | /week1/23.cpp | bf3cbcd2873ea2c817778c7f1197ecbe4b4d1169 | [] | no_license | asuleyman2403/Algorithms-DataStructures | e2c9ce4a53c82e4305e7209dd13282150ae77223 | 88bca7a9f9569baf369477c44cf0565415523641 | refs/heads/master | 2020-04-13T23:30:22.363552 | 2018-12-29T12:10:37 | 2018-12-29T12:10:37 | 163,508,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 627 | cpp | #include <iostream>
using namespace std;
string isBalanced(string s){
bool ok;
while(!s.empty()){
ok=false;
for(int i=0;i<s.size();i++){
if((s[i]=='(' && s[i+1]==')')){
s.erase(i,2);
ok=true;
i-=2;
}else{
if((s[i]=='[' && s[i+1]==']')){
s.erase(i,2);
ok=true;
i-=2;
}else{... | [
"you@example.com"
] | you@example.com |
dd5fe3676adf81d5b4dc0aa4151a218b1b2b1ccf | 2bd3e228f222a7ad8069ea4cf77e1ff5e9024459 | /musicsheetwriter/Software/branche/1.0/score.h | d96c5bd3645f336de664ce407f6378c888615f8a | [] | no_license | Ansou1/Project | 454417b3761a182c850535d3e3d661161ee18f2e | 49821671b8f2cc2925575848e8133358fe0ad758 | refs/heads/master | 2021-03-27T13:30:14.963446 | 2017-04-09T22:18:05 | 2017-04-09T22:18:05 | 79,645,337 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 924 | h | #ifndef SCORE_H
#define SCORE_H
#include <QString>
#include "scoreview.h"
#include <QtXml/QDomDocument>
class Score
{
public:
Score(QString partition, QString compositeur, int rythme, int battement, QString tempo);
Score();
~Score();
void setPartition(QString partition);
void setCo... | [
"simondaguenet81@gmail.com"
] | simondaguenet81@gmail.com |
cb65c7208b84b5e804b10ee5fb8082fc8662498c | 3c09d1c279c8578791dae535852c06e09efad4a1 | /Projects/Dragomir Sotirov/STL/15/main.cpp | 44f1f9fae286fdd75fa492809d18a542412a75c8 | [] | no_license | rosen90/GitHub | f00653f8a65cdffc479b70d2d7ca8f9e103d3eeb | 851d210f2f6073d818e0984fa9daab96e833b066 | refs/heads/master | 2016-09-12T23:57:19.530896 | 2016-05-04T22:09:03 | 2016-05-04T22:09:03 | 58,085,509 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | cpp | #include <iostream>
#include <algorithm>
#include <iterator>
#include <list>
#include <vector>
using namespace std;
int main() {
vector<int> result;
list<int> listIntegers;
listIntegers.push_back(1);
listIntegers.push_back(2);
listIntegers.push_back(3);
listIntegers.push_back(15);
listIntegers.push_back(8);... | [
"karadinev@gmail.com"
] | karadinev@gmail.com |
2fa4fd468b6bf57cb7de5230c225a14117ac02ae | 054180391b77a52174fd85e9594764bee249e926 | /include/lzw.h | 6ef1be49f3b19b8d996091de82b5a84f117573b5 | [] | no_license | makintunde/lzw | dcdcbe090dc4ca6e99dc69ee7b26022f790b8e98 | 2df369159d0f0fd68a62496fda0a5bd6a5f5f0ca | refs/heads/master | 2021-01-10T07:51:28.898476 | 2015-12-29T09:34:25 | 2015-12-29T09:34:25 | 44,979,571 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 563 | h | #include "lzw_utils.h"
#include <bits/stdc++.h>
using namespace std;
class Compressor {
public:
Compressor();
// Encode a string using LZW given a corresponding dictionary.
void encode();
// Decode a code into its original string, given a dictionary and a code.
void decode();
// Accessor methods.
void... | [
"michael.akintunde13@imperial.ac.uk"
] | michael.akintunde13@imperial.ac.uk |
0a6d79f2ef5db03620318b6f3de0e8cf1ce87a33 | 4ad2ec9e00f59c0e47d0de95110775a8a987cec2 | /_Atcoder/Mujin Programming Challenge 2017/A/main.cpp | d343582d1841533fec6f5072cca2ef0a37b0e272 | [] | no_license | atatomir/work | 2f13cfd328e00275672e077bba1e84328fccf42f | e8444d2e48325476cfbf0d4cfe5a5aa1efbedce9 | refs/heads/master | 2021-01-23T10:03:44.821372 | 2021-01-17T18:07:15 | 2021-01-17T18:07:15 | 33,084,680 | 2 | 1 | null | 2015-08-02T20:16:02 | 2015-03-29T18:54:24 | C++ | UTF-8 | C++ | false | false | 846 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
#include <algorithm>
#include <cmath>
using namespace std;
#define mp make_pair
#define pb push_back
#define ll long long
#define maxN 100011
#define mod 1000000007
int n, i;
ll x[maxN], dead, pos;
ll ans = 1;
bool check(ll pos) {
ll ma... | [
"atatomir5@gmail.com"
] | atatomir5@gmail.com |
33c72aa0fc3027c85975097cf79ce23051d8b8dd | 70d1e5fe62fe2ad82e2b2ea8501859aa41987ead | /serial_set_time.ino | 4ad001879c9c67b2c5c20841ba47d1c2b342fdb8 | [] | no_license | ldijkman/Arduino_Time_without_RTC_adjustTime | 4f00e0abfb9602acc58b82bf77af3cd3a78c885b | 0a536edfa5ee5154c48c1f2dcd1acff3702db49f | refs/heads/main | 2023-06-25T16:39:33.893165 | 2021-04-28T07:07:01 | 2021-04-28T07:07:01 | 359,069,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,219 | ino | /*
TimeSerial.pde
example code illustrating Time library set through serial port messages. HH MM SS DD MM YYYY
seconds per day to adjust time + or -
to make the clock more accurate
let the clock run for a day with sectoadjustperday = +8.5; // + or -
set to zero 0
compare time with another ... | [
"noreply@github.com"
] | noreply@github.com |
961d9458a0916c820b9d76c0f531b68d2371ffa6 | 927c2b11739dccab27a44d5c1c76bbbc38add8f1 | /Practice/ZUCCACM/Problem : Subsequence/Problem : Subsequence/main.cpp | afd56743225a7a6a0edd6e0e8738421135acbd40 | [] | no_license | civinx/ACM_Code | 23034ca3eecb9758c3c00a519f61434a526e89cc | d194ee4e2554a29720ac455e6c6f86b3219724ee | refs/heads/master | 2021-09-15T06:18:09.151529 | 2018-05-27T18:07:25 | 2018-05-27T18:07:25 | 105,544,957 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,620 | cpp | //
// main.cpp
// Problem : Subsequence
//
// Created by czf on 16/5/12.
// Copyright © 2016年 czf. All rights reserved.
//
#include <cstdio>
const int maxn = 100000 + 100;
int a[maxn], Max[maxn], Min[maxn];
int main() {
int n, m, k;
while (~scanf("%d%d%d",&n,&m,&k)) {
for (int i = 0; i < n; i ++)... | [
"31501293@stu.zucc.edu.cn"
] | 31501293@stu.zucc.edu.cn |
4a25105f271e97197462f3b8f35056ec41c23c6b | 0aa0042e9000a64bb94f14997c7b8b13e84444fd | /p2/2-chat/server.hpp | d52937acf99a95826488278e0fd38ef044b4964d | [] | no_license | pavluntiy/cpp | f20452049e68fea592ccaca63318857f5f347239 | fd43fa0025d5c8f49f200792c4bc05b942b94c2e | refs/heads/master | 2021-01-21T13:33:30.951305 | 2016-05-05T19:18:35 | 2016-05-05T19:18:35 | 52,671,618 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | hpp | #ifndef SERVER_HPP
#define SERVER_HPP
#include <iostream>
#include <cstdio>
#include <map>
#include <string>
#include "baseserver.hpp"
class Server: public BaseServer
{
void broadcast(std::string msg);
virtual void listener_event(MySocket &socket) override;
virtual void error_event(MySocket &socket) override... | [
"itasarom@gmail.com"
] | itasarom@gmail.com |
df4a908c5415d9497a002275cebece0dfec17633 | 7b83ba2cdfb21b2d99a2482f8f9969232844e339 | /0143_Reorder_List/MQQM.cpp | 7ea4d7cf37c361560e496ae95ba63e66176b03fd | [] | no_license | MQQM/LeetCode | 515b1bab62f174753c5a50dee5e3bd63500a78dc | ad3ce34c4b8a1a2cb5be59a64a1633747a1d55e4 | refs/heads/master | 2020-04-01T23:37:37.421439 | 2020-01-23T05:07:58 | 2020-01-23T05:07:58 | 152,594,081 | 1 | 0 | null | 2018-10-11T13:12:12 | 2018-10-11T13:12:12 | null | UTF-8 | C++ | false | false | 1,702 | cpp | /*
题目:
给定一个单链表 L:L0→L1→…→Ln-1→Ln ,将其重新排列后变为: L0→Ln→L1→Ln-1→L2→Ln-2→…
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 1:
给定链表 1->2->3->4, 重新排列为 1->4->2->3.
示例 2:
给定链表 1->2->3->4->5, 重新排列为 1->5->2->4->3.
做法:用快门指针分成前后两段链表,将后半段链表反转,然后按照指定顺序排列。
*/
/**
* Definition for singly-linked list.
* struct ListNode {
* i... | [
"noreply@github.com"
] | noreply@github.com |
a49aa8e14cebc9588b9659449f654a346662e083 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /v8/src/builtins/builtins-function.cc | 0a631bff5cdb5242cb210cf5068936a53786e6b9 | [
"BSD-3-Clause",
"SunPro",
"bzip2-1.0.6"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 11,889 | cc | // Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/builtins/builtins.h"
#include "src/builtins/builtins-utils.h"
#include "src/compiler.h"
#include "src/string-builder.h"
namespace v8 {
n... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
d4b4de528882ca67eed238219e24a1f27ac3ac34 | e38c357a31a1905370a03c8bf1ec791b6b171ea8 | /wstep-do-programowania/zajecia-8/change-to-uppercase.cpp | efa9be30aa312e1a9a743ad520a950d72bf9ffc9 | [
"MIT"
] | permissive | YaYanush/software-engineering | afeaaf8d68e7e2356a74614a7568e3085b9f0d3d | 30b5c3431a9034bf5850bf6a4992984027aeaed1 | refs/heads/master | 2023-04-13T19:16:46.535782 | 2021-05-05T19:39:47 | 2021-05-05T19:39:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | cpp | // Napisać program pobierający od użytkownika napis,
// a następnie wypisujący wynik zamiany w tym napisie
// wszystkich małych liter na wielkie.
#include <iostream>
#include <cstring>
int main() {
// input
const int array_length = 100;
char text[array_length];
std::cout << "Input text of maximum 99... | [
"konrad.pagacz@gmail.com"
] | konrad.pagacz@gmail.com |
e4b526084c179d008b784863f5cb2bb9225205a2 | 45e4f31e5a1effea7fcf80aacee0593b7d4dbb0a | /fizz/record/test/EncryptedRecordBench.cpp | 93f552ba46875454b36be653fe95ac09b9292dce | [
"BSD-3-Clause"
] | permissive | sheinzle/fizz | e1b6f1d36f17ad05682a922ed5b5e6260a725bf8 | ebbc0d7c800c3cc09575668a90ab8558398dfed4 | refs/heads/master | 2023-05-08T20:04:18.719168 | 2021-06-01T18:43:14 | 2021-06-01T18:44:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,553 | cpp | // Copyright 2004-present Facebook. All Rights Reserved.
#include <iostream>
#include <vector>
#include <folly/Benchmark.h>
#include <folly/Random.h>
#include <folly/init/Init.h>
#include <fizz/crypto/Utils.h>
#include <fizz/crypto/aead/AESGCM128.h>
#include <fizz/crypto/aead/AESOCB128.h>
#include <fizz/crypto/aead/O... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
d06f5a0e4ef5353332537364c643dfb55e9f0b3a | 1af49694004c6fbc31deada5618dae37255ce978 | /base/test/scoped_environment_variable_override.cc | e85fa6db454ef08a842fb8be84fec93820c3972c | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 1,451 | 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 "base/test/scoped_environment_variable_override.h"
#include "base/environment.h"
namespace base {
namespace test {
ScopedEnvironmentVariableOv... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
8456bab86614d5ef420886e39a3d150f1b4551ec | d6135170e6156a12d4f64cff0373ee0b00ca644b | /tensorflow/lite/experimental/micro/micro_mutable_op_resolver.cc | 1e8b5c0e573bd92468befe33378c33d405f73141 | [
"Apache-2.0"
] | permissive | eladeban/tensorflow | 12499b0972b8aafde277b61da7bbdb1c59aa1d2a | 0d4485677356a761f21ad7223759cd89bcc9034c | refs/heads/master | 2020-06-04T03:28:24.373618 | 2019-06-13T22:37:52 | 2019-06-13T22:49:52 | 191,843,388 | 4 | 1 | Apache-2.0 | 2019-06-13T22:54:36 | 2019-06-13T22:54:36 | null | UTF-8 | C++ | false | false | 3,022 | cc | /* Copyright 2018 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 |
03bd0ac51475454e96163da5e28c1f3d39b71dce | b8b69b9721088fc60a523ada7650c7fb8864ff2a | /src/Common/Hash.inl | 2e4bf2654bd7ea4f0bc3671ccc9024b5195f0acf | [] | no_license | jvidziunas/Eldritch2 | 7a99ab852c93768b4caf1cefe7ba415b71987281 | 3491f2f380f5ae4dd155594b94fea28f791f3069 | refs/heads/master | 2021-01-10T09:37:08.120746 | 2018-04-11T00:22:20 | 2018-04-11T00:22:20 | 43,710,529 | 2 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 8,713 | inl | /*==================================================================*\
Hash.inl
------------------------------------------------------------------
Purpose:
------------------------------------------------------------------
©2010-2015 Eldritch Entertainment, LLC.
\*=========================================... | [
"jvidziunas@sbcglobal.net"
] | jvidziunas@sbcglobal.net |
f222ea3004658d99ff935c13f5394701d7438118 | 17bdfcf058af8a4a1ecf42e94323345d9bd87e78 | /FileEntry.h | ea9070f0c70dbf464137412712f712c0a1428e72 | [
"MIT"
] | permissive | wutipong/ZipPicViewWx | 2d3a8ae12828fdcafb2075dafda7df6886afbac4 | 1663ff327f6dba85cd661068133bcfdbae43a83e | refs/heads/master | 2020-12-18T22:31:27.761581 | 2016-08-07T18:59:49 | 2016-08-07T18:59:49 | 38,510,401 | 12 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,021 | h | #ifndef ZIPPICVIEW_FILEENTRY_H
#define ZIPPICVIEW_FILEENTRY_H
#include <wx/dir.h>
#include <wx/filename.h>
#include <wx/thread.h>
#include "Entry.h"
#include <functional>
#include <map>
class FileEntry : public Entry {
public:
typedef std::map<wxFileName, FileEntry *,
std::function... | [
"mr_tawan@hotmail.com"
] | mr_tawan@hotmail.com |
1d74cf45de4fd2ec3b6f42b8fa9026f7de1fd393 | a103e021e54d9ce429235d3cdef55c2c06fd0249 | /src/captureSkeleton.cpp | 800393fd7340ff1ba545a6a42c468e4d921ed773 | [] | no_license | jonatanfm/tfg | 1cab94513d468a3fbe3d9ee98b06b209732047b5 | aff322e691093e99acd3db846e4015656322d8dd | refs/heads/master | 2021-01-15T16:56:44.839159 | 2014-06-18T19:15:50 | 2014-06-18T19:15:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 120 | cpp | #include "captureSkeleton.h"
captureSkeleton::captureSkeleton(void)
{
}
captureSkeleton::~captureSkeleton(void)
{
}
| [
"watashi.kun@gmail.com"
] | watashi.kun@gmail.com |
c7695735d4e306260f2f3ce1bd1b0c92b60c3b86 | 8bba9051afdd3d3bd247123c6e48f37ec77c90f7 | /source/WispSyser/ntstatus.cpp | 60a1f5012c82ae050edbda8e6c6a2f093f9b58ec | [] | no_license | marakew/syser | a230d9d0646d722d34c4fbdb6836ee79ba2f355e | 4c04163a0c2fb5f0636a0c7a1c28bf84ff28bd97 | refs/heads/master | 2022-10-26T08:33:13.318432 | 2022-10-23T12:03:17 | 2022-10-23T12:03:17 | 148,364,646 | 239 | 76 | null | 2019-07-05T09:11:39 | 2018-09-11T18:52:22 | C++ | UTF-8 | C++ | false | false | 150,942 | cpp |
#include "othercmd.hpp"
NTSTATUS_ENTRY stNtStatusList[] =
{
{"STATUS_WAIT_0", "STATUS_WAIT_0", 0 },
{"STATUS_WAIT_1", "STATUS_WAIT_1", 0x00000001 },
{"STATUS_WAIT_2", "STATUS_WAIT_2", 0x00000002 },
{"STATUS_WAIT_3", "STATUS_WAIT_3", 0x00000003 },
{"STATUS_WAIT_63", "STATUS_WAIT_63", 0x0... | [
"jon.smit@gmail.com"
] | jon.smit@gmail.com |
d47b4a446d5043939a01ba8eb734e837e8882be3 | cb70e83b4a6bffcd6890b34a6b17769a30547542 | /ui_loginwindow.h | ffdcc317c1073cf2659f0091d8eec8acf7b3103b | [] | no_license | OverworldLord/pxgic | 6f71fb732adf92d56b7fd3e970dcffc0b7e96585 | 4deabd4c7e5e52ecd282ad7420a6fe16ffe3c7f2 | refs/heads/master | 2020-03-08T17:28:20.126808 | 2018-05-10T00:49:48 | 2018-05-10T00:49:48 | 128,269,060 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,370 | h | /********************************************************************************
** Form generated from reading UI file 'loginwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.10.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************... | [
"noreply@github.com"
] | noreply@github.com |
e69baf6711d40c4af437ef90f4eacfd076c4e91e | 53f19f094fe4d871f28c78285c6a7f9a4a2c8eaa | /Source1.cpp | 305341009c082a38b882d159be9951f165414c6d | [] | no_license | Arquede/CECS_2222 | 73e10466d8d52b9eb05bf0045cf5b3fdf0a42917 | 4c4218bc1b1f32f82b321ca67130948f59aa6186 | refs/heads/master | 2020-04-30T19:09:41.651141 | 2019-03-21T22:07:44 | 2019-03-21T22:07:44 | 177,030,604 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 118 | cpp | #include <ostream>
using namespace std;
int main()
{
cout << "Dimelo Luis" << endl;
return 0;
system("pause");
} | [
"rodriguez_60511@students.pupr.edu"
] | rodriguez_60511@students.pupr.edu |
c1cf1273cfdf785848794bbeaa7c585fcbd7d0cd | 635c529d802e2d75073a76c2fe4f861f208d8948 | /dsaC++/linkedList/mergeSortLinkedList.cpp | 69a5a8b07b55c01f6976af08fca30f8d08339ff2 | [] | no_license | parduman/lovebabbar450 | bca6c7c03ffc7c704b84e5c5971a80e16c8e897f | 4b7bf64274fe77b3f398a782fb3fd234c138d697 | refs/heads/master | 2023-08-04T23:38:55.065388 | 2021-09-09T07:28:29 | 2021-09-09T07:28:29 | 369,904,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,242 | cpp | #include <iostream>
// #include <string>
// #include <unordered_map>
using namespace std;
class ListNode {
public:
ListNode* next;
int val;
ListNode* head;
ListNode* end;
ListNode(){
this->val = 0;
this->next = NULL;
}
ListNode(int... | [
"pardumangarg7@gmail.com"
] | pardumangarg7@gmail.com |
a3659de4f6d9dc0f29e17c52dc17bc3f994668cd | 6fec0c77ccb89a20133060c0925b10260fbed2c8 | /MyPrograms/MyCreations/CPP/spoj_minmax.cpp | 243326038a1f1b09185ee9b516b7f968c93e7098 | [] | no_license | kousthubraja/mystuff | 6e3b84f6060a7e4fc90f0d25df54d37356794bbe | 3f8fa6677b216f18a25c07796e3e63f75defdbf8 | refs/heads/master | 2021-01-16T00:28:40.163650 | 2014-12-12T17:45:13 | 2014-12-12T17:45:13 | 27,931,078 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 300 | cpp | #include<cstdio>
#include<cmath>
int main()
{
int t,i,n,s;
float sq;
scanf("%d",&t);
// scanf("%d",&n);
while(t--)
{
while(scanf("%d",&n)!="\n";){
printf("%d",n);
}
}
return 0;
}
| [
"kousthubraja@gmail.com"
] | kousthubraja@gmail.com |
9f8c232629bae5d40d135284f78ebbd82ea83efa | b62975a12c0ccd26c599b454c1e129f9f3f5b957 | /src/trajectory.cpp | 1448294ad1fe6425817b651308f30d655ff5da5d | [] | no_license | sun-jlu666/trajectory_optimization-1 | ab07fdd7fc8c7330482966199f54c2552e560a65 | a24e0b3bbe34526f14ebf905d3226dd32dda42f7 | refs/heads/master | 2021-12-03T01:54:24.322594 | 2012-08-16T01:06:02 | 2012-08-16T01:06:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,568 | cpp | /*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2009, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following... | [
"lorenzo.riano@berkeley.edu"
] | lorenzo.riano@berkeley.edu |
9f9e255993cc429d7d1d0daaef319c8b90a3df4e | 270e8122dcd5ed137e221a1410f3d0d1bf2e717b | /idlib-type/library/src/idlib/type/invert.hpp | 4504cd627b563887c7342791f9fecd2a769aa3fa | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | egoboo/idlib | 3273c11ecd24ab3e9693cbc5fdf8e234dc1d524d | ef02bb1f801054e864028728d9eadc8cb4ff34a1 | refs/heads/develop | 2022-10-07T02:58:17.703686 | 2022-09-20T20:52:54 | 2022-09-20T20:52:54 | 105,938,221 | 2 | 1 | MIT | 2022-09-20T20:31:52 | 2017-10-05T20:41:28 | C++ | UTF-8 | C++ | false | false | 1,544 | hpp | ///////////////////////////////////////////////////////////////////////////////////////////////////
//
// Idlib: A C++ utility library
// Copyright (C) 2017-2018 Michael Heilmann
//
// This software is provided 'as-is', without any express or implied warranty.
// In no event will the authors be held liable for any dama... | [
"michaelheilmann@primordialmachine.com"
] | michaelheilmann@primordialmachine.com |
95fb3fc9ca6572a61abaa60546fa639db04c3a4b | 0bab4267636e3b06cb0e73fe9d31b0edd76260c2 | /freewar-alpha/src/Network/check_select.cpp | eab147fa837c230390b7ce57011d38bfff80384e | [] | no_license | BackupTheBerlios/freewar-svn | 15fafedeed3ea1d374500d3430ff16b412b2f223 | aa1a28f19610dbce12be463d5ccd98f712631bc3 | refs/heads/master | 2021-01-10T19:54:11.599797 | 2006-12-10T21:45:11 | 2006-12-10T21:45:11 | 40,725,388 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,629 | cpp | /*
** my_net.c for zappy in /sgoinfre/freewar/SDL_net-1.2.5
**
** Made by jonathan huot
** Login <huot_j@epita.fr>
**
** Started on Mon May 31 15:25:32 2004 jonathan huot
// Last update Tue Jun 29 19:20:51 2004 jonathan huot
*/
#include "SDLnetsys.h"
#include "network.h"
struct SDLNet_Socket {
int... | [
"doomsday@b2c3ed95-53e8-0310-b220-efb193137011"
] | doomsday@b2c3ed95-53e8-0310-b220-efb193137011 |
43f166f96a0eff4e0a589954d866f1a971e55372 | 798dd8cc7df5833999dfceb0215bec7384783e6a | /schema.inl | 14d8403cadce10ec75a3555ce7099254c988903b | [
"BSD-3-Clause"
] | permissive | sblanas/pythia | 8cf85b39d555c6ce05445d9d690d5462d0e80007 | b138eaa0fd5917cb4665094b963abe458bd33d0f | refs/heads/master | 2016-09-06T03:43:26.647265 | 2014-02-10T21:39:24 | 2014-02-10T21:39:24 | 16,710,063 | 15 | 8 | null | 2014-03-08T05:29:34 | 2014-02-10T21:31:16 | C++ | UTF-8 | C++ | false | false | 5,818 | inl | /*
* Copyright 2007, Pythia authors (see AUTHORS file).
* 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,... | [
"blanas.2@osu.edu"
] | blanas.2@osu.edu |
efb8fb4daa1f55966c8da525a8aecd3eebe248e9 | fac0d383d951974ad0e807426953c10b30c727ac | /external/libdex/method_id.h | 61e985df6314b75cf8d1145d96b9e2f9256d1eb0 | [
"Apache-2.0"
] | permissive | xiaobaiyey/DexRewrite | 0511d656f34d65f60ffe2ddcfa6f97906d64c74d | 09ff8b36ea64711ea2742ca49f5e6130d5e31d2b | refs/heads/master | 2022-01-02T04:41:06.676464 | 2021-12-15T09:44:19 | 2021-12-15T09:44:19 | 196,911,416 | 35 | 15 | null | null | null | null | UTF-8 | C++ | false | false | 1,224 | h | //
// Created by xiaob on 2020/1/1.
//
#ifndef BASE_METHOD_ID_H
#define BASE_METHOD_ID_H
#include "indexed_item.h"
#include "type_id.h"
#include "proto_id.h"
namespace dex_ir {
class MethodId : public IndexedItem {
public:
MethodId(const TypeId *klass, const ProtoId *proto, const StringId *name)
... | [
"xiaobaiyey@outlook.com"
] | xiaobaiyey@outlook.com |
c1067c4c890ad23b4ea6be316bc3fc249c872a77 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_1581_httpd-2.2.11.cpp | 15b148547fa7018c1d259c05ee3b8707021e9d7b | [] | 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 | 7,275 | cpp | static void do_pattmatch(ap_filter_t *f, apr_bucket *inb,
apr_bucket_brigade *mybb,
apr_pool_t *tmp_pool)
{
int i;
int force_quick = 0;
ap_regmatch_t regm[AP_MAX_REG_MATCH];
apr_size_t bytes;
apr_size_t len;
apr_size_t fbytes;
const char *buf... | [
"993273596@qq.com"
] | 993273596@qq.com |
33f3ff59eeb23fcc3123f8012e31b17046af1b79 | 5e2e48cb12fb601bd619c625addfc9ce251d77ad | /Data Structure/linear_search_runtime.cpp | d8e29b84c49161f6c3ce29ba66cbbdc5ffa08cbc | [] | no_license | officialpiyush/highschool | d831e698847db3ea6270c6bc535f6bb048aea469 | 872069167ec4a8a440882dcc577f9846bb6fc0ce | refs/heads/master | 2022-05-15T23:44:31.724008 | 2019-07-22T07:41:03 | 2019-07-22T07:41:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 435 | cpp | #include <iostream>
using namespace std;
int main()
{
int i=0,*a,no,element,found=0;
cout << "Enter The Sie Of Array";
cin >> no;
a = new int(no);
for(i=0;i<no;i++)
{
cout << "Enter The" << i+1 << "th Element";
cin >> a[i];
}
cout << "Enter The Elements To Find: ";
cin >> element;
for(i=0;i<no;i++)... | [
"bhangalepiyush@gmail.com"
] | bhangalepiyush@gmail.com |
6c3ca0f5cdc89039539ec5885028d3239405c9b4 | 0b88a1ba134088045b743b96b770fdcae1b0cf94 | /examples/rpcbench/server.cc | 1cf2a0d19fbd7ede5ca48f27e342c5b3211f5a8d | [
"BSD-2-Clause"
] | permissive | nncm/claire | 93095dcf9c4a60c30f17c2e1b63154532b156e21 | 859992d6281a434409dcf7efadec84ce0d86db8a | refs/heads/master | 2021-05-15T07:30:12.024301 | 2017-01-20T15:31:03 | 2017-01-20T15:31:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,173 | cc | #include <claire/examples/rpcbench/echo.pb.h>
#include <boost/bind.hpp>
#include <claire/protorpc/RpcServer.h>
#include <claire/common/events/EventLoop.h>
#include <claire/common/logging/Logging.h>
#include <claire/netty/InetAddress.h>
using namespace claire;
using namespace claire::protorpc;
DEFINE_int32(num_threa... | [
"fanyu83@gmail.com"
] | fanyu83@gmail.com |
70410b362ee3e0d6e59892a50f4485a32cb81bc6 | f65ced19a093ccb20dd1caf805d89654cb90db4d | /Day_25 - Running Time and Complexity.cpp | 771bd216974b20edb7b0764ca9526e81b3c7d956 | [] | no_license | dpshikha476/30-Days-of-Code | 5f9bac07daa48a592c1244940cfe27637b51d57b | 653dbfa88778db248e3fd0a3668fa200de4bf95d | refs/heads/master | 2023-02-19T16:31:21.821461 | 2021-01-24T11:16:13 | 2021-01-24T11:16:13 | 332,428,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 562 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
bool isPrime(int n)
{
if (n <= 1) return false;
if (n <= 3) return true;
if (n%2 == 0 || n%3 == 0) return false;
for (int i=5; i*i<=n; i=i+6)
if (n%i == 0 || n%(i+2) =... | [
"shikha8835@gmail.com"
] | shikha8835@gmail.com |
e50a41d5fccbb390e5210b035f8fedcc6ccea6f4 | 678d5a935039637438d509b4be456a63da685197 | /Introduction/A.h | 3862105f9707b177b5630e18996d59fa661c4029 | [] | no_license | LuanZheng/EffectiveCPlusPlus | 80410a5752a3c338a9837971463d1e4b5e9062b9 | ba30475fbe29d33604ad263f5cf17f007407c1d6 | refs/heads/master | 2021-01-25T11:34:25.450822 | 2018-03-18T04:11:33 | 2018-03-18T04:11:33 | 123,411,498 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110 | h | #ifndef _A_H_
#define _A_H_
class A
{
public:
A(int a);
//explicit A(int a);
private:
int m_a;
};
#endif
| [
"zheng.luan@qq.com"
] | zheng.luan@qq.com |
98dbdb35d0ba668e2a59307e3cb6fb0cd50ea45e | 53632b075bf65eb11ca7dcbe44aea387ffaf2022 | /gamescreen.cpp | 03824270ce903da2388356176e5788fdb3e6fe4d | [
"Apache-2.0"
] | permissive | hermit4/KanmusuMemory | 72d85d53a737e45ddbc3920f346774684b797a69 | cf68b75e83ea11ab7f088e31a5dfb44ef26fe2e5 | refs/heads/master | 2021-01-14T14:27:34.684910 | 2014-03-14T15:11:34 | 2014-03-14T15:11:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,312 | cpp | /*
* Copyright 2013 KanMemo 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 applicable law or agre... | [
"stasuku@gmail.com"
] | stasuku@gmail.com |
03a9e0990ce5dc552fc306f4f14d603a581903bf | 0b3f5eea6c5cf7ee1e87c5d59f1d8cf97caa6853 | /include/util/OnScopeExit.h | 90f5aa38bc7c1dcc87f69e58b6b0de40d2730dba | [] | no_license | jonghunDB/SciDB | fc04533c9eddd00bcf10ea83b2d0838637daa518 | 20ec3b7785e8e7b149c9b9876c240ab135eed068 | refs/heads/master | 2020-05-07T06:12:21.093476 | 2019-04-17T10:28:07 | 2019-04-17T10:28:07 | 180,303,383 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | h | /*
**
* BEGIN_COPYRIGHT
*
* Copyright (C) 2008-2018 SciDB, Inc.
* All Rights Reserved.
*
* SciDB is free software: you can redistribute it and/or modify
* it under the terms of the AFFERO GNU General Public License as published by
* the Free Software Foundation.
*
* SciDB is distributed "AS-IS" AND WITHOUT ANY WARRANTY... | [
"jonghun2931@gmail.com"
] | jonghun2931@gmail.com |
96edd4eb15410a9cdfdd31b680d5640f4653d44d | 5977fe6431f894b2900794c8f017d6a757ab9309 | /MBAPHeader.cpp | a951a14702fc5711bf5384b2a9d631fa3baf9a42 | [] | no_license | kjf0269/winmodbus | 5ad8cf9e1b791735f7e140ba8295d72285aac77e | f32894b4a3a5f490db4dbe8588ed53c73ab61452 | refs/heads/master | 2021-02-08T17:34:22.832161 | 2020-03-06T08:40:53 | 2020-03-06T08:40:53 | 244,175,168 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,371 | cpp | #pragma comment(lib, "ws2_32.lib")
#include "MBAPHeader.h"
#include <wchar.h>
#include <winsock.h>
MBAPHeader::MBAPHeader(uint16_t transId, uint16_t length, uint8_t unitId, uint16_t protoId) : transactionId(transId), length(length), unitId(unitId), protocolId(protoId)
{
}
MBAPHeader::MBAPHeader(uint8_t *msg)
{
// ... | [
"kjfelix@gmail.com"
] | kjfelix@gmail.com |
3703914cb32122e544b3d85f18d6732181070664 | eec05e526ab6f36f47d09c390778e5df8bf4810e | /motion.cpp | 9170442afc568ac37d5e714a149da0780804a96a | [] | no_license | rgpayne/rsreveng | 9b4bf024bc511001f57a189f0aae804b7dd17149 | c646081554409ed754d24dc1d270c27611f2bfc0 | refs/heads/master | 2021-07-03T11:48:35.713568 | 2017-09-22T03:16:59 | 2017-09-22T03:16:59 | 103,888,743 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,273 | cpp | #include "motion.h"
#include <stdio.h>
bool CMotion::Load(char* pFileName)
{
OutputDebugString(pFileName);
OutputDebugString("\n");
FILE* f=NULL;
fopen_s(&f,pFileName,"rb");
if(!f)
{
MessageBox(NULL,"Could not open DAM file.","DAM Error",MB_OK|MB_ICONERROR|MB_SYSTEMMODAL);
return false;
}
DWORD dw;
frea... | [
"Ross@DESKTOP-I2GTE4K"
] | Ross@DESKTOP-I2GTE4K |
f41ccf43ba3d7668c866d168672ac424889fde5c | ed5ab9930d9b1e90fee36b0a10d397b21e36648d | /ImportExport/RowToColumnLoader.cpp | 76ea1103e53aa14e69a0d94521835094940d0402 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla"
] | permissive | prutskov/omniscidb | 379c13ac6029afd459cf96eab28cd636dc8ee287 | 9a1e79cfeed4f6801f3f9805a0759569ae777ae8 | refs/heads/master | 2020-12-30T08:28:39.639271 | 2020-08-17T21:04:01 | 2020-08-18T16:51:29 | 238,927,530 | 0 | 0 | Apache-2.0 | 2020-02-07T13:18:05 | 2020-02-07T13:18:02 | null | UTF-8 | C++ | false | false | 15,151 | cpp | /*
* Copyright 2017 MapD Technologies, 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 o... | [
"dev@aas.io"
] | dev@aas.io |
44f8ba5662c22ce93901401e73ac6c493d25b2ea | 0e5917ab54c80a7cc8557ecf7a6dc86a80aae334 | /base.h | 6fa4b76e1e63f686083606a5965f9d6d8cdf266f | [] | no_license | kotonohaparty/wangbin | a2ce642b2613efebe7c868698cf87dd22bd0cb1f | aaad4bbf5dd509f0c528144d29d6b9b3b4896780 | refs/heads/master | 2020-04-01T19:34:26.488023 | 2013-05-09T00:44:03 | 2013-05-09T00:44:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | h | #ifndef _BASE_H_
#define _BASE_H_
#include<iostream>
using namespace std;
typedef unsigned char UCHAR;
typedef char CHAR;
typedef unsigned short USHORT;
typedef short SHORT;
typedef unsigned int UINT;
typedef int INT;
typedef unsigned long ULONG;
typedef long lONG;
#endif
| [
"hellcat@foxmail.com"
] | hellcat@foxmail.com |
c3cde23b4fcb2d686a98b0e99106b92f386fc24a | 51397a31d35191308d70f7a5e3aaa87ef91d3909 | /ros/jetsoncar_driver/src/jetsoncar_driver_node/main.cpp | 78e3f0ec0cd91b8305dd864645a6f9a34d75c5bf | [
"MIT"
] | permissive | mindThomas/JetsonCar | 7ab4eb6926f89c335c9d508ce394d5efcf6b1052 | 74636d4da1f7f71ca9f2315a1b2347393b081eda | refs/heads/master | 2023-02-28T11:46:00.594964 | 2021-02-09T15:31:52 | 2021-02-09T15:31:52 | 310,801,931 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 11,551 | cpp | /* Copyright (C) 2020 Thomas Jespersen, TKJ Electronics. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the MIT License
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied wa... | [
"thomasj@tkjelectronics.dk"
] | thomasj@tkjelectronics.dk |
e7d26c1347c06b1994d1f87455ae2287df42331a | 621803141f7268cbb52b26f69fb402d01b6b51fa | /NewWifiControl.cpp | 215e4e60705b176d2b622c0e20cea801969f706c | [] | no_license | VatalityWang/QtGuiRemoteControl | 0a48209d6015a37b5c6ece7c7d663bd89487ee0b | a9062a5cd8730eb3a65b714d332f9138fd67203f | refs/heads/master | 2022-12-17T21:29:02.041730 | 2020-09-05T12:00:45 | 2020-09-05T12:00:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 21,869 | cpp | #pragma execution_character_set("utf-8")
#include "NewWifiControl.h"
#include<QtQuick>
//#include<QML>
//import QtQuick 2.0
NewWifiControl::NewWifiControl(QWidget* sigparent,Log* pLog,QWidget* parent, QTcpSocket* tcpSocket)
:sigparent(sigparent),pLog(pLog), QWidget(parent), tcpSocket(tcpSocket)
{
ui.setupUi(this);
... | [
"1225228598@qq.com"
] | 1225228598@qq.com |
205be75d2d348d4fa96bf6307126beb521253ae7 | 05355dcb5d43cad03f112671792d7c4099189ccb | /cpp/libs/maths.cpp | 52c1fadd19852fa3c818d4bdc637f64f10cbbb4e | [] | no_license | kevzhang/project_euler | e5795321e6bd05eccc1e288f5eb934253648d4d9 | 9d5b4285ceb378091ea5ca7e0f0ef448e8a5caaf | refs/heads/master | 2020-12-29T02:36:27.083760 | 2017-05-21T05:34:33 | 2017-05-21T05:34:33 | 53,694,817 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,240 | cpp | #include <cmath>
#include <vector>
#include <algorithm>
#include <map>
#include <climits>
using namespace std;
// idea taken from the Guava LongMath Library
static const long _FACTORIALS[] = {
1L,
1L,
1L * 2,
1L * 2 * 3,
1L * 2 * 3 * 4,
1L * 2 * 3 * 4 * 5,
1L * 2 * 3 * 4 * 5 * 6,
1L * ... | [
"kevkzhang@gmail.com"
] | kevkzhang@gmail.com |
3504d82abef202694d7cfec99a741c4ce15fc416 | 365578c6584a1b9bd633a09e054de94f426fc449 | /assignment4/problem1/expression.h | ea836f37b81d8d5741bf06c3ce340e46b240c6f9 | [] | no_license | KoKoJarJar/CS246 | c060b672abb0de0e53ed788ce13bcf8357a569bd | 7e7db42164bb488d027635ccbf28ba7c5d6c0856 | refs/heads/master | 2021-09-11T13:50:12.077989 | 2018-04-08T08:48:11 | 2018-04-08T08:48:11 | 108,539,774 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 861 | h | #ifndef __EXPRESSION__
#define __EXPRESSION__
#include <memory>
// abstract class to evaluate binary and unary expressions
class Expression {
public:
// prettyprint() prints expression
// complexity: O(n) where n is the length of expression
// exception handling: none
// requires: valid expression
virtual v... | [
"ardavan.behnia@gmail.com"
] | ardavan.behnia@gmail.com |
dd4ed3a79608f1daf4126be625d98abe52774953 | c8b39acfd4a857dc15ed3375e0d93e75fa3f1f64 | /Engine/Source/Runtime/Engine/Private/MeshSimplificationSettings.cpp | 5ef1b1c15ce541b16c8eb9d475ef8c5a7d8d414b | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | windystrife/UnrealEngine_NVIDIAGameWorks | c3c7863083653caf1bc67d3ef104fb4b9f302e2a | b50e6338a7c5b26374d66306ebc7807541ff815e | refs/heads/4.18-GameWorks | 2023-03-11T02:50:08.471040 | 2022-01-13T20:50:29 | 2022-01-13T20:50:29 | 124,100,479 | 262 | 179 | MIT | 2022-12-16T05:36:38 | 2018-03-06T15:44:09 | C++ | UTF-8 | C++ | false | false | 1,027 | cpp | // Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
#include "Engine/MeshSimplificationSettings.h"
#include "UObject/UnrealType.h"
UMeshSimplificationSettings::UMeshSimplificationSettings(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
}
FName UMeshSimplificationSettings::GetCont... | [
"tungnt.rec@gmail.com"
] | tungnt.rec@gmail.com |
263675b3fbd63590e96c166dad4a97caa785bca5 | 81de7d09d92e602d32055b5e84c12d07034e99ce | /Network Flow(네트워크 플로우)/11376_열혈강호2.cpp | 9ac3c610b8dc411050fe3ec71fb8b6cf14be1647 | [] | no_license | newdeal123/BOJ | 13499fe476ae1aee2b3174e147b4fafbc071985b | 20a161e46018fc1baba1710f36d3d29fa3bf20db | refs/heads/master | 2021-08-08T15:41:57.601898 | 2021-06-30T14:41:14 | 2021-06-30T14:41:14 | 164,074,479 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,122 | cpp | #include <bits/stdc++.h>
using namespace std;
const int MAX_N=1000+2;
int N,M,visited[MAX_N],working[MAX_N]={0,};
vector <int> work[MAX_N];
//idx번 노동자가 일을 할수있는가
bool canWork(int idx)
{
if(visited[idx])
return false;
visited[idx]=true;
for(int i=0;i<work[idx].size();i++)
{
int next=work... | [
"newdeal123@nate.com"
] | newdeal123@nate.com |
dc185b79fb3102c3ee1501ad5bf3c8378bdc91fb | 32e8f451b857747edd0b0c7e9f2abe3ea120f00e | /anomalyDetection/event_detection/eblearn-1.0-r1860/tools/libeblearntools/include/camera_kinect.h | 26202389afadc37ab4f69b7f992beed4bd48a282 | [
"BSD-2-Clause"
] | permissive | bugcheck/gsra | 0c1cbb6ae0fe64f5146257ebf5142b12be4033f8 | 72424592b7bc3443572807f0b5726066d1cc59d2 | refs/heads/master | 2020-12-24T06:15:31.104291 | 2012-04-11T22:30:02 | 2012-04-11T22:30:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,211 | h | /***************************************************************************
* Copyright (C) 2010 by Soumith Chintala and Pierre Sermanet *
* chin@nyu.edu, sermanet@cs.nyu.edu *
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted pro... | [
"athuls89@gmail.com"
] | athuls89@gmail.com |
e6c51fb7bc687312934a510b3e62a6f53db76a8e | e1cae0afbd685bb7bde36f0e2bdce1f67b1a8569 | /merge-two-binary-trees/merge-two-binary-trees.cpp | 71fc88c320d1074b00f1a95e4132f7268498a04a | [] | no_license | saintcoder14/LeetCodeChallenge | 2c9952628cfd4256b93296e8266874aa7f8569bb | 5950fa1e3dd20f97e290cbecf6c5397d10727110 | refs/heads/main | 2023-04-20T08:19:56.146944 | 2021-05-10T15:58:05 | 2021-05-10T15:58:05 | 335,678,320 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | cpp | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), l... | [
"42490299+saintcoder14@users.noreply.github.com"
] | 42490299+saintcoder14@users.noreply.github.com |
ed64f344718f7bea240dcf2584e28836ad61768c | 0d99bcb8b8717008c1ec9b080c6c86c2b1710eee | /날씨/build/Android/Preview2/app/src/main/include/Fuse.Controls.Fallbac-b33b79fb.h | 2fafde0398aeb97bc53d912d13652cc04970cd04 | [] | no_license | shj4849/Fuse | 526d92bc49a0a2d8087beece987b1701dc35cccc | 447f49f96f9dadf203f5f91e8a1d67f19d8ecc04 | refs/heads/master | 2021-05-15T23:08:09.523726 | 2017-12-21T05:28:53 | 2017-12-21T05:28:53 | 106,758,124 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,445 | h | // This file was generated based on C:/Users/t2/AppData/Local/Fusetools/Packages/Fuse.Controls.Primitives/1.4.0/TextControls/FallbackTextEdit/TextWindow.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Animations.IResize.h>
#include <Fuse.Binding.h>
#include <Fuse.Elem... | [
"shj4849@naver.com"
] | shj4849@naver.com |
d9b857c22e56fea674e0a59eb6977a7cfa99a1b2 | 436623ee85c9d9444d700b56f2729b12b9f2c659 | /src/tools/ecode/filesystemlistener.hpp | 5474e69d20be73af0454d0df4d7e4e6578a749bc | [
"MIT"
] | permissive | SpartanJ/eepp | 0bd271b33058ef119f5c34460ed94e44df882a25 | 9f64a2149f3a0842ced34b8b981ffe3a8efc6d13 | refs/heads/develop | 2023-09-01T01:17:30.155540 | 2023-08-27T20:58:19 | 2023-08-27T20:58:19 | 125,767,856 | 341 | 27 | MIT | 2023-04-01T20:10:26 | 2018-03-18T21:11:21 | C++ | UTF-8 | C++ | false | false | 1,669 | hpp | #ifndef ECODE_FILESYSTEMLISTENER_HPP
#define ECODE_FILESYSTEMLISTENER_HPP
#include "projectdirectorytree.hpp"
#include <atomic>
#include <eepp/system/fileinfo.hpp>
#include <eepp/ui/models/filesystemmodel.hpp>
#include <eepp/ui/tools/uicodeeditorsplitter.hpp>
#include <eepp/ui/uicodeeditor.hpp>
#include <efsw/efsw.hpp... | [
"spartanj@gmail.com"
] | spartanj@gmail.com |
31354abd59cda94569c967df9bfa5878a4a92b86 | d080eb3101acd71db472c6e8c1d859f90172bf02 | /michael/marble_texture.cc | c6d728bf5751742067089ef395f2b516e4c7e9d1 | [] | no_license | freme/raybeam | 225a2b2abc3ee899aec0e718240b138366859027 | bd6af6dbab039b1b127e15cec54fb335169b162d | refs/heads/master | 2021-01-23T08:04:37.762469 | 2012-09-28T06:41:09 | 2012-09-28T06:41:09 | 3,161,609 | 1 | 2 | null | 2012-09-07T20:45:08 | 2012-01-12T11:15:17 | C++ | UTF-8 | C++ | false | false | 364 | cc | // marble_texture.cc
#include "marble_texture.h"
rgb MarbleTexture::value(const Vector2& uv, const Vector3& p) const {
float temp = scale * noise.turbulence(freq*p, octaves);
float t = 2.0f*fabs(sin(freq*p.x() + temp));
if(t < 1.0f)
return (c1*t + (1.0f - t)*c2);
else {
t -= 1.0f;
... | [
"xaseron@googlemail.com"
] | xaseron@googlemail.com |
ec2e6e5de7ea74d3f3d391c7a6fa7de32dd8d72b | 229979e3ecd4bd15deb143d44dc298c9cdd4587b | /clients/Client.hpp | 0bb20daeb5069064ca2806671c2fa4e42d167010 | [] | no_license | javacard-FOSS-applets/cdax-crypto-cpp | fa8c2758ad2119f6a338cf85faa2f4ab96a6c0db | f3329fcdf348b6a3ddc95b993dbc97b806aea335 | refs/heads/master | 2021-04-27T07:59:51.626384 | 2014-09-20T12:28:12 | 2014-09-20T12:28:12 | 122,645,566 | 0 | 1 | null | 2018-02-23T16:29:27 | 2018-02-23T16:29:27 | null | UTF-8 | C++ | false | false | 825 | hpp | #pragma once
#include <boost/unordered_map.hpp>
#include "../shared/Host.hpp"
#include "../card/SmartCard.hpp"
namespace cdax {
/**
* Abtract CDAX client. This class is responsible for requesting
* a topic key from the security server
*/
class Client : public Host
{
protected:
... | [
"marlon@baeten.org"
] | marlon@baeten.org |
a150718cef18508fc59007e27f3c6c72515da576 | 08cd37da9c1be12bce20348196b9080fdabdf286 | /analysiscode/CmdLineParser.cpp | 387d3531538c39d0b2d6f1cd2790f6302814310d | [] | no_license | hanhwi/SimPoint | f77c1e880efe9739d0542fbeb31f9061e234ca28 | 9c42d14fbfb90207dde915d705e11101b0e12e9f | refs/heads/master | 2022-05-13T20:54:25.823533 | 2022-05-09T16:59:28 | 2022-05-09T16:59:28 | 76,151,652 | 5 | 4 | null | 2022-02-15T03:28:20 | 2016-12-11T03:21:25 | C++ | UTF-8 | C++ | false | false | 9,149 | cpp | /***********************************************************************
* __________________________________________________________________
*
* _____ _ ____ _ __
* / ___/(_)___ ___ / __ \____ (_)___ / /_
* \__ \/ / __ `__ \/ /_/ / __ \/ / __ \/ __/
... | [
"hanhwi@postech.ac.kr"
] | hanhwi@postech.ac.kr |
d6da27fcad4e0b650371dbc6cb1af39fc43eb805 | 9f69c4c61ca2a2082643f9316354826f6144e1f5 | /CSES/Range Queries/forest_queries2.cpp | 8e7aaf4c3552c2706c3f5e15b3627fc1b7999166 | [] | no_license | julianferres/Competitive-Programming | 668c22cf5174c57a2f3023178b1517cb25bdd583 | c3b0be4f796d1c0d755a61a6d2f3665c86cd8ca9 | refs/heads/master | 2022-03-23T05:56:53.790660 | 2022-03-18T14:29:33 | 2022-03-18T14:29:33 | 146,931,407 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,830 | cpp | /******************************************
* AUTHOR: JULIAN FERRES *
* INSTITUITION: FIUBA *
******************************************/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef pair<ll, ll> ii;
#define FIN ... | [
"julianferres@gmail.com"
] | julianferres@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.