SDN/NFV

Networking Slicing for 5G with SDN/NFV: Concepts, Architectures, and Challenges Abstract Introduction Network slices: Through technologies like software-defined networking (SDN) and network functions virtualization (NFV), network softwarization can provide the programmability, flexibility, and modularity that is required to create multiple logical (virtual) networks, each tailored for a given use case, on top of a common network. The concept of separated virtual networks deployed over a single network is indeed not

C++ Notes

GDB GDB Tutorial: Some Cool Tips to Debug C/C++ Code C++ Introduction to C++11 and C++14 with Example Code Snippet 4 Lamba Expressions of Lambda Functions 1 [firstPart](secondPart) TypeYouReturn{BodyOfLambda}(actualParameters); lambda function: 1 double dUpperPart=[]{double dX, double dY}double{return dX*dX+dY*dY;} 1 2 3 4 vector<int> iVector; for_each(begin(iVector),end(iVector),[](int n){ if(n%2==0) cout << n << endl; }); 5 Static Assertion 1 static_assert(evaluateExpression, stringMessage); 1 static_assert(sizeof(long long int)>=16;"This is unexpected"); 7 move and && 1